From 748049219114e7e2ef93db32aa9393d35cd3f19f Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Wed, 2 Oct 2019 14:21:59 +0530 Subject: [PATCH] Updated gradle file to support newer versions of RN --- android/build.gradle | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index fcdae7a..1d2201c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -12,8 +12,8 @@ buildscript { apply plugin: 'com.android.library' android { - compileSdkVersion 23 - buildToolsVersion "23.0.1" + buildToolsVersion = "28.0.2" + compileSdkVersion = 28 defaultConfig { minSdkVersion 16 @@ -31,6 +31,7 @@ android { dependencies { compile 'com.facebook.react:react-native:+' - compile files('libs/PGSDK_V2.1.jar') + compile('com.paytm:pgplussdk:1.3.3') { + transitive = true; + } } -