-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App version #19
App version #19
Conversation
@@ -76,6 +88,8 @@ | |||
public static long MESSAGE_THROTTLE_WINDOW = 1000 * 60 * (MESSAGE_THROTTLE_MINUTES + 2); | |||
public static final long MESSAGE_RATE_LIMITER = 1000; | |||
|
|||
public static final String MESSAGE_PACK_VERSION_SUPPORTED = "1.1"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since every time the message packs version change the app will have to change too, I hard coded the packs version so we pass that to the server to get that proper packs version
app/src/main/AndroidManifest.xml
Outdated
android:versionCode="197" | ||
android:versionName="1.9.7" > | ||
android:versionCode="198" | ||
android:versionName="1.9.8" > |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated but AFAIK is preferable to have these in app/build.gradle now
No description provided.