Skip to content

Commit fd29f48

Browse files
committed
feat: add helper app Gradle config
1 parent cb1f331 commit fd29f48

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

lsposed-helper/app/build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
plugins {
2+
id 'com.android.application'
3+
}
4+
5+
android {
6+
namespace 'com.sayanthrock.colorosthemes.lsposed'
7+
compileSdk 35
8+
9+
defaultConfig {
10+
applicationId 'com.sayanthrock.colorosthemes.lsposed'
11+
minSdk 26
12+
targetSdk 35
13+
versionCode 1
14+
versionName '0.1.0'
15+
}
16+
17+
buildFeatures {
18+
buildConfig true
19+
}
20+
21+
defaultConfig {
22+
buildConfigField 'boolean', 'DEBUG_SAFE_HOOKS', 'false'
23+
}
24+
}
25+
26+
dependencies {
27+
compileOnly 'de.robv.android.xposed:api:82'
28+
}

0 commit comments

Comments
 (0)