create an activity for editing photos
This commit is contained in:
parent
21d0a38446
commit
d638f6350e
3 changed files with 16 additions and 0 deletions
|
@ -40,6 +40,7 @@ dependencies {
|
||||||
compile 'com.github.bumptech.glide:glide:3.7.0'
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
||||||
compile 'com.jakewharton:butterknife:8.0.1'
|
compile 'com.jakewharton:butterknife:8.0.1'
|
||||||
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.5.0'
|
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.5.0'
|
||||||
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||||
|
|
||||||
apt 'com.jakewharton:butterknife-compiler:8.0.1'
|
apt 'com.jakewharton:butterknife-compiler:8.0.1'
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,5 +114,15 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".activities.EditActivity">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="action_nextgen_edit"/>
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
|
||||||
|
<data android:mimeType="image/*"/>
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
</application>
|
</application>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
package com.simplemobiletools.gallery.activities
|
||||||
|
|
||||||
|
class EditActivity : SimpleActivity() {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue