Skip to content

Commit

Permalink
[Parent][R-2.0.5] Don't require camera hardware and version code bump (
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenBrough authored Sep 13, 2019
1 parent f071c99 commit f791ccf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/parent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {
applicationId "com.instructure.parentapp"
minSdkVersion Versions.MIN_SDK
targetSdkVersion Versions.TARGET_SDK
versionCode = 22
versionCode = 23
versionName = "2.0.5"

multiDexEnabled = true
Expand Down
2 changes: 2 additions & 0 deletions apps/parent/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-feature android:name="android.hardware.camera" android:required="false" tools:replace="required"/>

<application
android:name=".util.ApplicationManager"
android:allowBackup="false"
Expand Down
4 changes: 2 additions & 2 deletions apps/student/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
android:name="com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner"
android:targetPackage="com.instructure.candroid"/>

<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera" android:required="false" tools:replace="required"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" tools:replace="required"/>

<supports-screens
android:anyDensity="true"
Expand Down
4 changes: 2 additions & 2 deletions apps/teacher/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <!-- For Studio -->

<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera" android:required="false" tools:replace="required"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" tools:replace="required"/>

<supports-screens
android:anyDensity="true"
Expand Down

0 comments on commit f791ccf

Please sign in to comment.