Skip to content

Commit

Permalink
chore: Bump target SDK to v35 (Android 15) (#193)
Browse files Browse the repository at this point in the history
Signed-off-by: starry-shivam <[email protected]>
  • Loading branch information
starry-shivam authored Jul 23, 2024
1 parent 1268294 commit e56a6f6
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 17 deletions.
1 change: 1 addition & 0 deletions .idea/misc.xml

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

8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ String getGoogleApiKey() {

android {
namespace 'com.starry.myne'
compileSdk 34
compileSdk 35

defaultConfig {
applicationId "com.starry.myne"
minSdk 26
targetSdk 34
targetSdk 35
versionCode 391
versionName "3.9.1"

Expand Down Expand Up @@ -98,9 +98,9 @@ dependencies {

// Android core components.
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.3'
implementation 'androidx.activity:activity-compose:1.9.0'
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.3"
implementation "androidx.navigation:navigation-compose:2.7.7"
// Jetpack compose.
implementation "androidx.compose.ui:ui"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fun OSLScreen(navController: NavController) {
.fillMaxSize()
.background(MaterialTheme.colorScheme.background),
topBar = {
CustomTopAppBar(headerText = stringResource(id = R.string.open_source_header)) {
CustomTopAppBar(headerText = stringResource(id = R.string.open_source_licenses_header)) {
navController.navigateUp()
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-ar/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">المكتبات مفتوحة المصدر</string>
<string name="open_source_licenses_header">التراخيص</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-cs/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Knihovny open source</string>
<string name="open_source_licenses_header">Licence</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Open-Source-Bibliotheken</string>
<string name="open_source_licenses_header">Lizenzen</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Librerías de código abierto</string>
<string name="open_source_licenses_header">Licencias</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-it/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Librerie Open Source</string>
<string name="open_source_licenses_header">Licenze</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-pt-rBR/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Bibliotecas de código aberto</string>
<string name="open_source_licenses_header">Licenças</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-ro/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Biblioteci de sursă deschisă</string>
<string name="open_source_licenses_header">Licențe</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-ru/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,5 +151,5 @@


<!-- Open source libraries screen -->
<string name="open_source_header">Библиотеки с открытым исходным кодом</string>
<string name="open_source_licenses_header">Лицензии</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@


<!-- Open source libraries screen 开放源代码库界面-->
<string name="open_source_header">开源库</string>
<string name="open_source_licenses_header">许可证</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@
<string name="link_support_desc">Think I deserve cookies? Click here!</string>

<!-- Open source libraries screen -->
<string name="open_source_header">Open Source Libraries</string>
<string name="open_source_licenses_header">Licenses</string>
</resources>
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
kotlin_version = '2.0.0'
gradle_version = '8.5.0'
gradle_version = '8.5.1'
hilt_version = '2.51.1'
room_version = '2.6.1'
}
Expand All @@ -25,5 +25,5 @@ plugins {
id 'com.android.library' version "$gradle_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'org.jetbrains.kotlin.plugin.compose' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version '2.0.0-1.0.21' apply false
id 'com.google.devtools.ksp' version '2.0.0-1.0.23' apply false
}

0 comments on commit e56a6f6

Please sign in to comment.