├── res ├── values │ ├── styles.xml │ ├── strings.xml │ └── dimens.xml ├── drawable-hdpi │ ├── bg.jpg │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── values-w820dp │ └── dimens.xml ├── xml │ └── qianghongbao_service_config.xml └── layout │ └── activity_main.xml ├── README.md ├── bin ├── classes.dex ├── resources.ap_ ├── MainActivity.apk ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png ├── classes │ └── com │ │ └── codeboy │ │ └── qianghongbao │ │ ├── R.class │ │ ├── R$id.class │ │ ├── R$attr.class │ │ ├── R$xml.class │ │ ├── R$dimen.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── BuildConfig.class │ │ ├── R$drawable.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity.class │ │ └── QiangHongBaoService.class └── AndroidManifest.xml ├── .settings ├── org.eclipse.jdt.core.prefs └── org.eclipse.core.resources.prefs ├── gen └── com │ └── codeboy │ └── qianghongbao │ ├── BuildConfig.java │ └── R.java ├── .classpath ├── project.properties ├── .project ├── src └── com │ └── codeboy │ └── qianghongbao │ ├── MainActivity.java │ └── QiangHongBaoService.java └── AndroidManifest.xml /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/README.md -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /bin/MainActivity.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/MainActivity.apk -------------------------------------------------------------------------------- /res/drawable-hdpi/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/res/drawable-hdpi/bg.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$id.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$xml.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/codeboy/qianghongbao/QiangHongBaoService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WooyunDota/QiangHongBao/HEAD/bin/classes/com/codeboy/qianghongbao/QiangHongBaoService.class -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 抢红包外挂 5 | 启动抢红包服务(使用QQ,微信) 6 | 7 | -------------------------------------------------------------------------------- /gen/com/codeboy/qianghongbao/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.codeboy.qianghongbao; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/codeboy/qianghongbao/MainActivity.java=UTF-8 3 | encoding//src/com/codeboy/qianghongbao/QiangHongBaoService.java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-20 15 | -------------------------------------------------------------------------------- /res/xml/qianghongbao_service_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainActivity 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/com/codeboy/qianghongbao/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.codeboy.qianghongbao; 2 | 3 | import android.app.Activity; 4 | import android.content.Intent; 5 | import android.os.Bundle; 6 | import android.view.View; 7 | import android.widget.Toast; 8 | 9 | public class MainActivity extends Activity 10 | { 11 | 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) 14 | { 15 | super.onCreate(savedInstanceState); 16 | setContentView(R.layout.activity_main); 17 | 18 | findViewById(R.id.start_button).setOnClickListener(new View.OnClickListener() 19 | { 20 | @Override 21 | public void onClick(View v) 22 | { 23 | open(); 24 | } 25 | }); 26 | } 27 | 28 | private void open() 29 | { 30 | try 31 | { 32 | Intent intent = new Intent(android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS); 33 | startActivity(intent); 34 | Toast.makeText(this, "找到“抢红包外挂”,然后开启服务即可", Toast.LENGTH_LONG).show(); 35 | } catch (Exception e) 36 | { 37 | e.printStackTrace(); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 |