-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (35 loc) · 979 Bytes
/
build.gradle
File metadata and controls
41 lines (35 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
id 'com.android.library'
}
android {
compileSdk 32
buildToolsVersion "33.0.2"
useLibrary 'org.apache.http.legacy'
namespace "editor.tsd"
defaultConfig {
minSdk 21
targetSdk 28
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'com.google.code.gson:gson:2.11.0'
def editorGroupId = "io.github.Rosemoe.sora-editor"
implementation platform("$editorGroupId:bom:0.22.0")
implementation "$editorGroupId:editor"
implementation "$editorGroupId:language-textmate"
implementation "$editorGroupId:language-java"
implementation project(path: ':common')
}