現状
この前まで問題なくビルドできていて、エミュレーターも起動していたのですが、apkファイルの作成をやってみて以降、 ビルド中にエラーが出ます。Build Variantをdebugに変えてもExcute taskactionやerror: failed linking references.とエラーが出ます。どうすれば治りますか?
画像はこれです
BuildGradle
1apply plugin: 'com.android.application' 2 3android { 4 signingConfigs { 5 } 6 compileSdkVersion 28 7 defaultConfig { 8 applicationId "com.test.quizmaker" 9 minSdkVersion 24 10 targetSdkVersion 28 11 versionCode 1 12 versionName '1.0' 13 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 14 } 15 buildTypes { 16 release { 17 minifyEnabled false 18 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 } 20 } 21 compileOptions { 22 sourceCompatibility JavaVersion.VERSION_1_8 23 targetCompatibility JavaVersion.VERSION_1_8 24 } 25 productFlavors { 26 } 27} 28 29dependencies { 30 implementation fileTree(include: ['*.jar'], dir: 'libs') 31 implementation 'com.android.support.constraint:constraint-layout:1.1.3' 32 testImplementation 'junit:junit:4.12' 33 androidTestImplementation 'com.android.support.test:runner:1.0.2' 34 androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 35} 36
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。