我已经上传了'app.aab'
文件,以便在Google Play商店(内部测试环境)上发布。
上传完成,没有任何错误。当我尝试将其下载到我的设备时,该应用会以主要活动打开,要求批准权限,然后该应用停止响应。如果我尝试重新打开该应用程序,只会看到白屏。
当我在设备上安装APK文件(没有Google Play)时,该应用程序正常运行。 我试图强行关闭应用程序并重新打开,但似乎无济于事。
这是我的app/build.gredle
文件:
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.agro_scout.agroscoutfly"
minSdkVersion 19
targetSdkVersion 28
versionCode 9
versionName "1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
doNotStrip "*/*/libdjivideo.so"
doNotStrip "*/*/libSDKRelativeJNI.so"
doNotStrip "*/*/libFlyForbid.so"
doNotStrip "*/*/libduml_vision_bokeh.so"
doNotStrip "*/*/libyuv2.so"
doNotStrip "*/*/libGroudStation.so"
doNotStrip "*/*/libFRCorkscrew.so"
doNotStrip "*/*/libUpgradeVerify.so"
doNotStrip "*/*/libFR.so"
exclude 'META-INF/rxjava.properties'
}
}
dependencies {
implementation 'com.google.android.gms:play-services-maps:8.4.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.dji:dji-sdk:4.10'
compileOnly('com.dji:dji-sdk-provided:4.10')
implementation ('com.dji:dji-uxsdk:4.10')
implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.maps.android:android-maps-utils:0.5+'
implementation 'com.google.android.gms:play-services-location:16.+'
}
我不知道问题是什么。我没有收到任何错误或崩溃。
请帮忙。 谢谢!!!