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; + } } -