Skip to content

Commit

Permalink
Updated libbios.so for arm-v7a and arm-v8 to be Windows 11 ARM compat…
Browse files Browse the repository at this point in the history
…ible
  • Loading branch information
robertapengelly committed Nov 12, 2024
1 parent 3d4f582 commit fdf8610
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 274 deletions.
4 changes: 2 additions & 2 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

263 changes: 0 additions & 263 deletions .idea/other.xml

This file was deleted.

17 changes: 17 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
applicationId "com.cod5.pdos_pdandro"
minSdk 16
targetSdk 34
versionCode 17
versionCode 18
versionName "1.0.1"
ndk.abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
}
Expand Down
17 changes: 9 additions & 8 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<!-- Without this folders will be inaccessible in Android-11 and above devices -->
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage" />

<!-- tools:ignore="ScopedStorage" Without this entry storage-permission entry will not be visible under app-info permissions list Android-10 and below -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity
android:exported="true"
android:name=".MainActivity"
android:screenOrientation="landscape"
android:windowSoftInputMode="stateHidden">

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>

</application>

</manifest>
Binary file modified app/src/main/jniLibs/arm64-v8a/libbios.so
Binary file not shown.
Binary file added app/src/main/jniLibs/arm64-v8a/libbios_old.so
Binary file not shown.
Binary file modified app/src/main/jniLibs/armeabi-v7a/libbios.so
Binary file not shown.
Binary file added app/src/main/jniLibs/armeabi-v7a/libbios_old.so
Binary file not shown.
2 changes: 2 additions & 0 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:contentDescription="@null"
android:focusable="false"
android:focusableInTouchMode="false"
android:id="@+id/imageview"
android:layout_height="match_parent"
android:layout_width="match_parent"
Expand Down

0 comments on commit fdf8610

Please sign in to comment.