Skip to content

Commit f0b4b22

Browse files
committed
photo editor plugin
1 parent ffe698e commit f0b4b22

6 files changed

Lines changed: 2790 additions & 0 deletions

File tree

PhotoEditor/build.gradle.kts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version = "1.0.0"
2+
description = "Edit image URLs with PhotoEditor"
3+
4+
5+
android {
6+
namespace = "com.aliucord.plugins.photoeditor"
7+
}
8+
9+
dependencies {
10+
11+
implementation(files("libs/photoeditor-3.1.0-classes.jar"))
12+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3") {
13+
exclude(group = "org.jetbrains.kotlin")
14+
}
15+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3") {
16+
exclude(group = "org.jetbrains.kotlin")
17+
exclude(group = "org.jetbrains.kotlinx", module = "kotlinx-coroutines-core-jvm")
18+
}
19+
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:2.2.0")
20+
}
21+
22+
23+
24+
25+
145 KB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest />

0 commit comments

Comments
 (0)