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

Commit 352502f4 authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

Add notification param, and move appList to a bypass tor list.

parent bb802ec1
Loading
Loading
Loading
Loading
Loading
+206 −674

File changed.

Preview size limit exceeded, changes collapsed.

+5 −2
Original line number Diff line number Diff line
@@ -4,6 +4,9 @@ This Module (aar) implements IpScramblerModule functionnalities with Tor, reliyi



# Functionalities
# Functionalities

## v0.0.1
## v0.2.0

* appList is now a bypass tor app list.
* add a parameter enableNotification on start tor, which hide service notification (set to false).
+4 −26
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@
apply plugin: 'maven-publish'

buildscript {
    ext.kotlin_version = "1.4.10"
    ext.kotlin_version = "1.6.0"
    repositories {
        google()
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.0"
        classpath 'com.android.tools.build:gradle:7.0.4'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
@@ -23,7 +23,7 @@ configure(project(':orbotservice')) {
                groupId 'foundation.e'
                //You can either define these here or get them from project conf elsewhere
                artifactId 'orbotservice'
                version '16.4.1'
                version '0.2.0-orbot.16.4.1'
                artifact "$buildDir/outputs/aar/orbotservice-release.aar" //aar artifact you want to publish

                //generate pom nodes for dependencies
@@ -56,25 +56,3 @@ configure(project(':orbotservice')) {
        }
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
        maven { url 'https://jitpack.io' }

        mavenLocal()
        maven {
            url "https://gitlab.e.foundation/api/v4/groups/13662/-/packages/maven"
            name "GitLab"
            credentials(HttpHeaderCredentials) {
                name = 'Private-Token'
                value = gitLabPrivateToken
            }
            authentication {
                header(HttpHeaderAuthentication)
            }
        }
    }
}
+1 −2
Original line number Diff line number Diff line
@@ -53,7 +53,6 @@ dependencies {
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.0'

    //implementation 'foundation.e:privacymodule.tor:0.0.1'
    //implementation 'foundation.e:privacymodule.tor:0.2.0'
    implementation project(':privacymoduletor')
//    implementation project(':orbotservice')
}
+1 −1
Original line number Diff line number Diff line
#Tue Aug 24 16:38:23 CEST 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Loading