AndroidStudio将module变为library

不啰嗦直接上步骤:

1.首先进入你要变成library的module里的 build.gradle,打开将文件头

apply plugin: 'com.android.application'

更改成

apply plugin: 'com.android.library'

2.将applicationId删除或者注释掉,为防止有些小伙伴找不到这里给出代码位置。

 	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,红色文字是要删除或注释掉的。




你可能感兴趣的:(android)