Skip to content

Commit

Permalink
sample improvements - use navigation drawer WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur committed Mar 25, 2016
1 parent 331d68a commit d088a43
Show file tree
Hide file tree
Showing 12 changed files with 671 additions and 365 deletions.
5 changes: 3 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '23.0.1'
buildToolsVersion '23.0.2'

defaultConfig {
minSdkVersion 10
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName '1.0'
Expand All @@ -17,4 +17,5 @@ android {

dependencies {
compile project(':cropper')
compile 'com.android.support:appcompat-v7:23.2.1'
}
8 changes: 5 additions & 3 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application
android:allowBackup="true"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/appName">
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault">
<activity
android:name="com.theartofdev.edmodo.cropper.sample.MainActivity"
android:label="@string/appName">
android:label="@string/app_title">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand All @@ -21,6 +22,7 @@
</activity>
<activity android:name="com.theartofdev.edmodo.cropper.sample.CropResultActivity">
</activity>

</application>

</manifest>
Loading

0 comments on commit d088a43

Please sign in to comment.