React-native-push-notification: com.android.ide.common.process.ProcessException: Failed to execute aapt

Created on 16 Jul 2018  路  2Comments  路  Source: zo0r/react-native-push-notification

Most helpful comment

i resole it by add flowing android/build.gradle

// fix notification
subprojects { 
     afterEvaluate { 
         project -> if (project.hasProperty("android")) { 
             android { 
                 compileSdkVersion 26 
                buildToolsVersion '26.0.2' 
            } 
        } 
    } 
}

All 2 comments

i resole it by add flowing android/build.gradle

// fix notification
subprojects { 
     afterEvaluate { 
         project -> if (project.hasProperty("android")) { 
             android { 
                 compileSdkVersion 26 
                buildToolsVersion '26.0.2' 
            } 
        } 
    } 
}

this worked for me

Was this page helpful?
0 / 5 - 0 ratings