Skip to content

Commit

Permalink
Merge pull request #35 from RowlandOti/release/2024/07/12-1
Browse files Browse the repository at this point in the history
Release/2024/07/12 1
  • Loading branch information
RowlandOti authored Jul 16, 2024
2 parents 71c3091 + 3aef62c commit 01fedad
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .buildsystem/versioning.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@

ext.getVersionCode = { ->
try {
return 2
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-list', '--all', '--count'
standardOutput = stdout
}
return stdout.toString().trim().toInteger()
}
catch (ignored) {
return -1;
Expand Down
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ GEM
xcpretty (~> 0.2, >= 0.0.7)

PLATFORMS
x64-mingw-ucrt
universal-darwin-23
x64-unknown
x86_64-darwin-17

DEPENDENCIES
Expand Down
5 changes: 5 additions & 0 deletions ui/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.rowland.delivery.merchant">

<uses-feature
android:name="android.hardware.telephony"
android:required="false" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove" />

<application
android:name=".MerchantApplication"
Expand Down

0 comments on commit 01fedad

Please sign in to comment.