Skip to content

Commit

Permalink
Fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
grishka committed Feb 20, 2021
1 parent ab2c1d4 commit 63d0445
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Houseclub/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ android {
applicationId "me.grishka.houseclub"
minSdkVersion 24
targetSdkVersion 30
versionCode 2
versionName "1.0.1"
versionCode 3
versionName "1.0.2"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
ndk{
abiFilters "arm64-v8a"
abiFilters "arm64-v8a", "armeabi-v7a"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public void file(PubNub pubnub, PNFileEventResult pnFileEventResult){
pubnub.subscribe().channels(Arrays.asList(
"users."+ClubhouseSession.userID,
"channel_user."+channel.channel+"."+ClubhouseSession.userID,
"channel_speakers."+channel.channel,
// "channel_speakers."+channel.channel,
"channel_all."+channel.channel
)).execute();
}
Expand Down

0 comments on commit 63d0445

Please sign in to comment.