Skip to content

Commit 4a86194

Browse files
Merge pull request #8 from TapPay/chris/3_4_4_test
use 3.4.4 aar and build with targetSdkVersion 31
2 parents 1523c8b + 281e748 commit 4a86194

File tree

24 files changed

+43
-25
lines changed

24 files changed

+43
-25
lines changed

DirectPayExample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 31
55
buildToolsVersion "28.0.3"
66
defaultConfig {
77
applicationId 'tech.cherri.directpayexample'
88
minSdkVersion 15
9-
targetSdkVersion 28
9+
targetSdkVersion 31
1010
versionCode 15
1111
versionName "2.3.1"
1212
}
37 Bytes
Binary file not shown.

DirectPayExample/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
android:label="@string/app_name"
1111
android:supportsRtl="true"
1212
android:theme="@style/AppTheme">
13-
<activity android:name=".MainActivity">
13+
<activity android:name=".MainActivity"
14+
android:exported="true">
1415
<intent-filter>
1516
<action android:name="android.intent.action.MAIN" />
1617

EasyWalletExample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 31
55
buildToolsVersion "28.0.3"
66
defaultConfig {
77
applicationId 'tech.cherri.easywalletexample'
88
minSdkVersion 15
9-
targetSdkVersion 28
9+
targetSdkVersion 31
1010
versionCode 15
1111
versionName "2.3.1"
1212
}
37 Bytes
Binary file not shown.

EasyWalletExample/app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
android:theme="@style/AppTheme">
1111
<activity
1212
android:name=".MainActivity"
13-
android:launchMode="singleTask">
13+
android:launchMode="singleTask"
14+
android:exported="true">
1415
<intent-filter>
1516
<action android:name="android.intent.action.MAIN" />
1617

@@ -41,4 +42,8 @@
4142

4243
</activity>
4344
</application>
45+
<queries>
46+
<!-- for easy-wallet open -->
47+
<package android:name="com.easycard.wallet" />
48+
</queries>
4449
</manifest>

EasyWalletExample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.0.0'
9+
classpath 'com.android.tools.build:gradle:3.6.0'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

EasyWalletExample/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

GooglePayExample/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 31
55
buildToolsVersion "28.0.3"
66
defaultConfig {
7-
applicationId 'tech.cherri.googlepayexample'
7+
applicationId 'tech.cherri.payment.google'
88
minSdkVersion 15
9-
targetSdkVersion 28
9+
targetSdkVersion 31
1010
versionCode 15
1111
versionName "2.3.1"
1212
}
37 Bytes
Binary file not shown.

GooglePayExample/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
android:name="com.google.android.gms.wallet.api.enabled"
1818
android:value="true" />
1919

20-
<activity android:name="tech.cherri.googlepayexample.MainActivity">
20+
<activity android:name="tech.cherri.googlepayexample.MainActivity"
21+
android:exported="true">
2122
<intent-filter>
2223
<action android:name="android.intent.action.MAIN" />
2324

GooglePayExample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
google()
1111
}
1212
dependencies {
13-
classpath 'com.android.tools.build:gradle:3.0.0'
13+
classpath 'com.android.tools.build:gradle:3.6.0'
1414

1515
// NOTE: Do not place your application dependencies here; they belong
1616
// in the individual module build.gradle files

GooglePayExample/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

JkosPayExample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 31
55
buildToolsVersion "28.0.3"
66
defaultConfig {
77
applicationId 'tech.cherri.jkospayexample'
88
minSdkVersion 15
9-
targetSdkVersion 28
9+
targetSdkVersion 31
1010
versionCode 15
1111
versionName "2.3.1"
1212
}

JkosPayExample/app/libs/tpdirect.aar

37 Bytes
Binary file not shown.

JkosPayExample/app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
android:theme="@style/AppTheme">
1111
<activity
1212
android:name=".MainActivity"
13-
android:launchMode="singleTask">
13+
android:launchMode="singleTask"
14+
android:exported="true">
1415
<intent-filter>
1516
<action android:name="android.intent.action.MAIN" />
1617

@@ -41,4 +42,8 @@
4142

4243
</activity>
4344
</application>
45+
<queries>
46+
<!-- for jko pay open -->
47+
<package android:name="com.jkos.app" />
48+
</queries>
4449
</manifest>

JkosPayExample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
google()
1111
}
1212
dependencies {
13-
classpath 'com.android.tools.build:gradle:3.0.0'
13+
classpath 'com.android.tools.build:gradle:3.6.0'
1414

1515
// NOTE: Do not place your application dependencies here; they belong
1616
// in the individual module build.gradle files

JkosPayExample/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

LinePayExample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 31
55
buildToolsVersion "28.0.3"
66
defaultConfig {
77
applicationId 'tech.cherri.linepayexample'
88
minSdkVersion 15
9-
targetSdkVersion 28
9+
targetSdkVersion 31
1010
versionCode 15
1111
versionName "2.3.1"
1212
}

LinePayExample/app/libs/tpdirect.aar

37 Bytes
Binary file not shown.

LinePayExample/app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
android:supportsRtl="true"
1010
android:theme="@style/AppTheme">
1111
<activity android:name=".MainActivity"
12-
android:launchMode="singleTask">
12+
android:launchMode="singleTask"
13+
android:exported="true">
1314
<intent-filter>
1415
<action android:name="android.intent.action.MAIN" />
1516

@@ -28,4 +29,8 @@
2829
</intent-filter>
2930
</activity>
3031
</application>
32+
<queries>
33+
<!-- for line pay open -->
34+
<package android:name="jp.naver.line.android" />
35+
</queries>
3136
</manifest>

SamsungPayExample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 30
4+
compileSdkVersion 31
55
buildToolsVersion "28.0.3"
66
defaultConfig {
77
applicationId "tech.cherri.samsungpayexample"
88
minSdkVersion 15
9-
targetSdkVersion 30
9+
targetSdkVersion 31
1010
versionCode 15
1111
versionName "2.3.1"
1212
}
37 Bytes
Binary file not shown.

SamsungPayExample/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
android:name="spay_debug_api_key"
2828
android:value="c6482d4523094c25a9a0cadbaaa0b635" />
2929

30-
<activity android:name=".MainActivity">
30+
<activity android:name=".MainActivity"
31+
android:exported="true">
3132
<intent-filter>
3233
<action android:name="android.intent.action.MAIN" />
3334

0 commit comments

Comments
 (0)