Save reply info in draft, refactor (#449)
* Save reply info in draft, refactor * Handle replying to deleted status
This commit is contained in:
parent
a859ef0432
commit
2575b16dad
15 changed files with 575 additions and 390 deletions
|
@ -1,4 +1,5 @@
|
|||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-kapt'
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
|
@ -65,13 +66,14 @@ dependencies {
|
|||
compile 'com.evernote:android-job:1.2.0'
|
||||
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
||||
//room
|
||||
compile 'android.arch.persistence.room:runtime:1.0.0'
|
||||
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0'
|
||||
testCompile 'junit:junit:4.12'
|
||||
implementation "android.arch.persistence.room:runtime:1.0.0"
|
||||
kapt 'android.arch.persistence.room:compiler:1.0.0'
|
||||
|
||||
testCompile "junit:junit:4.12"
|
||||
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
||||
exclude group: 'com.android.support', module: 'support-annotations'
|
||||
})
|
||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
||||
}
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue