Aucune description

Young a046b7354c First commit il y a 4 ans
hooks a046b7354c First commit il y a 4 ans
plugins a046b7354c First commit il y a 4 ans
www a046b7354c First commit il y a 4 ans
.gitignore a046b7354c First commit il y a 4 ans
README.md a046b7354c First commit il y a 4 ans
config.xml a046b7354c First commit il y a 4 ans
package-lock.json a046b7354c First commit il y a 4 ans
package.json a046b7354c First commit il y a 4 ans

README.md

Script

Copy plugins/cordova-plugin-semsx-launcher to root project ./plugins

Step

cordova platform remove android
cordova platform add android
replace AndroidManifest
cordova run android

Replace AndroidManifest

            <intent-filter android:label="@string/launcher_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

Chang to

            <intent-filter android:label="home">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.HOME" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>