web-dev-qa-db-ja.com

Ionicエラー:<declare-styleable> FontFamilyFontで、属性Android:fontVariationSettingsが見つかりません

走るとき

イオンコルドバビルドAndroid --prod

以下のエラーが表示されます。

    ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute Android:fontVariationSettings
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute Android:ttcIndex

    FAILED

    FAILURE: Build failed with an exception.

    * What went wrong:
    Execution failed for task ':processDebugResources'.
    > com.Android.ide

.common.process.ProcessException: Failed to execute aapt

* Try:

Run with 
--stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED


Total time: 9.11 secs

Error: /Users/cqismgis/Desktop/MobileGIS/platforms/Android/gradlew: Command failed with exit code 1 Error output:
注: 某些输入文件使用或覆盖了已过时的 API。
注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
注: 某些输入文件使用或覆盖了已过时的 API。
注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute Android:fontVariationSettings
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute Android:ttcIndex


FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':processDebugResources'.
> com.Android.ide.common.process.ProcessException: Failed to execute aapt

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

androidStudioでは、「ビルド」ボタンをクリックすると、次のように表示されます:

    Error:In <declare-styleable> FontFamilyFont, unable to find attribute Android:fontVariationSettings
    Error:Execution failed for task ':processDebugResources'.
> com.Android.ide.common.process.ProcessException: Failed to execute aapt

修正方法がわかりません。修正手順の詳細を教えてください。

25
Ivan.Yang

それを解決するには:

you_app_folder/pluginおよびすべてのプラグインでplugin.xmlを探します

プラグインフォルダーに移動し、そのディレクトリで以下を検索します。

com.Android.support:support-v4:+

そして

com.Android.support:support-v4:24.1.1+

以下で変更します:

com.Android.support:support-v4:27.1.0

それから

また、私は実行しました

ionic cordova platform remove Android 

そして

ionic cordova platform add Android
33
M0ns1f