| plugins { |
| id 'com.android.application' version '8.1.2' |
| } |
| |
| android { |
| namespace "com.android.calculator2" |
| compileSdk 34 |
| |
| defaultConfig { |
| applicationId 'com.android.calculator2' |
| minSdk 31 |
| targetSdk 34 |
| versionCode 1 |
| versionName "1.0" |
| } |
| |
| buildTypes { |
| debug { |
| minifyEnabled false |
| } |
| release { |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.flags' |
| } |
| } |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| sourceSets { |
| main { |
| res.srcDirs = ['res'] |
| java.srcDirs = ['src'] |
| assets.srcDirs = ['assets'] |
| manifest.srcFile 'AndroidManifest.xml' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation files('cr.jar') |
| |
| implementation 'androidx.gridlayout:gridlayout:1.0.0' |
| implementation 'androidx.webkit:webkit:1.7.0' |
| implementation 'com.google.android.material:material:1.9.0' |
| } |