| apply plugin: 'com.android.application' |
| apply plugin: 'kotlin-android' |
| |
| android { |
| compileSdkVersion 33 |
| namespace "com.example.google.androidx" |
| defaultConfig { |
| applicationId "com.example.google.androidx" |
| minSdkVersion 24 |
| targetSdkVersion 33 |
| versionCode 1 |
| versionName "1.0" |
| } |
| |
| compileOptions { |
| sourceCompatibility = JavaVersion.VERSION_17 |
| targetCompatibility = JavaVersion.VERSION_17 |
| } |
| |
| kotlinOptions { |
| jvmTarget = "17" |
| } |
| } |
| |
| dependencies { |
| implementation fileTree(dir: 'libs', include: ['*.jar']) |
| implementation 'androidx.appcompat:appcompat:+' |
| implementation 'androidx.constraintlayout:constraintlayout:+' |
| } |