Android Studioはmoduleをlibraryに変更

912 ワード

くどくどしないで直接ステップに進みます.
1.まずlibraryのmoduleになるbuildに入ります.gradle、開くファイルヘッダ
apply plugin: 'com.android.application'
に変更
apply plugin: 'com.android.library'
2.アプリケーションIdを削除またはコメントし、ここにコードの場所が見つからないようにします.
 	defaultConfig {
       		 applicationId "com.alone.www.pluggable"
       		 minSdkVersion 15
        	targetSdkVersion 25
        	versionCode 1
       		 versionName "1.0"
        	testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
       		 externalNativeBuild {
           		 cmake {
                	cppFlags ""
            		}
       		 }
   	 }

これでlibraryになり、赤い文字は削除したり注釈したりします.