Skip to content

Commit

Permalink
hotfix(VersionUtility): do not include build number (#111)
Browse files Browse the repository at this point in the history
This breaks OONI Backend.

See ooni/backend#111 and ooni/sysadmin#164.
  • Loading branch information
bassosimone authored Sep 26, 2017
1 parent 8afc0c5 commit 6987a03
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
public class VersionUtils {

public static String get_software_version(){
return BuildConfig.VERSION_NAME + "+" + BuildConfig.VERSION_CODE;
// FIXME: submitting the VERSION_CODE breaks OONI backend
//return BuildConfig.VERSION_NAME + "+" + BuildConfig.VERSION_CODE;
return BuildConfig.VERSION_NAME;
}
}

0 comments on commit 6987a03

Please sign in to comment.