설명 없음

Young a046b7354c First commit 4 년 전
hooks a046b7354c First commit 4 년 전
plugins a046b7354c First commit 4 년 전
www a046b7354c First commit 4 년 전
.gitignore a046b7354c First commit 4 년 전
README.md a046b7354c First commit 4 년 전
config.xml a046b7354c First commit 4 년 전
package-lock.json a046b7354c First commit 4 년 전
package.json a046b7354c First commit 4 년 전

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>