Skip to content

Commit

Permalink
Merge pull request #8 from ConnectedHomes/fix/CNTBG-111/android-33-ch…
Browse files Browse the repository at this point in the history
…anges

Fixed the Build Gradle for upgrading the Android SDK
  • Loading branch information
rajarab2 authored Oct 7, 2023
2 parents 093a189 + 59f2581 commit 4d3cdd5
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 8 deletions.
Binary file added android/.gradle/7.4.2/checksums/checksums.lock
Binary file not shown.
Binary file not shown.
Empty file.
Binary file added android/.gradle/7.4.2/fileChanges/last-build.bin
Binary file not shown.
Binary file added android/.gradle/7.4.2/fileHashes/fileHashes.lock
Binary file not shown.
Empty file.
Binary file not shown.
2 changes: 2 additions & 0 deletions android/.gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Fri Sep 29 12:51:28 BST 2023
gradle.version=7.4.2
Empty file.
9 changes: 5 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ android {
}

dependencies {
compile 'com.facebook.react:react-native:+'
compile 'com.google.android.gms:play-services-wallet:11.4.2'
compile 'com.android.support:support-v4:24.1.1'
compile 'com.android.support:appcompat-v7:24.1.1'
implementation 'com.facebook.react:react-native:+'
implementation 'com.google.android.gms:play-services-wallet:11.4.2'
implementation 'com.android.support:support-v4:24.1.1'
implementation 'com.android.support:appcompat-v7:24.1.1'
implementation "androidx.annotation:annotation:1.1.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.NonNull;
import android.app.Fragment;
import android.app.FragmentManager;
import android.support.annotation.RequiresPermission;
import androidx.annotation.RequiresPermission;
import android.util.Log;

import com.facebook.react.bridge.Callback;
Expand Down
2 changes: 2 additions & 0 deletions examples/native/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@
# org.gradle.parallel=true

android.useDeprecatedNdk=true
android.useAndroidX=true
android.enableJetifier=true
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"run:ios": "cd examples/native && yarn run:ios",
"run:web": "cd examples/web && yarn run:web",
"run:demo": "cd examples/native && yarn run:demo",
"test": "jest"
"test": "jest",
"postinstall": "jetify"
},
"repository": "https://github.com/naoufal/react-native-payments",
"keywords": [
Expand Down

0 comments on commit 4d3cdd5

Please sign in to comment.