Skip to content

Commit

Permalink
esupNfcTagDroid-1.2.7 : targetSdkVersion 34 (Android 14)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbonamy committed Dec 18, 2023
1 parent 7e7acd5 commit 2b3782b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ ESUP-NFC-TAG-DROID

https://www.esup-portail.org/wiki/display/ESUPNFC/ESUP-NFC-TAG-DROID

To compile the APK (JDK 17 required) :
`./gradlew clean assemble`

[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/packages/org.esupportail.esupnfctagdroid/)
Expand Down
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.12.1'
}
}
Expand All @@ -28,21 +28,21 @@ license {
}

def buildVersionName() {
String versionName = "1.2.6"
String versionName = "1.2.7"
File versionApkFile = new File(projectDir, "src/main/assets/versionApk.txt")
versionApkFile.text = versionName
return versionName
}

android {
compileSdkVersion 33
buildToolsVersion '33.0.0'

compileSdk 34

defaultConfig {
applicationId "org.esupportail.esupnfctagdroid"
minSdkVersion 21
targetSdkVersion 33
versionCode 17
targetSdkVersion 34
versionCode 18
versionName buildVersionName()
}

Expand Down Expand Up @@ -80,6 +80,7 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'org.esupportail.esupnfctagdroid'
}


Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
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.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Empty file modified gradlew
100644 → 100755
Empty file.
3 changes: 1 addition & 2 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.esupportail.esupnfctagdroid">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

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

0 comments on commit 2b3782b

Please sign in to comment.