diff --git a/README.md b/README.md index 6741b29ab..f34faff51 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Linux | Get it on Google Play | or download the APK file: [64-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.333/joplin-v1.0.333.apk) [32-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.333/joplin-v1.0.333-32bit.apk) +Android | Get it on Google Play | or download the APK file: [64-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.335/joplin-v1.0.335.apk) [32-bit](https://github.com/laurent22/joplin-android/releases/download/android-v1.0.335/joplin-v1.0.335-32bit.apk) iOS | Get it on the App Store | - ## Terminal application diff --git a/ReactNativeClient/android/app/build.gradle b/ReactNativeClient/android/app/build.gradle index 9033ba64c..e32827b1e 100644 --- a/ReactNativeClient/android/app/build.gradle +++ b/ReactNativeClient/android/app/build.gradle @@ -110,6 +110,8 @@ def enableHermes = project.ext.react.get("enableHermes", false); android { compileSdkVersion rootProject.ext.compileSdkVersion + + dexOptions { javaMaxHeapSize "4g" } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -120,8 +122,8 @@ android { applicationId "net.cozic.joplin" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 2097569 - versionName "1.0.333" + versionCode 2097571 + versionName "1.0.335" ndk { abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } diff --git a/ReactNativeClient/android/gradle.properties b/ReactNativeClient/android/gradle.properties index 1a5d0b9d7..adafe1ce0 100644 --- a/ReactNativeClient/android/gradle.properties +++ b/ReactNativeClient/android/gradle.properties @@ -20,4 +20,5 @@ # Required for react-native-webview # https://github.com/react-native-community/react-native-webview/blob/master/docs/Getting-Started.md android.useAndroidX=true -android.enableJetifier=true \ No newline at end of file +android.enableJetifier=true +org.gradle.jvmargs=-Xmx4608m \ No newline at end of file