From e429c1ff135bc251c32fb52a1c8c0c8641cf225d Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Wed, 20 Sep 2023 16:43:39 +0200 Subject: [PATCH 1/6] Create dependabot.yml --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2d73486 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + + +version: 2 +updates: + - package-ecosystem: "" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 61b86c7b7e87aff44334189bcd492060168f3398 Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Thu, 28 Sep 2023 09:45:11 +0200 Subject: [PATCH 2/6] .idea update --- .idea/compiler.xml | 2 +- .idea/misc.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.idea/compiler.xml b/.idea/compiler.xml index fb7f4a8..b589d56 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 70d034b..fa51d7d 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -5,7 +5,7 @@ - + From 545c730235ef0989233388615a94ffaacffdb41e Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Thu, 28 Sep 2023 09:52:19 +0200 Subject: [PATCH 3/6] Platform update to API 33 Added oem info as a provider in the manifest --- DeviceIdentifiersWrapper/build.gradle | 16 ++++++++-------- .../src/main/AndroidManifest.xml | 1 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/DeviceIdentifiersWrapper/build.gradle b/DeviceIdentifiersWrapper/build.gradle index f6c0991..e19c4b0 100644 --- a/DeviceIdentifiersWrapper/build.gradle +++ b/DeviceIdentifiersWrapper/build.gradle @@ -3,15 +3,15 @@ plugins { } android { - compileSdkVersion 32 + compileSdkVersion 33 defaultConfig { minSdkVersion 19 - targetSdkVersion 32 - versionCode 8 - versionName "0.8" + targetSdkVersion 33 + versionCode 9 + versionName "0.9" - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } @@ -30,9 +30,9 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.android.support:appcompat-v7:28.0.0' + implementation 'androidx.appcompat:appcompat:1.0.0' testImplementation 'junit:junit:4.13' - androidTestImplementation 'com.android.support.test:runner:1.0.2' - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' compileOnly 'com.symbol:emdk:+' } diff --git a/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml b/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml index 81fc359..7d2a448 100644 --- a/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml +++ b/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml @@ -4,5 +4,6 @@ + From e92cf990c481a1fca87854fa69e76372d8d036d7 Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Thu, 28 Sep 2023 10:25:23 +0200 Subject: [PATCH 4/6] added comments --- .../src/main/AndroidManifest.xml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml b/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml index 7d2a448..eda747d 100644 --- a/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml +++ b/DeviceIdentifiersWrapper/src/main/AndroidManifest.xml @@ -1,9 +1,29 @@ + + + + + + + From 38daec744909260ff4d6382909748f60e980e38e Mon Sep 17 00:00:00 2001 From: Trudu Laurent Date: Thu, 28 Sep 2023 10:28:43 +0200 Subject: [PATCH 5/6] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9477554..5f6c9a7 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,14 @@ Have fun with Zebra's devices :) ## Change Log !!! ### 1. Change of REPOSITORY -### 2. UPDATED FOR A11... -### 3. Added a Sample repository running on <=A11 +### 2. UPDATED FOR A13... +### 3. Added a Sample repository running on <=A13 ## Sample Repository https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample +## V0.8 to V0.9 : Updated for A13 + ## V0.4 to v0.8 : Basic cache mechanism & Wait for EMDK availability ```text Added basic cache mechanism. @@ -74,6 +76,7 @@ To use this helper on Zebra Android devices running Android 10 or higher, first ```xml += 11) @@ -81,6 +84,7 @@ Then add a query element to retrive the data (only necessary for Android builds ```xml + ``` @@ -97,10 +101,12 @@ Sample AdroidManifest.xml: TODO: Add these permissions to your manifest + TODO: Add query element to your manifest + Date: Thu, 28 Sep 2023 10:30:44 +0200 Subject: [PATCH 6/6] Update README.md A13 Update --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f6c9a7..3f0a433 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,11 @@ Have fun with Zebra's devices :) https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample ## V0.8 to V0.9 : Updated for A13 - +```text + Added BIND_NOTIFICATION_LISTENER_SERVICE permission + Added com.symbol.emdk.emdkservice querie + API updated to 33 +``` ## V0.4 to v0.8 : Basic cache mechanism & Wait for EMDK availability ```text Added basic cache mechanism.