Skip to content

Commit

Permalink
Android 33
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Murawski committed Nov 30, 2023
1 parent 601623a commit 4f0c545
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ buildscript {

dependencies {
classpath 'com.github.triplet.gradle:play-publisher:3.7.0'
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'com.android.tools.build:gradle:7.4.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 5 additions & 3 deletions project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ project.ext.set("archivesBaseName", "reversatile")
android {


compileSdkVersion 32
buildToolsVersion '32.0.0'
compileSdkVersion 33
buildToolsVersion '33.0.0'

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

Expand Down Expand Up @@ -64,6 +64,8 @@ android {
lint {
disable 'GoogleAppIndexingWarning', 'UnusedAttribute'
}
namespace 'de.earthlingz.oerszebra'
testNamespace 'de.earthlingz.oerszebra.tests'


}
Expand Down
3 changes: 1 addition & 2 deletions project/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us --><!--suppress AndroidDomInspection -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.earthlingz.oerszebra.tests"
android:versionCode="1"
android:versionCode="1"
android:versionName="1.0">
<!-- We add an application tag here just so that we can indicate that
this package needs to link against the android.test library,
Expand Down
3 changes: 1 addition & 2 deletions project/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.earthlingz.oerszebra"
android:installLocation="auto"
android:installLocation="auto"
android:label="Reversatile">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Expand Down

0 comments on commit 4f0c545

Please sign in to comment.