-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bbb4f1
commit a35bf3f
Showing
151 changed files
with
36,221 additions
and
36,138 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Thu Jan 23 15:07:58 IST 2020 | ||
#Tue Aug 17 02:58:03 IST 2021 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME |
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 |
---|---|---|
@@ -1 +1 @@ | ||
/build | ||
/build |
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 |
---|---|---|
@@ -1,96 +1,96 @@ | ||
apply plugin: 'com.android.library' | ||
android { | ||
compileSdkVersion 30 | ||
|
||
defaultConfig { | ||
minSdkVersion 21 | ||
targetSdkVersion 30 | ||
versionCode 1 | ||
versionName "3.0.7-1" | ||
multiDexEnabled true | ||
vectorDrawables.useSupportLibrary = true | ||
renderscriptSupportModeEnabled true | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles 'consumer-rules.pro' | ||
|
||
ndk { | ||
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" | ||
} | ||
} | ||
|
||
sourceSets { | ||
main { | ||
manifest.srcFile 'src/main/AndroidManifest.xml' | ||
java.srcDirs = ['src/main/java', '.apt_generated'] | ||
aidl.srcDirs = ['src/main/aidl', '.apt_generated'] | ||
res.srcDirs = [ | ||
'src/main/res', | ||
'src/main/res-components', | ||
'src/main/res-components/calls', | ||
'src/main/res-components/chats', | ||
'src/main/res-components/cometchatui', | ||
'src/main/res-components/groups', | ||
'src/main/res-components/messagebubbles', | ||
'src/main/res-components/messages', | ||
'src/main/res-components/others', | ||
'src/main/res-components/shared', | ||
'src/main/res-components/userprofile', | ||
'src/main/res-components/users' | ||
] | ||
} | ||
} | ||
|
||
dataBinding { | ||
enabled = true | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
buildToolsVersion = '28.0.3' | ||
|
||
} | ||
|
||
dependencies { | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
|
||
implementation 'androidx.appcompat:appcompat:1.1.0' | ||
implementation 'androidx.preference:preference:1.1.0' | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'androidx.test:runner:1.2.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' | ||
|
||
//RecyclerView | ||
implementation 'androidx.recyclerview:recyclerview:1.0.0' | ||
|
||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | ||
|
||
implementation 'androidx.emoji:emoji:1.1.0-rc01' | ||
implementation 'androidx.emoji:emoji-bundled:1.1.0' | ||
|
||
implementation 'androidx.emoji:emoji-appcompat:1.0.0' | ||
implementation 'androidx.annotation:annotation:1.1.0' | ||
implementation 'com.github.bumptech.glide:glide:4.9.0' | ||
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0' | ||
|
||
implementation 'com.google.android.material:material:1.2.0-alpha04' | ||
|
||
implementation 'com.facebook.shimmer:shimmer:0.4.0' | ||
|
||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' | ||
|
||
implementation 'com.google.android.gms:play-services-location:17.0.0' | ||
implementation 'com.google.android.gms:play-services-maps:17.0.0' | ||
//cometchat | ||
compileOnly 'com.cometchat:pro-android-chat-sdk:3.0.7' | ||
compileOnly 'com.cometchat:pro-android-calls-sdk:2.1.2-beta8' | ||
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.0' | ||
} | ||
apply plugin: 'com.android.library' | ||
android { | ||
compileSdkVersion 30 | ||
|
||
defaultConfig { | ||
minSdkVersion 21 | ||
targetSdkVersion 30 | ||
versionCode 1 | ||
versionName "3.0.9-1" | ||
multiDexEnabled true | ||
vectorDrawables.useSupportLibrary = true | ||
renderscriptSupportModeEnabled true | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles 'consumer-rules.pro' | ||
|
||
ndk { | ||
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" | ||
} | ||
} | ||
|
||
sourceSets { | ||
main { | ||
manifest.srcFile 'src/main/AndroidManifest.xml' | ||
java.srcDirs = ['src/main/java', '.apt_generated'] | ||
aidl.srcDirs = ['src/main/aidl', '.apt_generated'] | ||
res.srcDirs = [ | ||
'src/main/res', | ||
'src/main/res-components', | ||
'src/main/res-components/calls', | ||
'src/main/res-components/chats', | ||
'src/main/res-components/cometchatui', | ||
'src/main/res-components/groups', | ||
'src/main/res-components/messagebubbles', | ||
'src/main/res-components/messages', | ||
'src/main/res-components/others', | ||
'src/main/res-components/shared', | ||
'src/main/res-components/userprofile', | ||
'src/main/res-components/users' | ||
] | ||
} | ||
} | ||
|
||
dataBinding { | ||
enabled = true | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
buildToolsVersion = '28.0.3' | ||
|
||
} | ||
|
||
dependencies { | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
|
||
implementation 'androidx.appcompat:appcompat:1.1.0' | ||
implementation 'androidx.preference:preference:1.1.0' | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'androidx.test:runner:1.2.0' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' | ||
|
||
//RecyclerView | ||
implementation 'androidx.recyclerview:recyclerview:1.0.0' | ||
|
||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | ||
|
||
implementation 'androidx.emoji:emoji:1.1.0-rc01' | ||
implementation 'androidx.emoji:emoji-bundled:1.1.0' | ||
|
||
implementation 'androidx.emoji:emoji-appcompat:1.0.0' | ||
implementation 'androidx.annotation:annotation:1.1.0' | ||
implementation 'com.github.bumptech.glide:glide:4.9.0' | ||
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0' | ||
|
||
implementation 'com.google.android.material:material:1.2.0-alpha04' | ||
|
||
implementation 'com.facebook.shimmer:shimmer:0.4.0' | ||
|
||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' | ||
|
||
implementation 'com.google.android.gms:play-services-location:17.0.0' | ||
implementation 'com.google.android.gms:play-services-maps:17.0.0' | ||
//cometchat | ||
compileOnly 'com.cometchat:pro-android-chat-sdk:3.0.9' | ||
compileOnly 'com.cometchat:pro-android-calls-sdk:2.2.0' | ||
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.0' | ||
} |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile |
Oops, something went wrong.