11plugins {
2- id ' com.android.application'
3- id ' org.jetbrains.kotlin.android'
2+ id( " com.android.application" )
3+ id( " org.jetbrains.kotlin.android" )
44}
55
66android {
7- compileSdk 34
7+ namespace = " com.sample.shimmertextview"
8+
9+ compileSdk = 34
810
911 defaultConfig {
10- applicationId " com.app .shimmertextview"
11- minSdk 23
12- targetSdk 34
13- versionCode 1
14- versionName " 1.0"
12+ applicationId = " com.sample .shimmertextview"
13+ minSdk = 23
14+ targetSdk = 34
15+ versionCode = 1
16+ versionName = " 1.0"
1517
16- testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
18+ testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
1719 }
1820
1921 buildTypes {
2022 release {
21- minifyEnabled false
22- proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
23+ minifyEnabled = false
24+ proguardFiles( getDefaultProguardFile(" proguard-android-optimize.txt" ), " proguard-rules.pro" )
2325 }
2426 }
2527 compileOptions {
26- sourceCompatibility JavaVersion . VERSION_17
27- targetCompatibility JavaVersion . VERSION_17
28+ sourceCompatibility = JavaVersion . VERSION_17
29+ targetCompatibility = JavaVersion . VERSION_17
2830 }
2931 kotlinOptions {
3032 jvmTarget = ' 17'
3133 }
32- namespace ' com.app.shimmertextview'
3334}
3435
3536dependencies {
3637
37- implementation ' androidx.core:core-ktx:1.12.0'
38- implementation ' androidx.appcompat:appcompat:1.6.1'
39- implementation ' com.google.android.material:material:1.11.0'
40- implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
41- implementation project(path : ' : ShimmerTextView' )
38+ implementation( " androidx.core:core-ktx:1.12.0" )
39+ implementation( " androidx.appcompat:appcompat:1.6.1" )
40+ implementation( " com.google.android.material:material:1.11.0" )
41+ implementation( " androidx.constraintlayout:constraintlayout:2.1.4" )
42+ implementation( project(" : ShimmerTextView" ) )
4243}
0 commit comments