apply plugin: 'com.android.library' | |
android { | |
compileSdkVersion 25 | |
namespace "com.example.appandmodules.mylibrary" | |
defaultConfig { | |
minSdkVersion 23 | |
targetSdkVersion 25 | |
versionCode 1 | |
versionName "1.0" | |
} | |
} | |
dependencies { | |
api project(':mylibrarybase') | |
} |