Skip to content

Commit

Permalink
Merge pull request #498 from yanzhenjie/dev
Browse files Browse the repository at this point in the history
Release v2.1.12.
  • Loading branch information
yanzhenjie authored Jun 7, 2023
2 parents 3960fd7 + 53ace08 commit 23a7c15
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
19 changes: 12 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
*.iml
/.idea/
/build/
.gradle
/local.properties
.cxx
.DS_Store
/captures
.externalNativeBuild
/maven-repo
.gradle
.vscode
/build
/captures
/output
/.gradle
/.idea
local.properties
*.iml
*.log
*.apk
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ buildscript {
}
dependencies {
classpath 'com.yanzhenjie.andserver:plugin:2.1.11'
classpath 'com.yanzhenjie.andserver:plugin:2.1.12'
...
}
}
Expand All @@ -148,8 +148,8 @@ apply plugin: 'com.yanzhenjie.andserver'
...
dependencies {
implementation 'com.yanzhenjie.andserver:api:2.1.11'
annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.11'
implementation 'com.yanzhenjie.andserver:api:2.1.12'
annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.12'
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath 'com.yanzhenjie.andserver:plugin:2.1.11'
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'com.yanzhenjie.andserver:plugin:2.1.12'
}
}

Expand Down
2 changes: 1 addition & 1 deletion config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ext {

deps = [
android: [
plugin : 'com.android.tools.build:gradle:3.6.3',
plugin : 'com.android.tools.build:gradle:4.2.2',
annotation: 'androidx.annotation:annotation:1.1.0',
compat : 'androidx.appcompat:appcompat:1.1.0',
material : 'com.google.android.material:material:1.1.0',
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
android.useAndroidX=true

POM_GROUP_ID=com.yanzhenjie.andserver
POM_VERSION=2.1.11
POM_VERSION=2.1.12

POM_DESCRIPTION=Android web server.

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-5.6.4-all.zip
distributionUrl=https://services.gradle.org/distributions/gradle-6.7.1-all.zip
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

import com.android.build.gradle.AppExtension;
import com.android.build.gradle.AppPlugin;
import com.android.build.gradle.FeatureExtension;
import com.android.build.gradle.FeaturePlugin;
import com.android.build.gradle.LibraryExtension;
import com.android.build.gradle.LibraryPlugin;
import com.android.build.gradle.api.BaseVariant;
Expand Down Expand Up @@ -51,9 +49,6 @@ public void apply(@Nonnull Project project) {
} else if (it instanceof LibraryPlugin) {
LibraryExtension extension = project.getExtensions().getByType(LibraryExtension.class);
configGenerator(project, extension.getLibraryVariants());
} else if (it instanceof FeaturePlugin) {
FeatureExtension extension = project.getExtensions().getByType(FeatureExtension.class);
configGenerator(project, extension.getFeatureVariants());
}
});
}
Expand Down

0 comments on commit 23a7c15

Please sign in to comment.