Skip to content

Commit

Permalink
release Version 4.0.6 (406)
Browse files Browse the repository at this point in the history
  • Loading branch information
k3b committed Feb 14, 2024
1 parent 0b42ad6 commit 1d8b5ae
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 18 deletions.
28 changes: 16 additions & 12 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
compileSdk 34

defaultConfig {
minSdkVersion 16
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 29
targetSdkVersion 34

applicationId 'de.k3b.android.intentintercept'

Expand All @@ -20,8 +20,9 @@ android {
// 4.0.3 (403) 2022-04-25. added OPENABLE category (by the-blank-x)
// 4.0.4 (404) 2022-07-04. added Support for some native filemanagers (by SlipkHunter)
// 4.0.5 (405) 2023-04-06. added url-decoded; added Support for SAF (OPEN_DOCUMENT, CREATE_DOCUMENT, OPEN_DOCUMENT_TREE); Gradle7.5
versionCode 405
versionName '4.0.5'
// 4.0.6 (406) 2024-02-14. added whatsapp specific intents; build/Lib updates
versionCode 406
versionName '4.0.6'
}
buildTypes {
release {
Expand All @@ -30,22 +31,25 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
lintOptions {
abortOnError false
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dependenciesInfo {
includeInApk true
includeInBundle false
}
namespace 'uk.co.ashtonbrsc.android.intentintercept'
lint {
abortOnError false
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')

// Note: Updating these to latest versions also require java-1.8 and compileSdkVersion 33
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
// Note: Updating these to latest versions also require compileSdkVersion 33
implementation 'androidx.preference:preference:1.2.1'

// implementation 'androidx.appcompat:appcompat:1.6.0' // not compatible with minSdk 16
implementation 'androidx.appcompat:appcompat:1.5.1'
}
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="uk.co.ashtonbrsc.android.intentintercept">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.2' apply false
id 'com.android.application' version '8.1.1' apply false
}

task clean(type: Delete) {
Expand Down
14 changes: 13 additions & 1 deletion fastlane/metadata/android/en-US/changelogs/406.txt
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
--- todo ---
This apk requires minSdk-16=Android-4.1=JELLY_BEAN (released in 2002) or later

Changes:

Added WhatsApp specific Intents (by Guilherme)
Updated build and libs
- java:7 -> 8
- gradle:7.5 -> 8.0
- compileSdk: 29 -> 34
- lib androidx.appcompat:appcompat: 1.2.0 -> 1.5.1
- lib androidx.preference:preference: 1.1.1 -> 1.2.1
- minSdk (unchanged): 16 = Android 4.1 = JELLY_BEAN (released in 2002)

1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/407.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--- todo ---
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.defaults.buildfeatures.buildconfig=true
android.enableJetifier=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=cb87f222c5585bd46838ad4db78463a5c5f3d336e5e2b98dc7c0c586527351c2
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionSha256Sum=4159b938ec734a8388ce03f52aa8f3c7ed0d31f5438622545de4f83a89b79788
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 1d8b5ae

Please sign in to comment.