This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed bulk of redundant code and resources
- Loading branch information
1 parent
1f27e2b
commit b7415a7
Showing
422 changed files
with
33,996 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/libraries | ||
/.idea/modules.xml | ||
/.idea/workspace.xml | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
|
||
.idea/ | ||
|
||
app/src/test/ | ||
|
||
app/src/androidTest/ | ||
|
||
app/langAll/ | ||
|
||
app/release/ | ||
|
||
app/liveBuild/ | ||
|
||
app/src/langTurkish/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion rootProject.compileSdkVersion | ||
flavorDimensions "languageVariants" | ||
defaultConfig { | ||
applicationId "co.sentinel.sentinellite" | ||
minSdkVersion rootProject.minSdkVersion | ||
targetSdkVersion rootProject.sdkVersion | ||
versionCode 13 | ||
versionName '0.0.5' | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
// Enable Vector drawable | ||
vectorDrawables.useSupportLibrary = true | ||
// Enabling multidex support. | ||
multiDexEnabled true | ||
// Enable ndk abi filters | ||
ndk { | ||
abiFilters "armeabi-v7a", "arm64-v8a", "x86_64", "x86" | ||
} | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
useProguard false | ||
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
productFlavors { | ||
liveBuild {} | ||
} | ||
compileOptions { | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
sourceSets { | ||
main { | ||
assets.srcDirs = ['src/main/ovpnlibs/assets'] | ||
jniLibs.srcDirs = ['src/main/ovpnlibs/jniLibs'] | ||
jni.srcDirs = [] //disable automatic ndk-build } | ||
} | ||
} | ||
lintOptions { | ||
checkReleaseBuilds false // Add this | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
// Android Support Libs | ||
implementation "com.android.support:appcompat-v7:$supportLibVersion" | ||
implementation 'com.android.support.constraint:constraint-layout:1.1.3' | ||
implementation "com.android.support:design:$supportLibVersion" | ||
implementation "com.android.support:cardview-v7:$supportLibVersion" | ||
implementation "com.android.support:support-v4:$supportLibVersion" | ||
// Android Arch Components - ViewModel, LiveData & Room | ||
implementation 'android.arch.lifecycle:extensions:1.1.1' | ||
implementation 'android.arch.persistence.room:runtime:1.1.1' | ||
implementation 'com.android.support:support-v4:28.0.0' | ||
annotationProcessor "android.arch.lifecycle:compiler:1.1.1" | ||
annotationProcessor "android.arch.persistence.room:compiler:1.1.1" | ||
// Google Play Services Lib | ||
implementation 'com.google.android.gms:play-services-base:16.1.0' | ||
// Retrofit | ||
implementation 'com.squareup.retrofit2:retrofit:2.5.0' | ||
implementation 'com.squareup.retrofit2:converter-gson:2.5.0' | ||
implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.11.0' | ||
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.0' | ||
// GSON | ||
implementation 'com.google.code.gson:gson:2.8.5' | ||
// LoadingView | ||
implementation 'com.wang.avi:library:2.1.3' | ||
// FlagView | ||
implementation 'com.github.KaKaVip:Android-Flag-Kit:v0.1' | ||
//dots indicator | ||
implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:3.0.3' | ||
// ViewPagerIndicator | ||
implementation('com.tbuonomo.andrui:viewpagerdotsindicator:2.0.3') { | ||
exclude group: 'com.android.support', module: 'support-dynamic-animation' | ||
} | ||
// Amplitude Analytics | ||
implementation 'com.amplitude:android-sdk:2.21.0' | ||
|
||
// Android Test Libs | ||
implementation 'junit:junit:4.12' | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.2' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' | ||
} |
Oops, something went wrong.