Skip to content

Commit

Permalink
Merge branch 'beta' into beta-call
Browse files Browse the repository at this point in the history
# Conflicts:
#	app/src/main/AndroidManifest.xml
#	app/src/main/java/com/example/chat/application/chatexample/ChatContract.java
#	app/src/main/java/com/example/chat/application/chatexample/ChatMainActivity.java
#	podchat/build.gradle
#	podchat/src/main/java/com/fanap/podchat/chat/Chat.java
#	podchat/src/main/java/com/fanap/podchat/chat/ChatListener.java
  • Loading branch information
Farhad7d7 committed Aug 16, 2021
2 parents b989cb7 + c69f156 commit f9fe744
Show file tree
Hide file tree
Showing 38 changed files with 2,392 additions and 5,436 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@
All notable changes to this project will be documented here.


## Version [0.9.10.0] -2021-7-17

[Added] ```getMutualGroup``` method

[Added] ```onGetMutualGroups``` callback

[Added] ```getContacts``` => add username to RequestGetContact


## Version [0.9.9.0]
[BugFixed] Failure to receive history in specific situations

Expand Down
7 changes: 6 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ dependencies {

// implementation 'com.google.android.gms:play-services:12.0.1'
implementation 'com.orhanobut:logger:2.2.0'
implementation 'com.android.support:cardview-v7:28.0.0'
androidTestImplementation 'com.orhanobut:logger:2.2.0'
implementation 'com.google.code.gson:gson:2.8.2'

Expand All @@ -83,7 +84,11 @@ dependencies {
// implementation project(path: ':podotp')

implementation 'com.github.bumptech.glide:glide:4.8.0'

//placeholderview
// implementation 'com.mindorks:placeholderview:0.7.1'
implementation ('com.mindorks:placeholderview:0.7.1') {
exclude group: 'com.android.support', module: 'recyclerview'
}

}
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

import com.example.chat.application.chatexample.ChatContract;
import com.example.chat.application.chatexample.ChatPresenter;
import com.example.chat.application.chatexample.ChatSandBoxActivity;
import com.fanap.podchat.mainmodel.History;

import org.junit.Before;
Expand Down
13 changes: 9 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,25 @@
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
tools:ignore="GoogleAppIndexingWarning"
android:hardwareAccelerated="false"
tools:targetApi="n">

<activity android:name="com.example.chat.application.chatexample.CallActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.example.chat.application.chatexample.ChatSandBoxActivity" />
<activity
android:name="com.example.chat.application.chatexample.ChatMainActivity"
android:launchMode="singleInstance">

<activity android:name="com.example.chat.application.chatexample.ChatActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>

</manifest>
Loading

0 comments on commit f9fe744

Please sign in to comment.