Skip to content

Commit

Permalink
Fix: IAP on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldanielecki committed Jan 13, 2024
1 parent adf3d95 commit 751f22a
Show file tree
Hide file tree
Showing 57 changed files with 262 additions and 46,535 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,10 @@ node_modules
dist
.DS_Store
cordova/platforms/android/app/release/
cordova/www
cordova/platforms/www
cordova/platforms/android/app/src/main/assets
cordova/platforms/ios/FlyingPlane.xcarchive/Products/Applications/FlyingPlane.app/www
cordova/platforms/ios/FlyingPlane/Plugins
cordova/platforms/ios/www
cordova/plugins
2 changes: 1 addition & 1 deletion cordova/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.doyban.flyingplane" version="1.1.3" xmlns="http://www.w3.org/ns/widgets"
<widget id="com.doyban.flyingplane" version="1.2.2" xmlns="http://www.w3.org/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>FlyingPlane</name>
Expand Down
25 changes: 23 additions & 2 deletions cordova/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions cordova/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.doyban.flyingplane",
"displayName": "FlyingPlane",
"version": "1.1.3",
"version": "1.2.2",
"description": "Tap Plane Game",
"main": "index.js",
"scripts": {
Expand All @@ -12,6 +12,7 @@
],
"author": "Doyban",
"devDependencies": {
"@ahovakimyan/cordova-plugin-wkwebviewxhrfix": "^1.0.2",
"admob-plus-cordova": "^1.28.0",
"cordova-android": "^12.0.0",
"cordova-ios": "^6.3.0",
Expand Down Expand Up @@ -63,7 +64,8 @@
"PLAY_SERVICES_VERSION": "20.6.0",
"USAGE": "This identifier will be used to deliver personalized ads to you.",
"DISABLESDKCRASHREPORTING": "false"
}
},
"@ahovakimyan/cordova-plugin-wkwebviewxhrfix": {}
}
},
"dependencies": {
Expand All @@ -75,4 +77,4 @@
"cordova-plugin-inappbrowser": "5.0.0",
"cordova-universal-links-plugin-fix": "1.2.1"
}
}
}
6 changes: 5 additions & 1 deletion cordova/platforms/android/android.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@
"APP_ID_ANDROID": "ca-app-pub-4865595196880143~4169283752",
"PLAY_SERVICES_VERSION": "20.6.0",
"PACKAGE_NAME": "com.doyban.flyingplane"
},
"@ahovakimyan/cordova-plugin-wkwebviewxhrfix": {
"PACKAGE_NAME": "com.doyban.flyingplane"
}
},
"dependent_plugins": {},
Expand Down Expand Up @@ -317,6 +320,7 @@
"cordova-plugin-customurlscheme": "5.0.2",
"cordova-plugin-browsertab": "0.2.0",
"cordova-universal-links-plugin": "1.2.1",
"admob-plus-cordova": "1.28.0"
"admob-plus-cordova": "1.28.0",
"@ahovakimyan/cordova-plugin-wkwebviewxhrfix": "1.0.2"
}
}
2 changes: 1 addition & 1 deletion cordova/platforms/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="10103" android:versionName="1.1.3" xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:hardwareAccelerated="true" android:versionCode="10202" android:versionName="1.2.2" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.android.vending.BILLING" />
Expand Down

This file was deleted.

0 comments on commit 751f22a

Please sign in to comment.