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

Commit 6ea76953 authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

Fixes on exit country.

parent 2021fbbe
Loading
Loading
Loading
Loading
Loading
+61 B (27.9 KiB)

File changed and moved.

No diff preview for this file type.

+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  <modelVersion>4.0.0</modelVersion>
  <groupId>foundation.e</groupId>
  <artifactId>privacymodule.tor</artifactId>
  <version>0.0.5</version>
  <version>0.1.0</version>
  <packaging>aar</packaging>
  <dependencies>
    <dependency>
+4 −4
Original line number Diff line number Diff line
@@ -3,11 +3,11 @@
  <groupId>foundation.e</groupId>
  <artifactId>privacymodule.tor</artifactId>
  <versioning>
    <latest>0.0.5</latest>
    <release>0.0.5</release>
    <latest>0.1.0</latest>
    <release>0.1.0</release>
    <versions>
      <version>0.0.5</version>
      <version>0.1.0</version>
    </versions>
    <lastUpdated>20210830100900</lastUpdated>
    <lastUpdated>20210830142258</lastUpdated>
  </versioning>
</metadata>
+2 −2
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@ android {
    defaultConfig {
        minSdkVersion 24
        targetSdkVersion 30
        versionCode 5
        versionName "0.0.5"
        versionCode 7
        versionName "0.1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        consumerProguardFiles "consumer-rules.pro"
+3 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@
package foundation.e.privacymodules.ipscramblermodule

import android.content.Intent
import foundation.e.privacymodules.ipscrambler.IpScramblerModule

interface IIpScramblerModule {
    fun prepareAndroidVpn(): Intent?
@@ -31,6 +32,8 @@ interface IIpScramblerModule {
    var appList: Set<String>

    var exitCountry: String
    fun getAvailablesLocations(): Set<String>


    val httpProxyPort: Int
    val socksProxyPort: Int
Loading