facebook twitter hatena line email

「Android/androidx」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
("エラー: パッケージandroid.support.annotationは存在しません"エラーの時)
行25: 行25:
 
org.gradle.jvmargs=-Xmx1536m
 
org.gradle.jvmargs=-Xmx1536m
 
</pre>
 
</pre>
 +
 +
=="エラー: シンボルを見つけられません シンボル:  クラス NonNull 場所: パッケージ androidx.annotation"エラーとなる場合==
 +
build.gradle
 +
修正前
 +
<pre>
 +
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
 +
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
 +
</pre>
 +
 +
修正後
 +
<pre>
 +
implementation "androidx.appcompat:appcompat:1.0.0"
 +
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
 +
androidTestImplementation 'androidx.test:runner:1.2.0'
 +
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
 +
<pre>

2019年10月4日 (金) 15:36時点における版

supportからandroidxへ対応表

https://developer.android.com/jetpack/androidx/migrate?hl=ja

例えばimportを以下のように更新

-import android.support.annotation.RequiresApi;
+import androidx.annotation.RequiresApi;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;

Program type already present: android.support.v4.app.INotificationSideChannelエラー

プロジェクト直下のgradle.properties

android.enableJetifier=true
android.useAndroidX=true

http://wiki.nonip.net/index.php?title=Android/androidx&action=edit


"エラー: パッケージandroid.support.annotationは存在しません"エラーの時

プロジェクト直下の gradle.properties のorg.gradle.jvmargsを変更

# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.jvmargs=-Xmx1536m

"エラー: シンボルを見つけられません シンボル: クラス NonNull 場所: パッケージ androidx.annotation"エラーとなる場合

build.gradle 修正前

implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'

修正後

implementation "androidx.appcompat:appcompat:1.0.0"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
<pre>