mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-09 20:42:34 +01:00
Hold kau
This commit is contained in:
parent
f35939ce42
commit
b6530cc36d
@ -53,7 +53,7 @@
|
|||||||
<ConfirmationsSetting value="0" id="Add" />
|
<ConfirmationsSetting value="0" id="Add" />
|
||||||
<ConfirmationsSetting value="0" id="Remove" />
|
<ConfirmationsSetting value="0" id="Remove" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectType">
|
<component name="ProjectType">
|
||||||
|
@ -70,6 +70,14 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
mavenCentral()
|
||||||
|
maven { url "https://jitpack.io" }
|
||||||
|
maven { url 'https://maven.google.com' }
|
||||||
|
maven { url 'https://maven.fabric.io/public' }
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
||||||
@ -77,7 +85,7 @@ dependencies {
|
|||||||
})
|
})
|
||||||
testCompile 'junit:junit:4.12'
|
testCompile 'junit:junit:4.12'
|
||||||
|
|
||||||
compile "ca.allanwang:kau:${KAU}"
|
compile("ca.allanwang:kau:${KAU}")
|
||||||
|
|
||||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
||||||
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
|
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
|
||||||
@ -92,15 +100,23 @@ dependencies {
|
|||||||
annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
|
annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
|
||||||
kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
|
kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
|
||||||
compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${DBFLOW}"
|
compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${DBFLOW}"
|
||||||
// compile "com.github.Raizlabs.DBFlow:dbflow-rx2:${DBFLOW}"
|
|
||||||
// compile "com.github.Raizlabs.DBFlow:dbflow-rx2-kotlinextensions:${DBFLOW}"
|
// compile "org.greenrobot:eventbus:${EVENTBUS}"
|
||||||
|
|
||||||
//Icons
|
//Icons
|
||||||
|
compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar"
|
||||||
compile "com.mikepenz:material-design-iconic-typeface:${IICON_MATERIAL}@aar"
|
compile "com.mikepenz:material-design-iconic-typeface:${IICON_MATERIAL}@aar"
|
||||||
compile "com.mikepenz:community-material-typeface:${IICON_COMMUNITY}@aar"
|
compile "com.mikepenz:community-material-typeface:${IICON_COMMUNITY}@aar"
|
||||||
|
|
||||||
|
compile "io.reactivex.rxjava2:rxjava:${RX_JAVA}"
|
||||||
|
compile "io.reactivex.rxjava2:rxandroid:${RX_ANDROID}"
|
||||||
|
// compile "com.jakewharton.rxbinding2:rxbinding:${RX_BINDING}"
|
||||||
|
// compile "com.jakewharton.rxbinding2:rxbinding-appcompat-v7:${RX_BINDING}"
|
||||||
|
|
||||||
compile "org.jsoup:jsoup:${JSOUP}"
|
compile "org.jsoup:jsoup:${JSOUP}"
|
||||||
|
|
||||||
|
compile "org.jetbrains.anko:anko:${ANKO}"
|
||||||
|
|
||||||
compile "com.github.bumptech.glide:glide:${GLIDE}"
|
compile "com.github.bumptech.glide:glide:${GLIDE}"
|
||||||
annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}"
|
annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}"
|
||||||
|
|
||||||
|
10
build.gradle
10
build.gradle
@ -13,16 +13,6 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
|
||||||
repositories {
|
|
||||||
jcenter()
|
|
||||||
mavenCentral()
|
|
||||||
maven { url "https://jitpack.io" }
|
|
||||||
maven { url 'https://maven.google.com' }
|
|
||||||
maven { url 'https://maven.fabric.io/public' }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
task clean(type: Delete) {
|
task clean(type: Delete) {
|
||||||
delete rootProject.buildDir
|
delete rootProject.buildDir
|
||||||
}
|
}
|
||||||
|
@ -19,15 +19,25 @@ BUILD_TOOLS=26.0.0
|
|||||||
VERSION_CODE=5
|
VERSION_CODE=5
|
||||||
VERSION_NAME=0.5
|
VERSION_NAME=0.5
|
||||||
|
|
||||||
KAU=2c97b479d3
|
# wait for jitpack to fix itself
|
||||||
|
KAU=9e31fdd4f1
|
||||||
MATERIAL_DRAWER=5.9.2
|
MATERIAL_DRAWER=5.9.2
|
||||||
MATERIAL_DRAWER_KT=1.0.2
|
MATERIAL_DRAWER_KT=1.0.2
|
||||||
|
IICON_GOOGLE=3.0.1.0
|
||||||
IICON_MATERIAL=2.2.0.2
|
IICON_MATERIAL=2.2.0.2
|
||||||
IICON_COMMUNITY=1.9.32.1
|
IICON_COMMUNITY=1.9.32.1
|
||||||
|
SEARCH_VIEW=4.0
|
||||||
|
RX_JAVA=2.1.0
|
||||||
|
RX_ANDROID=2.0.1
|
||||||
|
RX_BINDING=2.0.0
|
||||||
JSOUP=1.10.2
|
JSOUP=1.10.2
|
||||||
|
ANKO=0.10.1
|
||||||
GLIDE=4.0.0-RC0
|
GLIDE=4.0.0-RC0
|
||||||
RETROFIT=2.2.0
|
RETROFIT=2.2.0
|
||||||
|
EVENTBUS=3.0.0
|
||||||
DBFLOW=4.0.2
|
DBFLOW=4.0.2
|
||||||
|
ROBOELECTRIC=3.3.2
|
||||||
|
RX_PREFS=2.0.0-RC2
|
||||||
PAPER_PARCEL=2.0.1
|
PAPER_PARCEL=2.0.1
|
||||||
SWIPE_BACK=3.1.2
|
SWIPE_BACK=3.1.2
|
||||||
CRASHLYTICS=2.6.8
|
CRASHLYTICS=2.6.8
|
||||||
|
Loading…
Reference in New Issue
Block a user