Skip to content

Commit

Permalink
第一个版本
Browse files Browse the repository at this point in the history
  • Loading branch information
pansong291 committed May 22, 2019
1 parent afadf24 commit 2cc3e4c
Show file tree
Hide file tree
Showing 8 changed files with 683 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# XQuickEnergy
快速收取蚂蚁森林能量
快速收取蚂蚁森林能量
进入界面快速收取,非自动收取

原地址:[https://github.com/yongjun925/autocollectenergy](https://github.com/yongjun925/autocollectenergy)
感谢编码美丽的四哥(@尼古拉斯·赵四)
25 changes: 25 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.0"

defaultConfig {
applicationId "pansong291.xposed.quickenergy"
minSdkVersion 14
targetSdkVersion 21
versionCode 20190522
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('/storage/emulated/0/AppLibrarys/xposed_api_82_dis.jar')
}
17 changes: 17 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\tools\adt-bundle-windows-x86_64-20131030\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
27 changes: 27 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pansong291.xposed.quickenergy">

<application
android:allowBackup="true"
android:icon="@android:drawable/sym_def_app_icon"
android:label="XQuickEnergy">

<!-- 作为xposed模块 -->
<meta-data
android:name="xposedmodule"
android:value="true" />

<!-- 模块描述 -->
<meta-data
android:name="xposeddescription"
android:value="蚂蚁森林快速收取能量" />

<!-- XposedBridgeApi的最低版本号 -->
<meta-data
android:name="xposedminversion"
android:value="54" />

</application>

</manifest>
1 change: 1 addition & 0 deletions app/src/main/assets/xposed_init
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pansong291.xposed.quickenergy.XposedHook
Loading

0 comments on commit 2cc3e4c

Please sign in to comment.