apply plugin: 'com.android.library' //apply plugin: 'com.github.dcendents.android-maven' //group='com.github.codbking' android { compileSdkVersion 28 //buildToolsVersion "25.0.0" defaultConfig { minSdkVersion 19 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } greendao { } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) implementation 'com.android.support:appcompat-v7:28.0.0' testImplementation 'junit:junit:4.12' } //apply from: 'nexus-push.gradle'