Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Feature/ios #2

Merged
merged 7 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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.2" 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.

6 changes: 4 additions & 2 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.2",
"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 Down
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"
}
}
4 changes: 2 additions & 2 deletions cordova/platforms/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ ext {
}

// PLUGIN GRADLE EXTENSIONS START
apply from: "../cordova-plugin-buildinfo/tappyplane-BuildInfo.gradle"
apply from: "../cordova-plugin-browsertab/tappyplane-BrowserTab.gradle"
apply from: "../cordova-plugin-buildinfo/flyingplane-BuildInfo.gradle"
apply from: "../cordova-plugin-browsertab/flyingplane-BrowserTab.gradle"
// PLUGIN GRADLE EXTENSIONS END

def hasBuildExtras1 = file('build-extras.gradle').exists()
Expand Down
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="10102" android:versionName="1.1.2" 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.

Loading