Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

263 changes: 263 additions & 0 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added .sonarcloud.properties
Empty file.
46 changes: 24 additions & 22 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ android {

defaultConfig {
applicationId "com.kharagedition.tibetankeyboard"
minSdkVersion 19
minSdkVersion 21
targetSdkVersion 34
versionCode 7
versionName "1.0.8"
versionCode 8
versionName "1.0.9"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
Expand Down Expand Up @@ -42,37 +42,39 @@ android {
buildFeatures {
viewBinding = true
}
configurations {
/* configurations {
all {
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
}
}
}*/
}

dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20" // Update this line
implementation 'androidx.core:core-ktx:1.10.1' // Update this line
implementation 'androidx.appcompat:appcompat:1.6.1' // Update this line
implementation 'com.google.android.material:material:1.9.0' // Update this line
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' // Update this line
implementation 'androidx.preference:preference-ktx:1.2.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3' // Update this line
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3' // Update this line
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
//google ads
implementation 'com.google.android.gms:play-services-ads:20.2.0'
//firebase
implementation platform('com.google.firebase:firebase-bom:26.7.0')
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' // Update this line

// Google ads
implementation 'com.google.android.gms:play-services-ads:22.2.0' // Update this line

// Firebase
implementation platform('com.google.firebase:firebase-bom:32.2.0') // Update this line
implementation 'com.google.firebase:firebase-crashlytics-ktx'
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-messaging-ktx:23.1.0'
//image
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
implementation 'androidx.work:work-runtime:2.8.0-beta02'
implementation 'com.google.firebase:firebase-messaging-ktx:23.2.0' // Update this line

// Image
implementation 'com.github.bumptech.glide:glide:4.15.1' // Update this line
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1' // Update this line
implementation 'androidx.work:work-runtime:2.8.1' // Update this line

}
Binary file modified app/release/app-release.aab
Binary file not shown.
Loading