Compare commits

..

2 Commits

Author SHA1 Message Date
akwizgran
b464dcc1be Bump version numbers for 1.2.3 release. 2019-07-04 12:46:18 +01:00
akwizgran
6dcfe4fc75 Enable remote contacts for beta release. 2019-07-04 12:45:25 +01:00
3 changed files with 5 additions and 5 deletions

View File

@@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 26
versionCode 10109
versionName "1.1.9"
versionCode 10203
versionName "1.2.3"
consumerProguardFiles 'proguard-rules.txt'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

View File

@@ -22,8 +22,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 26
versionCode 10109
versionName "1.1.9"
versionCode 10203
versionName "1.2.3"
applicationId "org.briarproject.briar.android"
buildConfigField "String", "GitHash",
"\"${getStdout(['git', 'rev-parse', '--short=7', 'HEAD'], 'No commit hash')}\""

View File

@@ -244,7 +244,7 @@ public class AppModule {
@Override
public boolean shouldEnableRemoteContacts() {
return IS_DEBUG_BUILD;
return true;
}
};
}