LoginSignup
0
1

More than 5 years have passed since last update.

android N の対応

Posted at

android N の対応

Android Studio

Android Studioを最新にする

Android SDK Manager

API レベル 24のSDKをインストール

Java8にする

apiレベルを24にする

compileSdkVersion 24
targetSdkVersion 24

コンパイルオプションでjava8指定

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

JackOptionsを追加する

jackOptions {
           enabled true
       }

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1