Skip to content

Commit

Permalink
upgrade android sdk to 33
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-121 committed Apr 17, 2023
1 parent 0c13699 commit b497b0e
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 12 deletions.
9 changes: 5 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 31
compileSdk 33
buildToolsVersion '30.0.3'
defaultConfig {
applicationId "com.onrpiv.uploadmedia"
minSdkVersion 25
targetSdkVersion 31
versionCode 103
versionName "1.0.3"
targetSdkVersion 33
versionCode 104
versionName "1.0.4"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
Expand All @@ -32,6 +32,7 @@ android {
lint {
abortOnError false
}
namespace 'com.onrpiv.uploadmedia'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions app/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"
xmlns:tools="http://schemas.android.com/tools"
package="com.onrpiv.uploadmedia">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
maven {url "https://maven.google.com"}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'com.android.tools.build:gradle:8.0.0'

// Firebase Crashlytics
classpath 'com.google.gms:google-services:4.3.13'
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
#Thu Mar 04 13:53:04 MST 2021
android.defaults.buildfeatures.buildconfig=true
android.enableJetifier=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
4 changes: 4 additions & 0 deletions javaOpenCV/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ android {
lint {
abortOnError false
}
namespace 'org.opencv'
buildFeatures {
aidl true
}
}
3 changes: 1 addition & 2 deletions javaOpenCV/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="org.opencv"
android:versionCode="4110"
android:versionCode="4110"
android:versionName="4.1.1">

<uses-permission android:name="android.permission.CAMERA" />
Expand Down
4 changes: 4 additions & 0 deletions openCVLibrary344/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ android {
lint {
abortOnError false
}
namespace 'org.opencv'
buildFeatures {
aidl true
}
}
3 changes: 1 addition & 2 deletions openCVLibrary344/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="org.opencv"
android:versionCode="3440"
android:versionCode="3440"
android:versionName="3.4.4"
android:largeHeap="true">

Expand Down

0 comments on commit b497b0e

Please sign in to comment.