私はandroid.myプロジェクトAPIレベル25の新機能です。プロジェクトを実行しているときにBUILD SUCCESSFUL..
と表示されますが、2秒後にアプリケーションが停止しました。ライブラリはまったく同じバージョン仕様を使用する必要があります
ここでは私のGradleです:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.opent.fusedlocationproviderapp"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}}
dependencies
{
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:support-compat:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services:11.0.4'
}
apply plugin: 'com.google.gms.google-services'
.................................. ........................
をライン
コンパイル「上の提案を取得していますcom.android.support:support- compat:25.3.1 '
すべてのcom.android.supportライブラリは、まったく同じバージョン仕様を使用する必要があります(混合リビジョンはランタイムクラッシュにつながる可能性があります)。 s 25.3.1,25.2.0。 例inculde com.android.support:25.3.1 com.android.support:animated-vector-drwabale:25.2.0。
私はGradleで何をする必要がありますか?
'com.android.support:support-compat:25.3.1' 'com.android.support:support-compat:25.0.1' –
をコンパイルして 'com.android.support: support-compat:25.0.2 ' –
クラッシュログを表示します。多分それはなぜクラッシュするのではない...? – Shark