-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from Reline/development
Version 1.0.1
- Loading branch information
Showing
50 changed files
with
362 additions
and
135 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 |
---|---|---|
|
@@ -4,5 +4,4 @@ local.properties | |
.idea | ||
build | ||
*.jks | ||
*.keystore | ||
keystore.properties | ||
projectFilesBackup* |
This file was deleted.
Oops, something went wrong.
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,67 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
signingConfigs { | ||
release { | ||
keyAlias 'android' | ||
keyPassword 'android' | ||
storeFile file('jisho.jks') | ||
storePassword 'android' | ||
} | ||
} | ||
|
||
compileSdkVersion 25 | ||
buildToolsVersion "25.0.2" | ||
|
||
defaultConfig { | ||
applicationId "com.github.reline.jisho" | ||
minSdkVersion 19 | ||
targetSdkVersion 25 | ||
versionCode 2 | ||
versionName "1.0.1" | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
signingConfig signingConfigs.release | ||
} | ||
debug { | ||
applicationIdSuffix = ".debug" | ||
} | ||
} | ||
lintOptions { | ||
abortOnError false | ||
} | ||
} | ||
|
||
configurations { | ||
compile.exclude group: 'stax' | ||
compile.exclude group: 'xpp3' | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
testCompile 'junit:junit:4.12' | ||
|
||
compile 'com.android.support:appcompat-v7:25.2.0' | ||
compile 'com.android.support:cardview-v7:25.2.0' | ||
compile 'com.android.support:recyclerview-v7:25.2.0' | ||
compile 'com.android.support:design:25.2.0' | ||
|
||
compile 'com.bluelinelabs:conductor:2.1.1' | ||
|
||
compile 'com.squareup.retrofit2:retrofit:2.2.0' | ||
compile 'com.squareup.okhttp3:logging-interceptor:3.6.0' | ||
compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0' | ||
compile 'com.squareup.retrofit2:converter-moshi:2.2.0' | ||
|
||
compile 'io.reactivex.rxjava2:rxjava:2.0.6' | ||
compile 'io.reactivex.rxjava2:rxandroid:2.0.1' | ||
|
||
compile 'com.jakewharton:butterknife:8.5.1' | ||
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' | ||
|
||
compile 'com.google.dagger:dagger:2.9' | ||
annotationProcessor 'com.google.dagger:dagger-compiler:2.9' | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
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
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
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
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
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
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
Oops, something went wrong.