Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Update application version as appstore releases
Browse files Browse the repository at this point in the history
  • Loading branch information
seia-soto committed Feb 16, 2021
1 parent 8690cda commit 3766da5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const path = require('path')
const { Client, profiles } = require('../src')

const profile = {
...profiles.application.a297,
...profiles.application.a304,
...profiles.locales.Korean
}
const profileLoc = path.join(__dirname, '../profile.json')
Expand Down
2 changes: 1 addition & 1 deletion scripts/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const init = async () => {
const [phoneNumber, phoneNumberNation, phoneNumberUser] = phoneNumberMatch

const profile = {
...profiles.application.a297,
...profiles.application.a304,
...profiles.locales[language],
deviceId
}
Expand Down
7 changes: 7 additions & 0 deletions src/profiles/application/a304.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default {
userAgnet: 'clubhouse/304 (iPhone; iOS 14.4; Scale/2.00)',
userAgentStatic: 'Clubhouse/304 CFNetwork/1220.1 Darwin/20.3.0',
appVersion: '0.1.28',
appBuild: '304',
agoraKey: '938de3e8055e42b281bb8c6f69c21f78'
}
4 changes: 3 additions & 1 deletion src/profiles/application/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import a297 from './a297'
import a304 from './a304'

export {
a297
a297,
a304
}

0 comments on commit 3766da5

Please sign in to comment.