Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 6a94bb0

Browse files
Auto-update
1 parent b752c3d commit 6a94bb0

File tree

64 files changed

+1732
-1245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1732
-1245
lines changed

Application/build.gradle

Lines changed: 0 additions & 61 deletions
This file was deleted.

Application/src/main/AndroidManifest.xml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,30 @@
1515
limitations under the License.
1616
-->
1717
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18-
package="com.example.android.system.runtimepermissions" >
18+
package="com.example.android.system.runtimepermissions">
1919

2020
<!-- BEGIN_INCLUDE(manifest) -->
2121

2222
<!-- Note that all required permissions are declared here in the Android manifest.
2323
On Android M and above, use of these permissions is only requested at run time. -->
24-
<uses-permission android:name="android.permission.CAMERA"/>
24+
<uses-permission android:name="android.permission.CAMERA" />
2525

2626
<!-- The following permissions are only requested if the device is on M or above.
2727
On older platforms these permissions are not requested and will not be available. -->
28-
<uses-permission-sdk-m android:name="android.permission.READ_CONTACTS" />
29-
<uses-permission-sdk-m android:name="android.permission.WRITE_CONTACTS" />
28+
<uses-permission-sdk-23 android:name="android.permission.READ_CONTACTS" />
29+
<uses-permission-sdk-23 android:name="android.permission.WRITE_CONTACTS" />
3030

3131
<!-- END_INCLUDE(manifest) -->
3232

3333
<application
3434
android:allowBackup="true"
3535
android:icon="@mipmap/ic_launcher"
3636
android:label="@string/app_name"
37-
android:theme="@style/Theme.AppCompat.Light" >
37+
android:supportsRtl="true"
38+
android:theme="@style/Theme.AppCompat.Light">
3839
<activity
3940
android:name=".MainActivity"
40-
android:label="@string/app_name" >
41+
android:label="@string/app_name">
4142
<intent-filter>
4243
<action android:name="android.intent.action.MAIN" />
4344

Application/src/main/java/com/example/android/common/logger/Log.java

Lines changed: 0 additions & 236 deletions
This file was deleted.

0 commit comments

Comments
 (0)