我已经为目标版本22开发了一个应用程序。
的build.gradle
android {
compileSdkVersion 22
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.sample.mobile.test"
minSdkVersion 17
targetSdkVersion 22
versionCode 1
versionName "2.3"
multiDexEnabled true
}
}
所以现在当我试图通过改变
在marshmallow上运行应用程序时 compileSdkVersion 23
targetSdkVersion 23
它没有调用应用程序的启动器活动,而且奇怪的是,它没有抛出任何错误。 我无法解决问题所在,所以请帮我解决这个问题, 提前谢谢。