Skip to content

Commit f965a64

Browse files
author
Bootpay
committed
inject uuid
1 parent d68b54a commit f965a64

File tree

1,831 files changed

+78542
-835
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,831 files changed

+78542
-835
lines changed

bootpay/bootpay.iml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,25 +93,31 @@
9393
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
9494
<sourceFolder url="file://$MODULE_DIR$/src/test/rs" isTestSource="true" />
9595
<sourceFolder url="file://$MODULE_DIR$/src/test/shaders" isTestSource="true" />
96+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/annotations" />
9697
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/blame" />
9798
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/bundles" />
99+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/classes" />
98100
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" />
101+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental-safeguard" />
102+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/jniLibs" />
99103
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/lint" />
100104
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/manifests" />
101105
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/res" />
102106
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
103107
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/shaders" />
104108
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
109+
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/transforms" />
110+
<excludeFolder url="file://$MODULE_DIR$/build/kotlin" />
105111
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
112+
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
106113
</content>
107114
<orderEntry type="jdk" jdkName="Android API 25 Platform (3)" jdkType="Android SDK" />
108115
<orderEntry type="sourceFolder" forTests="false" />
109116
<orderEntry type="library" exported="" name="com.squareup.retrofit2:converter-gson:2.3.0@jar" level="project" />
117+
<orderEntry type="library" exported="" name="org.jetbrains.kotlin:kotlin-stdlib:1.1.4@jar" level="project" />
110118
<orderEntry type="library" exported="" scope="TEST" name="com.android.support.test:exposed-instrumentation-api-publish-0.5" level="project" />
111119
<orderEntry type="library" exported="" name="com.google.code.gson:gson:2.8.0@jar" level="project" />
112120
<orderEntry type="library" exported="" scope="TEST" name="junit:junit:4.12@jar" level="project" />
113-
<orderEntry type="library" exported="" name="org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.50@jar" level="project" />
114-
<orderEntry type="library" exported="" name="com.scottyab:secure-preferences-lib-0.1.4" level="project" />
115121
<orderEntry type="library" exported="" scope="TEST" name="javax.inject:javax.inject:1@jar" level="project" />
116122
<orderEntry type="library" exported="" name="com.android.support:support-core-ui-25.3.1" level="project" />
117123
<orderEntry type="library" exported="" scope="TEST" name="com.squareup:javawriter:2.1.1@jar" level="project" />
@@ -133,15 +139,15 @@
133139
<orderEntry type="library" exported="" scope="TEST" name="org.hamcrest:hamcrest-integration:1.3@jar" level="project" />
134140
<orderEntry type="library" exported="" scope="TEST" name="com.android.support.test:runner-0.5" level="project" />
135141
<orderEntry type="library" exported="" name="com.android.support:appcompat-v7-25.3.1" level="project" />
142+
<orderEntry type="library" exported="" name="org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.4@jar" level="project" />
143+
<orderEntry type="library" exported="" name="com.chibatching.kotpref:kotpref-2.2.0" level="project" />
136144
<orderEntry type="library" exported="" name="org.jetbrains:annotations:13.0@jar" level="project" />
137145
<orderEntry type="library" exported="" scope="TEST" name="com.android.support.test.espresso:espresso-idling-resource-2.2.2" level="project" />
138146
<orderEntry type="library" exported="" scope="TEST" name="javax.annotation:javax.annotation-api:1.2@jar" level="project" />
139147
<orderEntry type="library" exported="" name="io.reactivex:rxjava:1.3.0@jar" level="project" />
140-
<orderEntry type="library" exported="" name="org.jetbrains.kotlin:kotlin-stdlib:1.1.50@jar" level="project" />
141148
<orderEntry type="library" exported="" name="com.squareup.okhttp3:okhttp:3.9.0@jar" level="project" />
142149
<orderEntry type="library" exported="" name="com.squareup.retrofit2:converter-moshi:2.3.0@jar" level="project" />
143150
<orderEntry type="library" exported="" name="com.android.support:support-vector-drawable-25.3.1" level="project" />
144151
<orderEntry type="library" exported="" name="com.android.support:support-annotations:25.3.1@jar" level="project" />
145-
<orderEntry type="library" exported="" name="com.scottyab:aes-crypto-0.0.4" level="project" />
146152
</component>
147153
</module>

bootpay/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ dependencies {
3131
compile 'com.squareup.retrofit2:adapter-rxjava:2.3.0'
3232
compile 'com.squareup.okhttp3:okhttp:3.9.0'
3333
compile 'com.android.support:appcompat-v7:25.3.1'
34-
compile 'com.scottyab:secure-preferences-lib:0.1.4'
34+
compile "com.chibatching.kotpref:kotpref:2.2.0"
35+
// compile 'com.scottyab:secure-preferences-lib:0.1.4'
3536
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
3637
}
3738
repositories {
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package kr.co.bootpay;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = false;
8+
public static final String APPLICATION_ID = "kr.co.bootpay";
9+
public static final String BUILD_TYPE = "release";
10+
public static final String FLAVOR = "";
11+
public static final int VERSION_CODE = 1;
12+
public static final String VERSION_NAME = "1.0";
13+
}

bootpay/build/generated/source/r/debug/com/securepreferences/R.java renamed to bootpay/build/generated/source/r/androidTest/debug/com/chibatching/kotpref/R.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
* gradle plugin from the resource data it found. It
55
* should not be modified by hand.
66
*/
7-
package com.securepreferences;
7+
package com.chibatching.kotpref;
88

99
public final class R {
10-
public static final class string {
11-
public static int app_name = 0x7f050021;
12-
}
1310
}

bootpay/build/generated/source/r/androidTest/debug/com/tozny/crypto/android/R.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

bootpay/build/generated/source/r/debug/com/tozny/crypto/android/R.java renamed to bootpay/build/generated/source/r/debug/com/chibatching/kotpref/R.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
* gradle plugin from the resource data it found. It
55
* should not be modified by hand.
66
*/
7-
package com.tozny.crypto.android;
7+
package com.chibatching.kotpref;
88

99
public final class R {
10-
public static final class string {
11-
public static int app_name = 0x7f050021;
12-
}
1310
}

bootpay/build/generated/source/r/androidTest/debug/com/securepreferences/R.java renamed to bootpay/build/generated/source/r/release/android/support/compat/R.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
* gradle plugin from the resource data it found. It
55
* should not be modified by hand.
66
*/
7-
package com.securepreferences;
7+
package android.support.compat;
88

99
public final class R {
10-
public static final class string {
11-
public static final int app_name = 0x7f050021;
12-
}
1310
}

sample/build/generated/source/r/debug/com/securepreferences/R.java renamed to bootpay/build/generated/source/r/release/android/support/coreui/R.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
* gradle plugin from the resource data it found. It
55
* should not be modified by hand.
66
*/
7-
package com.securepreferences;
7+
package android.support.coreui;
88

99
public final class R {
10-
public static final class string {
11-
public static final int app_name = 0x7f060021;
12-
}
1310
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.coreutils;
8+
9+
public final class R {
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.fragment;
8+
9+
public final class R {
10+
}

0 commit comments

Comments
 (0)