Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit eccdb6b7 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

First try in Xposed version

parent 519e6fb4
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -8,8 +8,9 @@ repositories {

dependencies {
    compile 'com.squareup.wire:wire-runtime:1.6.1'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile ':droidguasso:@jar'
    compile ':arthook:@aar'
    provided ':XposedBridgeApi:54@jar'
    compile project(':remote-droid-guard-lib')
}

@@ -47,14 +48,6 @@ android {
            java.srcDirs += 'src/main/protos-java'
        }
    }

    productFlavors {
        "default" {
            ndk {
                abiFilters "armeabi", "armeabi-v7a", "arm64-v8a"
            }
        }
    }
}

if (file('user.gradle').exists()) {
+115 KiB

File added.

No diff preview for this file type.

+16 −4
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest package="org.microg.gms.droidguard"
          xmlns:android="http://schemas.android.com/apk/res/android">
          xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools">

    <uses-sdk
        android:minSdkVersion="19"
        android:targetSdkVersion="23"/>
        android:minSdkVersion="9"
        android:targetSdkVersion="24"
        tools:overrideLibrary="de.larma.arthook"/>

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

@@ -22,6 +24,16 @@
                <action android:name="org.microg.gms.droidguard.REMOTE"/>
            </intent-filter>
        </service>

        <meta-data
            android:name="xposedmodule"
            android:value="true"/>
        <meta-data
            android:name="xposeddescription"
            android:value="Support module for DroidGuard Helper, required when XPosed is installed"/>
        <meta-data
            android:name="xposedminversion"
            android:value="54"/>
    </application>

</manifest>
+1 −0
Original line number Diff line number Diff line
org.microg.gms.droidguard.SysHook
 No newline at end of file
+0 −1
Original line number Diff line number Diff line
@@ -114,7 +114,6 @@ public class DroidguardHelper {
    private static List<KeyValuePair> getSystemInfo(Object build) {
        Class clazz = build == null ? Build.class : build.getClass();
        return Arrays.asList(
                createSystemInfoPair("BUILD", clazz, build),
                createSystemInfoPair("BOARD", clazz, build),
                createSystemInfoPair("BOOTLOADER", clazz, build),
                createSystemInfoPair("BRAND", clazz, build),
Loading