IONIC3 - Solve cordova build android issue (unable to find attribute android:fontVariationSettings and android:ttcIndex)

From GUILLARD WIKI
Revision as of 11:26, 18 April 2018 by Guillard (talk | contribs) (Created page with "1) Install cordova-android-support-gradle-release pluggin <syntaxhighlight lang="javascript"> cordova plugin add cordova-android-support-gradle-release --fetch </syntaxhighli...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

1) Install cordova-android-support-gradle-release pluggin

cordova plugin add cordova-android-support-gradle-release --fetch

2) Refresh platform files

cordova platform rm android
cordova platform add android

3) Add these lines at the end of the file ./platforms/android/build.gradle

configurations.all {
    resolutionStrategy.force 'com.android.support:support-v4:27.1.0'
}