Summary:
Amazon Underground requires users to submit their APK with the following:
The element in your AndroidManifest may not contain:
android:hasCode=“false”
Additionally, applications using android.app.NativeActivity are not supported. Instead, you may subclass the NativeActivity class by extending from it:
public class MyNativeActivity extends android.app.NativeActivity {
You can verify your application is not using android.app.NativeActivity by searching for it within your AndroidManifest.
Keywords: manifest, Underground, submission, activity, android
KB_0362