Hello guys,
i have the Problem that my CodePush doesnt seems to work.
I tried to get any Error Output with ADB but there is nothing.
What do I have at the moment:
Config.xml:
Im using the Production Key not the Staging Key!
<access origin="https://codepush.azurewebsites.net" />
<access origin="https://codepush.blob.core.windows.net" />
<access origin="https://codepushupdates.azureedge.net" />
<platform name="android">
<preference name="CodePushDeploymentKey" value="3kXJ5asdfasdfasdfsG"/>
</platform>
<platform name="ios">
<preference name="CodePushDeploymentKey" value="_X5Zasdfasdfadfasdfasdf"/>
</platform>
app.component.ts:
import { CodePush } from 'ionic2-code-push';
@Component({
templateUrl: 'app.html',
providers:[CodePush]
})
initializeApp(){
this.platform.ready().then(() => {
//Code Push
CodePush.sync(syncStatus, null, downloadProgress);
function syncStatus(status) {
switch (status) {
case SyncStatus.DOWNLOADING_PACKAGE:
break;
case SyncStatus.INSTALLING_UPDATE:
break;
}
}
...........
Yes i have the code-push Plugin installed.
Also every time I upload new Version of my App i increase my Project Version number and be sure that i upload it to the Production channel of Code Push.
Do you face any Problems here?
EDIT:
With Chrome inspect I got the following Error Output:
Opened Issue Ticket on Github: