1plugins { 2 id 'com.android.application' 3} 4 5android { 6 namespace 'com.google.phonenumbers.demoapp' 7 compileSdk 33 8 9 defaultConfig { 10 applicationId "com.google.phonenumbers.demoapp" 11 minSdk 31 12 targetSdk 33 13 versionCode 1 14 versionName "1.0" 15 16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 17 } 18 19 buildTypes { 20 release { 21 debuggable false 22 minifyEnabled true 23 shrinkResources true 24 proguardFiles getDefaultProguardFile( 25 'proguard-android-optimize.txt') 26 } 27 28 debug { 29 debuggable true 30 } 31 } 32 33 compileOptions { 34 sourceCompatibility JavaVersion.VERSION_1_8 35 targetCompatibility JavaVersion.VERSION_1_8 36 } 37} 38 39dependencies { 40 implementation 'androidx.appcompat:appcompat:1.6.1' 41 implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 42 implementation 'com.google.android.material:material:1.8.0' 43 implementation 'com.googlecode.libphonenumber:libphonenumber:8.13.5' 44 testImplementation 'junit:junit:4.13.2' 45} 46