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

Commit 4ee554c3 authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

tech:2995: Add APDebugTools module on debug build

parent 007737e5
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
/build
 No newline at end of file
+38 −0
Original line number Diff line number Diff line
plugins {
    alias(libs.plugins.android.library)
    alias(libs.plugins.kotlin.android)
}

android {
    namespace 'foundation.e.advancedprivacy.debugtools'

    compileSdkVersion buildConfig.compileSdk

    defaultConfig {
        minSdkVersion buildConfig.minSdk
        targetSdkVersion buildConfig.targetSdk
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_17
        targetCompatibility JavaVersion.VERSION_17
    }

    flavorDimensions 'os'
    productFlavors {
        eos { dimension 'os' }
        standalone { dimension 'os' }
    }

    buildFeatures {
        viewBinding true
    }
}

dependencies {
    implementation project(path: ":advancedprivacy")

    implementation libs.androidx.core.ktx
    implementation libs.androidx.appcompat
    implementation libs.google.material
}
 No newline at end of file
+0 −0

Empty file added.

+21 −0
Original line number Diff line number Diff line
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
 No newline at end of file
+16 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
    <activity
        android:name="foundation.e.advancedprivacy.debugtools.AdvancedPrivacyDebugActivity"
        android:exported="true"
        android:label="@string/debug_activity_name"
        >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>

</application>
</manifest>
 No newline at end of file
Loading