Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Fix #580, #581 #582

Merged
merged 2 commits into from
Jul 12, 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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="56" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1" version="1.16.3" 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" xmlns:gap="http://phonegap.com/ns/1.0">
<widget android-versionCode="57" defaultlocale="en" id="org.adaptit.adaptitmobile" ios-CFBundleVersion="1" version="1.16.4" 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" xmlns:gap="http://phonegap.com/ns/1.0">
<name short="Adapt It Mobile" xml:lang="en">Adapt It Mobile</name>
<description xml:lang="en">
An open source application for translating between related languages.
Expand All @@ -22,9 +22,9 @@
<hook type="before_build" src="scripts/before-build.js" />
<plugin name="cordova-sqlite-evcore-extbuild-free" spec="^0.15.1" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.3" />
<!-- SDK 26/Android 8.x: lowest SDK that supports adaptive icons (for splash / app icon) -->
<!-- min SDK 26/Android 8.x: lowest SDK that supports adaptive icons (for splash / app icon) -->
<preference name="android-minSdkVersion" value="26" />
<preference name="android-targetSdkVersion" value="33" />
<preference name="android-targetSdkVersion" value="34" />
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="www/res/svg/ic_aim_adaptive_splash.xml" />
<preference name="AndroidWindowSplashScreenIconBackgroundColor" value="#279ED8" />
<preference name="CustomURLSchemePluginClearsAndroidIntent" value="true" />
Expand All @@ -36,6 +36,12 @@
<application android:largeHeap="true" />
</edit-config>
<config-file mode="replace" parent="/manifest" target="AndroidManifest.xml">
<!-- permissions move from READ_EXTERNAL_STORAGE to the more granular ones in API 30; unfortunately the FilePath plugin requires
all 3 new permissions before it returns the correct path to us. See issue #581. -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="29" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
<uses-feature android:name="android.hardware.faketouch" android:required="false" />
</config-file>
<config-file mode="replace" parent="./application/activity" target="AndroidManifest.xml">
Expand Down
Binary file modified docs/aim_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adapt-it-mobile",
"version": "1.16.3",
"version": "1.16.4",
"description": "Adapt It Mobile",
"repository": {
"type": "git",
Expand All @@ -17,7 +17,7 @@
"adaptation"
],
"devDependencies": {
"cordova-android": "^12.0.1",
"cordova-android": "^13.0.0",
"cordova-clipboard": "github:ihadeed/cordova-clipboard",
"cordova-ios": "^7.1.0",
"cordova-plugin-add-swift-support": "^2.0.2",
Expand Down Expand Up @@ -91,8 +91,8 @@
"cordova-plugin-save-dialog": {}
},
"platforms": [
"android",
"ios"
"ios",
"android"
]
}
}
4 changes: 2 additions & 2 deletions www/js/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ define(function (require) {
searchIndex: 0,
currentProject: null,
localURLs: [],
version: "1.16.3", // appended with Android / iOS build info
AndroidBuild: "56", // (was milestone release #)
version: "1.16.4", // appended with Android / iOS build info
AndroidBuild: "57", // (was milestone release #)
iOSBuild: "1", // iOS uploaded build number for this release (increments from 1 for each release)
importingURL: "", // for other apps in Android-land sending us files to import

Expand Down
Loading