| apply plugin: 'com.android.application' |
| apply plugin: 'kotlin-android' |
| |
| |
| android { |
| namespace 'com.example.appwithactivityinlib' |
| compileSdk 33 |
| |
| defaultConfig { |
| applicationId "com.example.appwithactivityinlib" |
| minSdk 33 |
| targetSdk 33 |
| versionCode 1 |
| versionName "1.0" |
| |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| vectorDrawables { |
| useSupportLibrary true |
| } |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| kotlinOptions { |
| jvmTarget = '1.8' |
| } |
| packagingOptions { |
| resources { |
| excludes += '/META-INF/{AL2.0,LGPL2.1}' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation project(":mylibrary") |
| } |