Skip to content

Commit

Permalink
Bump version to 2102
Browse files Browse the repository at this point in the history
And update Android Studio
  • Loading branch information
canyie committed Jan 6, 2023
1 parent b2dfb87 commit e3f0b90
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Introduction
Dreamland is a Xposed framework implementation, you can use it to use Xposed modules.
- Supports Android 7.0~**12**
- Supports Android 5.0~**13**
- Low invasiveness
- For hooking third apps, only requires restart the target app, not the device
- Strictly restrict modules, you can choose which apps need to load which modules
Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## 简介
梦境是另一种Xposed框架实现,你可以借助她直接使用Xposed模块。
- 支持 Android 7.0~**12**
- 支持 Android 5.0~**13**
- 低侵入性
- 对于hook非系统应用(及部分系统应用),只需要目标应用重启而非整个设备
- 严格限制模块,你可以选择哪些应用需要加载哪些模块
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def moduleProp = [
author: 'canyie',
version: rootProject.ext.versionName + "_" + rootProject.ext.versionCode,
versionCode: rootProject.ext.versionCode,
description: 'A third-party Xposed framework implementation, supports Android 7.0 ~ 12. Requires module \'Riru\' is installed or Zygisk is enabled. Telegram group: @DreamlandFramework, QQ group: 949888394.',
description: 'A third-party Xposed framework implementation, supports Android 5.0 ~ 13. Requires module \'Riru\' is installed or Zygisk is enabled. Telegram group: @DreamlandFramework, QQ group: 949888394.',
minMagisk: rootProject.ext.minMagiskVersion,
api: rootProject.ext.riruApiVersion
]
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'dev.rikka.tools.refine:gradle-plugin:3.0.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -24,12 +24,12 @@ allprojects {
}

ext {
compileSdkVersion = 32
buildToolsVersion = '32.0.0'
compileSdkVersion = 33
buildToolsVersion = '33.0.1'
ndkVersion = "23.1.7779620"
minSdkVersion = 21
targetSdkVersion = 32 // useless for magisk module
versionCode = 2101
targetSdkVersion = 33 // useless for magisk module
versionCode = 2102
versionName = '2.1'
minMagiskVersion = 19000
riruApiVersion = 5 // For Riru v21
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,3 @@ android.useAndroidX=true
android.enableJetifier=true

android.enableD8=true
android.enableDesugar=true

2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
1 change: 0 additions & 1 deletion template/languages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,3 @@ else
WARN_MANAGER_NOT_INSTALLED_2="You cannot manage Dreamland configurations"
WARN_PLEASE_INSTALL_NEW_MANAGER="Please install new Dreamland Manager at https://github.com/canyie/DreamlandManager/releases"
fi

0 comments on commit e3f0b90

Please sign in to comment.