| apply plugin: 'com.android.application' |
| |
| android { |
| namespace "google.simpleapplication" |
| compileSdkVersion 33 |
| |
| defaultConfig { |
| applicationId "google.visuallintapplication" |
| minSdkVersion 29 |
| targetSdkVersion 33 |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| } |
| lintOptions { |
| abortOnError false |
| } |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_17 |
| targetCompatibility JavaVersion.VERSION_17 |
| } |
| } |
| |
| dependencies { |
| implementation "androidx.constraintlayout:constraintlayout:2.1.3" |
| implementation "androidx.appcompat:appcompat:1.6.1" |
| implementation 'com.google.android.material:material:1.8.0' |
| testImplementation 'junit:junit:4.12' |
| androidTestImplementation 'com.android.support.test:runner:+' |
| androidTestImplementation 'com.android.support.test.espresso:espresso-core:+' |
| } |