diff --git a/AerofoilAndroid/app/build.gradle b/AerofoilAndroid/app/build.gradle index 1753aec..35e72eb 100644 --- a/AerofoilAndroid/app/build.gradle +++ b/AerofoilAndroid/app/build.gradle @@ -8,15 +8,15 @@ else { } android { - compileSdkVersion 33 + compileSdkVersion 34 defaultConfig { if (buildAsApplication) { applicationId "org.thecodedeposit.aerofoil" } minSdkVersion 16 - targetSdkVersion 33 - versionCode 18 - versionName "1.1.4" + targetSdkVersion 34 + versionCode 19 + versionName "1.1.5" externalNativeBuild { ndkBuild { arguments "APP_PLATFORM=android-16" @@ -33,6 +33,7 @@ android { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + signingConfig signingConfigs.debug } } if (!project.hasProperty('EXCLUDE_NATIVE_LIBS')) { diff --git a/AerofoilAndroid/app/src/main/java/org/thecodedeposit/aerofoil/GpActivity.java b/AerofoilAndroid/app/src/main/java/org/thecodedeposit/aerofoil/GpActivity.java index 38800a7..5d7b381 100644 --- a/AerofoilAndroid/app/src/main/java/org/thecodedeposit/aerofoil/GpActivity.java +++ b/AerofoilAndroid/app/src/main/java/org/thecodedeposit/aerofoil/GpActivity.java @@ -58,11 +58,6 @@ public class GpActivity extends SDLActivity ParcelFileDescriptor fd = contentResolver.openFileDescriptor(uri, "w"); GpFileSystemAPI.nativePostSourceExportRequest(false, fd.getFd(), fd); } - catch (FileNotFoundException e) - { - GpFileSystemAPI.nativePostSourceExportRequest(true, 0, null); - return; - } catch (IOException e) { GpFileSystemAPI.nativePostSourceExportRequest(true, 0, null); diff --git a/GpCommon/GpBuildVersion.h b/GpCommon/GpBuildVersion.h index d95c5e0..6cbfb59 100644 --- a/GpCommon/GpBuildVersion.h +++ b/GpCommon/GpBuildVersion.h @@ -2,8 +2,8 @@ #define GP_BUILD_VERSION_MAJOR 1 #define GP_BUILD_VERSION_MINOR 1 -#define GP_BUILD_VERSION_UPDATE 4 +#define GP_BUILD_VERSION_UPDATE 5 -#define GP_APPLICATION_VERSION_STRING "1.1.4" -#define GP_APPLICATION_COPYRIGHT_STRING "2019-2023 Eric Lasota" +#define GP_APPLICATION_VERSION_STRING "1.1.5" +#define GP_APPLICATION_COPYRIGHT_STRING "2019-2024 Eric Lasota" #define GP_APPLICATION_WEBSITE_STRING "https://github.com/elasota/Aerofoil"