#前提・実現したいこと
EclipseのプロジェクトをAndroid Studioに移行しています。Gradleをビルドするとエラーが出ます。
#発生している問題・エラーメッセージ
エラー文は以下のようになっています。
ASCII<a href="openFile:C:\Users***\app\build.gradle">Open File<\a>
該当のソースコード
build.gradle(app)
apply plugin: 'com.android.application' android { compileSdkVersion 26 buildToolsVersion "26.0.1" useLibrary 'org.apache.http.legacy' defaultConfig { applicationId "*****" minSdkVersion 21 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } } dependencies { implementation 'com.android.support:support-v4:26.0.3' implementation 'com.android.support:appcompat-v7:26.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' //noinspection GradleDependency implementation 'com.google.firebase:firebase-analytics:16.5.0'//16.5.0 implementation 'com.google.firebase:firebase-messaging:18.0.0'//20.0.0 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 files('libs/ant.jar') implementation files('libs/apache-mime4j-0.6.jar') implementation files('libs/commons-codec-1.2.jar') implementation files('libs/httpmime-4.0.1.jar') } apply plugin: 'com.google.gms.google-services'
試したこと
・build.gradleに非ASCII文字が含まれていないかの確認
→自分が確認した限り、含まれていなかった
・プロジェクトのパスに非ASCII文字が含まれていないかの確認
→含まれていなかった
・gradle.propertiesに以下の1文を追加
'com.android.build.gradle.overridePathCheck=true'
→変化なし
よろしくお願いいたします。
あなたの回答
tips
プレビュー