Skip to content

Commit

Permalink
UI with SDk v1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yadavmangesh committed Sep 7, 2019
1 parent d32741e commit 7f61fb8
Show file tree
Hide file tree
Showing 36 changed files with 4,040 additions and 245 deletions.
116 changes: 116 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ android {
}

testOptions {
unitTests.returnDefaultValues = true
unitTests {
includeAndroidResources = true
}
}

}
Expand All @@ -45,27 +47,31 @@ dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:support-emoji-appcompat:28.0.0'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

//cometchat sdk
implementation 'com.cometchat:pro-android-chat-sdk:1.8.3'
implementation 'com.cometchat:pro-android-chat-sdk:1.8.5'

implementation 'com.android.support:recyclerview-selection:28.0.0'
implementation'com.facebook.shimmer:shimmer:0.4.0'

implementation 'com.facebook.shimmer:shimmer:0.4.0'

}

repositories {
mavenCentral()

}


12 changes: 12 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,15 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# Glide specific rules #
# https://github.com/bumptech/glide

-keep public class com.dylanvann.fastimage.* {*;}
-keep public class com.dylanvann.fastimage.** {*;}
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
**[] $VALUES;
public *;
}
Loading

0 comments on commit 7f61fb8

Please sign in to comment.