Skip to content

Commit

Permalink
Merge pull request #823 from reflex-frp/dylang/android_sdk_ver
Browse files Browse the repository at this point in the history
Bump targetSdk for Android
  • Loading branch information
ali-abrar authored Aug 1, 2023
2 parents 7d24776 + 760cd72 commit a2739a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions android/AndroidManifest.xml.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ in ''
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
android:windowSoftInputMode="adjustResize"
android:exported="true"
${activityAttributes}
>
<intent-filter>
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ android {
defaultConfig {
applicationId "${applicationId}"
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 31
versionCode ${version.code}
versionName "${version.name}"
multiDexEnabled false
Expand Down
3 changes: 2 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ nixpkgsFunc ? import ./nixpkgs
, system ? builtins.currentSystem
, config ? {}
, config ? { }
, enableLibraryProfiling ? false
, enableExposeAllUnfoldings ? true
, enableTraceReflexEvents ? false
Expand Down Expand Up @@ -170,6 +170,7 @@ let iosSupport = system == "x86_64-darwin";
aarch64 = {
crossSystem = lib.systems.examples.aarch64-android-prebuilt //
{ isStatic = true; };
sdkVer = "31";
};
aarch32 = {
crossSystem = lib.systems.examples.armv7a-android-prebuilt // {
Expand Down

0 comments on commit a2739a3

Please sign in to comment.