Skip to content

Commit

Permalink
Missing file added
Browse files Browse the repository at this point in the history
build.gradle file was not included as part of 0.4.4  check-in. Including it now.


Former-commit-id: 6a1b4de
  • Loading branch information
hussainmohd-a committed Sep 7, 2020
1 parent 5522d2f commit 321d1b4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {
vectorDrawables.useSupportLibrary = true
minSdkVersion 26
targetSdkVersion 29
versionCode 6
versionName "0.4.2"
versionCode 8
versionName "0.4.4"
/* splits {
abi {
enable true
Expand Down Expand Up @@ -67,6 +67,8 @@ android {
dependencies {

def room_version = "2.2.3"
def paging_version = "2.1.2"

implementation fileTree(include: [
'guava-28.2-android.jar',
'failureaccess-1.0.1.jar' // Dependency of Guava
Expand Down Expand Up @@ -100,6 +102,11 @@ dependencies {
// https://mvnrepository.com/artifact/org.jsoup/jsoup
implementation group: 'org.jsoup', name: 'jsoup', version: '1.8.3'

//For paging - connection tracker
//implementation "androidx.paging:paging-runtime:$paging_version"
implementation "androidx.paging:paging-runtime-ktx:$paging_version"
implementation "androidx.fragment:fragment-ktx:1.2.2"

// For go-tun2socks
implementation project(":tun2socks")
}

0 comments on commit 321d1b4

Please sign in to comment.