Skip to content

Commit

Permalink
Android 35
Browse files Browse the repository at this point in the history
  • Loading branch information
oers committed Nov 18, 2024
1 parent 9e9154a commit 7ac4731
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"
BUILD_TOOLS_VERSION: "35.0.0"
- name: upload
uses: actions/upload-artifact@v3
with:
Expand All @@ -56,10 +56,10 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: set up JDK 17
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"
BUILD_TOOLS_VERSION: "35.0.0"
- name: play store
uses: r0adkll/upload-google-play@v1
with:
Expand Down
33 changes: 16 additions & 17 deletions project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ project.ext.set("archivesBaseName", "reversatile")
android {


compileSdk 34
buildToolsVersion '34.0.0'

compileSdk 35
buildToolsVersion '35.0.0'
useLibrary 'android.test.base'
useLibrary 'android.test.mock'

Expand All @@ -22,7 +21,7 @@ android {
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
}
minSdkVersion 21
targetSdkVersion 34
targetSdkVersion 35
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -77,27 +76,27 @@ repositories {
}

dependencies {
api 'com.google.guava:guava:27.1-android'
api 'com.google.guava:guava:33.3.1-android'

implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.core:core:1.12.0'
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core:1.15.0'
implementation 'androidx.vectordrawable:vectordrawable-animated:1.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.github.matomo-org:matomo-sdk-android:4.1.4'
implementation 'org.apache.commons:commons-lang3:3.0'
implementation 'org.apache.commons:commons-lang3:3.17.0'

implementation 'com.github.Innovattic:range-seek-bar:v1.0.6'
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
implementation(platform('org.jetbrains.kotlin:kotlin-bom:2.0.21'))

// Required -- JUnit 4 framework
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
// Optional -- Mockito framework
testImplementation 'org.mockito:mockito-core:2.28.2'
androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test:rules:1.5.0'
testImplementation 'org.mockito:mockito-core:5.14.2'
androidTestImplementation 'androidx.test:core:1.6.1'
androidTestImplementation 'androidx.test:runner:1.6.2'
androidTestImplementation 'androidx.test:rules:1.6.1'
// Optional -- Hamcrest library
androidTestImplementation 'org.hamcrest:hamcrest-library:2.1'
androidTestImplementation 'org.hamcrest:hamcrest-library:3.0'
}
3 changes: 2 additions & 1 deletion project/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@

<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme" parent="Theme.AppCompat">
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
<item name="actionBarStyle">@style/MyActionBar</item>
<item name="android:textColor">@color/statustextcolor</item>
<item name="android:textColor">@color/statustextcolor</item>test
<item name="android:actionButtonStyle">@style/ActionButton</item>
</style>

Expand Down

0 comments on commit 7ac4731

Please sign in to comment.