Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonycr committed Oct 31, 2016
2 parents e419789 + 99d7fe8 commit e43f781
Show file tree
Hide file tree
Showing 211 changed files with 4,039 additions and 3,041 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
path = external/netcipher
url = https://github.com/guardianproject/NetCipher.git
branch = master
[submodule "Bonsai"]
path = Bonsai
url = https://github.com/anthonycr/Bonsai.git
[submodule "AnimatedProgressBar"]
path = AnimatedProgressBar
url = https://github.com/anthonycr/AnimatedProgressBar.git
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
language: android
sudo: false
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-24.0.3
- build-tools-23.0.3
- build-tools-22.0.1
- android-24
- android-23
- android-22
- extra-android-support
Expand Down
1 change: 1 addition & 0 deletions AnimatedProgressBar
Submodule AnimatedProgressBar added at 2d7f75
1 change: 1 addition & 0 deletions Bonsai
Submodule Bonsai added at 53608c
42 changes: 21 additions & 21 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,14 @@ apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'com.getkeepsafe.dexcount'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 24
buildToolsVersion "24.0.3"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionName "4.3.3"
generatedDensities = []
}

aaptOptions {
additionalParameters "--no-version-vectors"
targetSdkVersion 24
versionName "4.4.0"
vectorDrawables.useSupportLibrary = true
}

sourceSets {
Expand All @@ -40,13 +36,13 @@ android {
lightningPlus {
buildConfigField "boolean", "FULL_VERSION", "true"
applicationId "acr.browser.lightning"
versionCode 88
versionCode 89
}

lightningLite {
buildConfigField "boolean", "FULL_VERSION", "false"
applicationId "acr.browser.barebones"
versionCode 90
versionCode 91
}
}

Expand All @@ -70,21 +66,22 @@ dexcount {
dependencies {

// support libraries
compile 'com.android.support:palette-v7:23.3.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:support-v4:23.3.0'
compile 'com.android.support:palette-v7:24.2.1'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:support-v4:24.2.1'

// html parsing fo reading mode
compile 'org.jsoup:jsoup:1.9.1'
// html parsing for reading mode
compile 'org.jsoup:jsoup:1.9.2'

// event bus
compile 'com.squareup:otto:1.3.8'

// dependency injection
compile 'com.google.dagger:dagger:2.0.2'
apt 'com.google.dagger:dagger-compiler:2.0.2'
provided 'javax.annotation:jsr250-api:1.0'

// view binding
compile 'com.jakewharton:butterknife:7.0.1'
Expand All @@ -100,8 +97,11 @@ dependencies {
// git submodule update --remote
compile project(':libnetcipher')

compile project(':bonsai')

compile project(':animated-progress-bar')

// memory leak analysis
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta2'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
provided 'javax.annotation:jsr250-api:1.0'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4'
}
Loading

0 comments on commit e43f781

Please sign in to comment.