I have made a small application in Android and I want to publish it on the market.
So what are the parameters defined in the Android manifest file first?
Please help me.
The package name of your project is me Looks like you already have it.
android: versionCode = "4" Android: versionName = "1.0.3" These describe the two codes and the version of your software The name version code should always be an integer, and the version name can be like any string.
Nested tag & lt; Use-sdk android: minSdkVersion = "3" /> is a tag, do not forget to increase your version code, which specifies the minimum API level your application uses.
Nested tag & lt; Usage-permission Android: name = "android.permission.WRITE_EXTERNAL_STORAGE" /> is required only when you need some permissions for the app.
Read more about the manifest file.
Comments
Post a Comment