简体   繁体   中英

Can't generate build after implementing facebook sdk due to paytm allinOne sdk

<uses-sdk android:minSdkVersion="18" />

This is my android sdk minimum version I installed both facebook and paytm sdk in my app. While generating the build, I'm getting error code 1.

This is the error I'm getting while generating build

If I generate build with faceboook sdk alone, i can generate the build.if both facebook and allinone paytm sdk exist, error occurs. Is there any way to generate build without removing allinOne sdk??

You need to change the minSdkVersion in app/build.gradle

   android {
        defaultConfig {
            applicationId "com.example.merchantapp"
            minSdkVersion 18
            compileSdkVersion 30
            targetSdkVersion 30
            buildToolsVersion '29.0.3'
        }

}

The one mentioned by you is not the correct way

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM