私はKotlin
開発は初めてで、Kotlin
をプロジェクトに追加した直後に、廃止されたものに問題があります。以前にcompile
をimplementation
に変更しなければならなかったときに、このようなものを見ましたが、これが何であるか本当にわかりません。
私が得る警告:
API 'variant.getJavaCompile()' is obsolete and has been replaced with 'variant.getJavaCompileProvider()'.
It will be removed at the end of 2019.
build.gradle:
apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android-extensions'
apply plugin: 'kotlin-Android'
Android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.sinamn75.androidtest"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Support
implementation 'com.Android.support:appcompat-v7:28.0.0-rc02'
implementation 'com.Android.support.constraint:constraint-layout:1.1.3'
implementation 'com.Android.support:design:28.0.0-rc02'
implementation 'com.Android.support:recyclerview-v7:28.0.0-rc02'
implementation 'com.Android.support:cardview-v7:28.0.0-rc02'
implementation 'com.Android.support:support-v4:28.0.0-rc02'
implementation 'com.Android.support:support-core-utils:28.0.0-rc02'
implementation 'com.Android.support:preference-v14:28.0.0-rc02'
implementation 'com.Android.support:exifinterface:28.0.0-rc02'
// GooglePlay
implementation 'com.google.Android.gms:play-services-maps:15.0.1'
implementation 'com.google.Android.gms:play-services-location:15.0.1'
implementation 'com.google.Android.gms:play-services-plus:15.0.1'
implementation 'com.google.Android.gms:play-services-places:15.0.1'
implementation 'com.google.Android.gms:play-services-vision:15.0.2'
//AndPermission
implementation 'com.yanzhenjie:permission:2.0.0-rc6'
// AHNavigation
implementation 'com.aurelhubert:ahbottomnavigation:2.1.0'
// Lottie
implementation 'com.airbnb.Android:lottie:2.2.5'
// SwitchButton
implementation 'lib.kingja.switchbutton:switchbutton:1.1.7'
// RoundedImageView
implementation 'com.makeramen:roundedimageview:2.3.0'
// Picasso
implementation 'com.squareup.picasso:picasso:2.71828'
// MaterialDialog
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
}
build.gradle:
buildscript {
ext.kotlin_version = '1.2.70'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.Android.tools.build:gradle:3.3.0-alpha11'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task customClean(type: Delete) {
delete rootProject.buildDir
}
clean.dependsOn customClean
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
更新:これは in here に言及したkotlinプラグインのバグのようです
ただし、kotlinプラグインの新しいリリースを使用すると(kotlinが新しいAPIの使用を開始したとき)、ここに記載されているエラーを取り除くことができます。
https://github.com/JetBrains/kotlin/pull/1884/commits/1a17cb54a775ab3e55db66109cb12b7d54fbba6c
そして: https://github.com/JetBrains/kotlin/pull/1884
コミットは、実際にこの問題の修正のためのものでした:
このコミットは機能的には何も変更しません、警告メッセージを回避するだけです、 https://issuetracker.google.com/116198439 のレポーターとして
コードを詳細に検索すると、 getJavaCompile()
は現在のgradle(alpha11
バージョン)で廃止されたようです。ただし、alphaバージョンのgradle
を使用していましたが、これはお勧めしません。
代わりに、次のような安定バージョンを使用してみてください。
classpath 'com.Android.tools.build:gradle:3.1.4'
そして、警告が消えることを願っています。
この警告は、古い(非推奨の)APIをまだ使用しているKotlinプラグインに関連しています。
Googleの問題追跡ツールで以下の問題を確認してください。
https://issuetracker.google.com/issues/116198439
いくつかの詳細情報と重複する問題:
https://issuetracker.google.com/issues/116148147
Kotlinプラグインが新しいAPIの使用を開始するときに修正されます。ここで問題を確認してください:
https://youtrack.jetbrains.com/issue/KT-25428
https://github.com/JetBrains/kotlin/pull/1884
CrashlyticsをGoogleで使用する場合
Gradleの依存関係をアップグレードしてください:
implementation 'com.crashlytics.sdk.Android:crashlytics:2.9.9'
classpath 'io.fabric.tools:gradle:1.26.1'
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.Android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.2.0' // Change classpath 'com.google.gms:google-services:4.3.0' to classpath 'com.google.gms:google-services:4.2.0'
}
}