| apply plugin: 'com.android.library' |
| apply plugin: 'kotlin-android' |
| apply plugin: 'kotlin-android-extensions' |
| |
| android { |
| compileSdkVersion 27 |
| |
| defaultConfig { |
| minSdkVersion 15 |
| targetSdkVersion 26 |
| versionCode 1 |
| versionName "1.0" |
| |
| testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
| |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| |
| } |
| |
| group = 'com.test.composite' |
| version = '1.0' |
| |
| dependencies { |
| implementation fileTree(dir: 'libs', include: ['*.jar']) |
| |
| implementation 'com.android.support:appcompat-v7:+' |
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" |
| } |
| |