Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #50 from vikulin/master
Browse files Browse the repository at this point in the history
Yggdrasil upgrade (0.3.16), vikulin#5 issue fix
  • Loading branch information
vikulin authored Mar 21, 2021
2 parents 7ed17e7 + 1595d4b commit 12a47d2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ The application for connecting to Yggdrasil network on Android.

Once connected, you can access yggdrasil public services, as the application has peered automatically to default peers within the application.

<img src="https://user-images.githubusercontent.com/8705683/87849784-62048a80-c8fc-11ea-8eb0-908e69d7595e.png" alt="" height="500" width="">
<img src="https://user-images.githubusercontent.com/8705683/87849784-62048a80-c8fc-11ea-8eb0-908e69d7595e.png" alt="" height="500" width="">

New builds and updates here:
https://t.me/yggdrasil_android
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 30
compileSdkVersion 29
defaultConfig {
applicationId "io.github.chronosx88.yggdrasil"
minSdkVersion 15
targetSdkVersion 30
versionCode 16
versionName "1.6"
targetSdkVersion 29
versionCode 18
versionName "1.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
setProperty("archivesBaseName", project.getParent().name+"-"+versionName)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class YggdrasilTunService : VpnService() {
val blackList = arrayListOf<String>()
blackList.add("")
config["Peers"] = convertPeerInfoSet2PeerIdSet(peers)
config["Listen"] = ""
config["Listen"] = arrayListOf<String>()
config["AdminListen"] = "tcp://localhost:9001"
config["IfName"] = "tun0"
if(staticIP) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit 12a47d2

Please sign in to comment.