diff --git a/CHANGELOG.md b/CHANGELOG.md index e06ee91..7e63851 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,5 @@ # Android SDK Release Notes -## 4.3.2 -* Patched vulnerability CWE-926 -* Minimum Version on Android API: 26 (Oreo) - ## 4.3.1 * QA Environment hidden * Updated QA environment URL @@ -11,9 +7,6 @@ * Added Changelog * Enhanced Unit Tests * Minimum Version on Android API: 21 (Lollipop) -* Regex updated for client_id and session_id -* Autogeneration of session_id when the field is null or empty - ## 4.3.0 * Added the new feature of Completion Handler. This feature can help you perform any action of your choice just after the DDC Data Collection completes. The needed actions can be performed in the completion block. @@ -84,4 +77,4 @@ Kount's Android SDK is compatible with: ## 3.0 * Updated SDK with more intuitive configuration and collection -* Improved collection capabilities +* Improved collection capabilities \ No newline at end of file diff --git a/CheckoutExample/.idea/compiler.xml b/CheckoutExample/.idea/compiler.xml index 61a9130..fb7f4a8 100644 --- a/CheckoutExample/.idea/compiler.xml +++ b/CheckoutExample/.idea/compiler.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/CheckoutExample/.idea/deploymentTargetDropDown.xml b/CheckoutExample/.idea/deploymentTargetDropDown.xml new file mode 100644 index 0000000..06cd807 --- /dev/null +++ b/CheckoutExample/.idea/deploymentTargetDropDown.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/CheckoutExample/.idea/gradle.xml b/CheckoutExample/.idea/gradle.xml index 36a0e57..c9230e7 100644 --- a/CheckoutExample/.idea/gradle.xml +++ b/CheckoutExample/.idea/gradle.xml @@ -4,10 +4,10 @@ diff --git a/CheckoutExample/.idea/kotlinc.xml b/CheckoutExample/.idea/kotlinc.xml new file mode 100644 index 0000000..2b8a50f --- /dev/null +++ b/CheckoutExample/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/CheckoutExample/.idea/migrations.xml b/CheckoutExample/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/CheckoutExample/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/CheckoutExample/.idea/misc.xml b/CheckoutExample/.idea/misc.xml index bd3f01c..7ae578a 100644 --- a/CheckoutExample/.idea/misc.xml +++ b/CheckoutExample/.idea/misc.xml @@ -39,7 +39,7 @@ - + diff --git a/CheckoutExample/.idea/modules.xml b/CheckoutExample/.idea/modules.xml index 6a3a521..1c00c92 100644 --- a/CheckoutExample/.idea/modules.xml +++ b/CheckoutExample/.idea/modules.xml @@ -4,7 +4,13 @@ + + + + + + \ No newline at end of file diff --git "a/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24,_9_59\342\200\257AM_[Changes]/shelved.patch" "b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24,_9_59\342\200\257AM_[Changes]/shelved.patch" new file mode 100644 index 0000000..286d2f7 --- /dev/null +++ "b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24,_9_59\342\200\257AM_[Changes]/shelved.patch" @@ -0,0 +1,19 @@ +Index: app/build.gradle +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>apply plugin: 'com.android.application'\napply plugin: 'maven-publish'\n\n// Version name properties file reader\ndef versionPropertiesFile = new File(rootProject.projectDir, \"version.properties\")\ndef versionProperties = new Properties()\nversionPropertiesFile.withReader(\"UTF-8\") { reader -> versionProperties.load(reader) }\ndef version_name = versionProperties.getProperty(\"version.name\")\n\n\n\nandroid {\n compileSdkVersion 34\n buildToolsVersion \"29.0.3\"\n\n defaultConfig {\n applicationId \"com.kount.checkoutexample\"\n minSdkVersion 26\n targetSdkVersion 34\n versionCode 1\n versionName \"1.0\"\n }\n buildTypes {\n release {\n minifyEnabled false\n proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\n }\n }\n compileOptions {\n sourceCompatibility JavaVersion.VERSION_1_8\n targetCompatibility JavaVersion.VERSION_1_8\n }\n}\n\ndependencies {\n implementation fileTree(dir: 'libs', include: ['*.jar'])\n implementation fileTree(dir: '../../KountDataCollector', include: ['*.jar'])\n testImplementation 'junit:junit:4.13'\n implementation 'androidx.appcompat:appcompat:1.2.0'\n implementation 'com.google.android.instantapps:instantapps:1.1.0'\n\n implementation 'com.google.android.instantapps:instantapps:1.1.0'\n implementation 'com.google.code.gson:gson:2.8.6'\n implementation group: 'com.android.volley', name: 'volley', version: '1.2.1'\n implementation \"com.google.android.material:material:1.4.0\"\n implementation \"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version\"\n\n}\nrepositories {\n mavenCentral()\n google()\n jcenter()\n maven { url \"https://jitpack.io\" }\n}\nString VERSION_NAME = version_name\nString GROUP_ID = \"com.kount\"\nString ARTIFACT_ID = \"datacollector\"\n\nafterEvaluate {\n publishing {\n publications {\n release(MavenPublication) {\n groupId GROUP_ID\n artifactId = ARTIFACT_ID\n version = VERSION_NAME.replace('v','')\n\n artifact('../../KountDataCollector/kount-data-collector-' + VERSION_NAME.replace('v','') + '.jar')\n\n pom.withXml {\n def dependenciesNode = asNode().appendNode('dependencies')\n configurations[\"implementation\"].allDependencies.each {\n if (it.name!='unspecified') {\n def dependencyNode = dependenciesNode.appendNode('dependency')\n dependencyNode.appendNode('groupId', it.group)\n dependencyNode.appendNode('artifactId', it.name)\n dependencyNode.appendNode('version', VERSION_NAME == \"\" ? it.version : VERSION_NAME.replace('v',''))\n }\n }\n }\n }\n\n }\n }\n\n}\n\ntask getVersionNameTest(){\n doFirst{\n println \"version_name: \" + version_name\n println \"VERSION_NAME: \" + VERSION_NAME\n }\n}\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/app/build.gradle b/app/build.gradle +--- a/app/build.gradle ++++ b/app/build.gradle +@@ -73,7 +73,7 @@ + def dependencyNode = dependenciesNode.appendNode('dependency') + dependencyNode.appendNode('groupId', it.group) + dependencyNode.appendNode('artifactId', it.name) +- dependencyNode.appendNode('version', VERSION_NAME == "" ? it.version : VERSION_NAME.replace('v','')) ++ dependencyNode.appendNode('version', it.version) + } + } + } diff --git "a/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24,_9_59\342\200\257AM_[Changes]1/shelved.patch" "b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24,_9_59\342\200\257AM_[Changes]1/shelved.patch" new file mode 100644 index 0000000..35945d0 --- /dev/null +++ "b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24,_9_59\342\200\257AM_[Changes]1/shelved.patch" @@ -0,0 +1,108 @@ +Index: .idea/gradle.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\n\n \n \n \n \n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/.idea/gradle.xml b/.idea/gradle.xml +--- a/.idea/gradle.xml ++++ b/.idea/gradle.xml +@@ -4,10 +4,10 @@ + + + +Index: .idea/modules.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\n\n \n \n \n \n \n \n \n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/.idea/modules.xml b/.idea/modules.xml +--- a/.idea/modules.xml ++++ b/.idea/modules.xml +@@ -4,7 +4,13 @@ + + + ++ ++ ++ + ++ ++ ++ + + + +\ No newline at end of file +Index: .idea/compiler.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\n\n \n \n \n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/.idea/compiler.xml b/.idea/compiler.xml +--- a/.idea/compiler.xml ++++ b/.idea/compiler.xml +@@ -1,6 +1,6 @@ + + + +- ++ + + +\ No newline at end of file +Index: jitpack.yml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/jitpack.yml b/jitpack.yml +new file mode 100644 +--- /dev/null ++++ b/jitpack.yml +@@ -0,0 +1,2 @@ ++jdk: ++ - openjdk11 +\ No newline at end of file +Index: .idea/misc.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n 1.8\n \n \n \n \n \n \n \n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/.idea/misc.xml b/.idea/misc.xml +--- a/.idea/misc.xml ++++ b/.idea/misc.xml +@@ -39,7 +39,7 @@ + + + +- ++ + + + diff --git a/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24__9_59AM__Changes_.xml b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24__9_59AM__Changes_.xml new file mode 100644 index 0000000..87a4fee --- /dev/null +++ b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24__9_59AM__Changes_.xml @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24__9_59AM__Changes_1.xml b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24__9_59AM__Changes_1.xml new file mode 100644 index 0000000..5c5bf24 --- /dev/null +++ b/CheckoutExample/.idea/shelf/Uncommitted_changes_before_Update_at_18-10-24__9_59AM__Changes_1.xml @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/CheckoutExample/.idea/sonarlint/issuestore/0/4/04b2909e3cde08cb1546a7042dfa9c91191fc7fb b/CheckoutExample/.idea/sonarlint/issuestore/0/4/04b2909e3cde08cb1546a7042dfa9c91191fc7fb new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/0/4/04df100f80c7a5f52a094a6708f41a273f4e96f7 b/CheckoutExample/.idea/sonarlint/issuestore/0/4/04df100f80c7a5f52a094a6708f41a273f4e96f7 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/0/6/065a182b44cb3de2099c6a00a4001669b2e3bf7b b/CheckoutExample/.idea/sonarlint/issuestore/0/6/065a182b44cb3de2099c6a00a4001669b2e3bf7b new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/0/6/06f4131fed6c9052c1207c36d79ed7956b00171f b/CheckoutExample/.idea/sonarlint/issuestore/0/6/06f4131fed6c9052c1207c36d79ed7956b00171f new file mode 100644 index 0000000..0d91dc8 --- /dev/null +++ b/CheckoutExample/.idea/sonarlint/issuestore/0/6/06f4131fed6c9052c1207c36d79ed7956b00171f @@ -0,0 +1,6 @@ + +> kotlin:S1128 "Remove this unused import.(81 +9 kotlin:S1128 +"Remove this unused import.(厍81 +n kotlin:S1192;"ODefine a constant instead of duplicating this literal "DDC status is " 7 times.(81 + kotlin:S3923U"[Remove this conditional structure or edit its code blocks so that they're not all the same.(81 \ No newline at end of file diff --git a/CheckoutExample/.idea/sonarlint/issuestore/2/2/22a7e4702884314488a3c29ca4bb4064b4f59988 b/CheckoutExample/.idea/sonarlint/issuestore/2/2/22a7e4702884314488a3c29ca4bb4064b4f59988 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 b/CheckoutExample/.idea/sonarlint/issuestore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/5/3/531e8b917a3bde8aeac759a3d83d766c1515f9d4 b/CheckoutExample/.idea/sonarlint/issuestore/5/3/531e8b917a3bde8aeac759a3d83d766c1515f9d4 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e b/CheckoutExample/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/9/e/9e08934d811afe28fbc77aaa3c0d747b94348db9 b/CheckoutExample/.idea/sonarlint/issuestore/9/e/9e08934d811afe28fbc77aaa3c0d747b94348db9 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/a/f/af853937356ee8645de9edb9dec99801206ae331 b/CheckoutExample/.idea/sonarlint/issuestore/a/f/af853937356ee8645de9edb9dec99801206ae331 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/e/a/ea4d2bcfa2cd7a0657addd8192c758ea5a873aad b/CheckoutExample/.idea/sonarlint/issuestore/e/a/ea4d2bcfa2cd7a0657addd8192c758ea5a873aad new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 b/CheckoutExample/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 b/CheckoutExample/.idea/sonarlint/issuestore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e b/CheckoutExample/.idea/sonarlint/issuestore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/issuestore/index.pb b/CheckoutExample/.idea/sonarlint/issuestore/index.pb new file mode 100644 index 0000000..e426826 --- /dev/null +++ b/CheckoutExample/.idea/sonarlint/issuestore/index.pb @@ -0,0 +1,29 @@ + +Z +*kotlinexample/src/main/AndroidManifest.xml,e/a/ea4d2bcfa2cd7a0657addd8192c758ea5a873aad +P + app/src/main/AndroidManifest.xml,8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e +m +=app/src/main/java/com/kount/checkoutexample/MainActivity.java,0/6/065a182b44cb3de2099c6a00a4001669b2e3bf7b +s +Capp/src/main/java/com/kount/checkoutexample/CollectionActivity.java,0/4/04df100f80c7a5f52a094a6708f41a273f4e96f7 + +Rkotlinexample/src/main/java/com/kount/checkoutexample/kotlin/CollectionActivity.kt,5/3/531e8b917a3bde8aeac759a3d83d766c1515f9d4 +F +app/proguard-rules.pro,9/e/9e08934d811afe28fbc77aaa3c0d747b94348db9 + +^kotlinexample/src/androidTest/java/com/kount/checkoutexample/kotlin/ExampleInstrumentedTest.kt,2/2/22a7e4702884314488a3c29ca4bb4064b4f59988 +X +(gradle/wrapper/gradle-wrapper.properties,f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e +< + build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 +A +gradle.properties,2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 +J +kotlinexample/build.gradle,a/f/af853937356ee8645de9edb9dec99801206ae331 +| +Lkotlinexample/src/main/java/com/kount/checkoutexample/kotlin/MainActivity.kt,0/6/06f4131fed6c9052c1207c36d79ed7956b00171f +@ +app/build.gradle,f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 +B +version.properties,0/4/04b2909e3cde08cb1546a7042dfa9c91191fc7fb \ No newline at end of file diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/4/04b2909e3cde08cb1546a7042dfa9c91191fc7fb b/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/4/04b2909e3cde08cb1546a7042dfa9c91191fc7fb new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/4/04df100f80c7a5f52a094a6708f41a273f4e96f7 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/4/04df100f80c7a5f52a094a6708f41a273f4e96f7 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/6/065a182b44cb3de2099c6a00a4001669b2e3bf7b b/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/6/065a182b44cb3de2099c6a00a4001669b2e3bf7b new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/6/06f4131fed6c9052c1207c36d79ed7956b00171f b/CheckoutExample/.idea/sonarlint/securityhotspotstore/0/6/06f4131fed6c9052c1207c36d79ed7956b00171f new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/2/2/22a7e4702884314488a3c29ca4bb4064b4f59988 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/2/2/22a7e4702884314488a3c29ca4bb4064b4f59988 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/5/3/531e8b917a3bde8aeac759a3d83d766c1515f9d4 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/5/3/531e8b917a3bde8aeac759a3d83d766c1515f9d4 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e b/CheckoutExample/.idea/sonarlint/securityhotspotstore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/9/e/9e08934d811afe28fbc77aaa3c0d747b94348db9 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/9/e/9e08934d811afe28fbc77aaa3c0d747b94348db9 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/a/f/af853937356ee8645de9edb9dec99801206ae331 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/a/f/af853937356ee8645de9edb9dec99801206ae331 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/e/a/ea4d2bcfa2cd7a0657addd8192c758ea5a873aad b/CheckoutExample/.idea/sonarlint/securityhotspotstore/e/a/ea4d2bcfa2cd7a0657addd8192c758ea5a873aad new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/f/0/f07866736216be0ee2aba49e392191aeae700a35 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/f/0/f07866736216be0ee2aba49e392191aeae700a35 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 b/CheckoutExample/.idea/sonarlint/securityhotspotstore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e b/CheckoutExample/.idea/sonarlint/securityhotspotstore/f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e new file mode 100644 index 0000000..e69de29 diff --git a/CheckoutExample/.idea/sonarlint/securityhotspotstore/index.pb b/CheckoutExample/.idea/sonarlint/securityhotspotstore/index.pb new file mode 100644 index 0000000..e426826 --- /dev/null +++ b/CheckoutExample/.idea/sonarlint/securityhotspotstore/index.pb @@ -0,0 +1,29 @@ + +Z +*kotlinexample/src/main/AndroidManifest.xml,e/a/ea4d2bcfa2cd7a0657addd8192c758ea5a873aad +P + app/src/main/AndroidManifest.xml,8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e +m +=app/src/main/java/com/kount/checkoutexample/MainActivity.java,0/6/065a182b44cb3de2099c6a00a4001669b2e3bf7b +s +Capp/src/main/java/com/kount/checkoutexample/CollectionActivity.java,0/4/04df100f80c7a5f52a094a6708f41a273f4e96f7 + +Rkotlinexample/src/main/java/com/kount/checkoutexample/kotlin/CollectionActivity.kt,5/3/531e8b917a3bde8aeac759a3d83d766c1515f9d4 +F +app/proguard-rules.pro,9/e/9e08934d811afe28fbc77aaa3c0d747b94348db9 + +^kotlinexample/src/androidTest/java/com/kount/checkoutexample/kotlin/ExampleInstrumentedTest.kt,2/2/22a7e4702884314488a3c29ca4bb4064b4f59988 +X +(gradle/wrapper/gradle-wrapper.properties,f/b/fbe448ebfc3eb2d4e308f6b8b043666f5b57235e +< + build.gradle,f/0/f07866736216be0ee2aba49e392191aeae700a35 +A +gradle.properties,2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4 +J +kotlinexample/build.gradle,a/f/af853937356ee8645de9edb9dec99801206ae331 +| +Lkotlinexample/src/main/java/com/kount/checkoutexample/kotlin/MainActivity.kt,0/6/06f4131fed6c9052c1207c36d79ed7956b00171f +@ +app/build.gradle,f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 +B +version.properties,0/4/04b2909e3cde08cb1546a7042dfa9c91191fc7fb \ No newline at end of file diff --git a/CheckoutExample/jitpack.yml b/CheckoutExample/jitpack.yml new file mode 100644 index 0000000..46c8529 --- /dev/null +++ b/CheckoutExample/jitpack.yml @@ -0,0 +1,2 @@ +jdk: + - openjdk11 \ No newline at end of file diff --git a/KountDataCollector/kount-data-collector-4.3.2.jar b/KountDataCollector/kount-data-collector-4.3.2.jar deleted file mode 100644 index 46f3af8..0000000 Binary files a/KountDataCollector/kount-data-collector-4.3.2.jar and /dev/null differ