Hi i did one application its got finished...am going to uplode in market...but client asked me to add pro guard and android licencing...i dont how to add those...i am using android sdk,Eclipse Project Release Notes 3.8..i surfed in net waht is progurad... they said.. to provide security and reduce size of apk we will use apk..and we have to add proguard.config=proguard.cfg line in project.properties file.is it enough or else do i need to do some thing,and what is android licencing.
MainActivity.class:
public class MainActivity extends Activity {
Button screetshot;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
screetshot=(Button)findViewById(R.id.button1);
screetshot.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
// TODO Auto-generated method stub
getscreen();
}
});
}
}