2

default config for android manifest is:

<application android:debuggable="true" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">

I want to add android:name="com.baidu.frontia.FrontiaApplication" tag

<application android:debuggable="true" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:name="com.baidu.frontia.FrontiaApplication">

how to wrote plugin.xml for cordova plugin?

kingnight
  • 720
  • 6
  • 10

1 Answers1

0

just add this

<feature name="FrontiaApplication">
        <param name="android-package" value="com.baidu.frontia.FrontiaApplication" />
    </feature> 
Kathir
  • 4,359
  • 3
  • 17
  • 29