Commit 40268de3 authored by Administrator's avatar Administrator

增加自动化点击的demo

parent 255bd155
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.virjar.ratel.crack.snkrs"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
signingConfigs {
release {
storeFile rootProject.file('script/hermes_key')
storePassword "hermes"
keyAlias "hermes"
keyPassword "hermes"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
//debug ,也使用release的key,hermes代码无法在线调试,所以没有debug的意义
debug {
signingConfig signingConfigs.release
}
}
packagingOptions {
exclude 'META-INF/INDEX.LIST'
exclude 'META-INF/io.netty.versions.properties'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.guava:guava:23.4-android'
compileOnly 'com.virjar:ratel-api:1.3.2'
api 'com.virjar:ratel-extersion:1.0.4'
api 'com.virjar:sekiro-api:1.0.1'
}
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# 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 *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.virjar.ratel.crack.snkrs">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposeddescription"
android:value="inject for snkrs" />
<meta-data
android:name="virtualEnvModel"
android:value="Multi" />
<meta-data
android:name="for_ratel_apps"
android:value="com.nike.snkrs" />
<activity android:name="com.virjar.ratel.snkrs.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
\ No newline at end of file
{
"taskImplementationClassName": "com.virjar.ratel.snkrs.SnkrsTaskScheduler",
"cronExpression": "* * 0 * * ?",
"maxDuration": 600,
"restartApp": true
}
\ No newline at end of file
com.virjar.ratel.snkrs.HookEntry
\ No newline at end of file
package com.virjar.ratel.snkrs;
public class GrabTaskBean {
public static String userName = "13011860000";
public static String password = "yourPassword";
}
package com.virjar.ratel.snkrs;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Intent;
import android.util.Log;
import com.virjar.ratel.api.RatelToolKit;
import com.virjar.ratel.api.extension.socketmonitor.SocketMonitor;
import com.virjar.ratel.api.extension.socketmonitor.observer.FileLogEventObserver;
import com.virjar.ratel.api.extension.superappium.sekiro.SekiroStarter;
import com.virjar.ratel.api.inspect.ClassLoadMonitor;
import com.virjar.ratel.api.inspect.ForceFiledViewer;
import com.virjar.ratel.api.rposed.IRposedHookLoadPackage;
import com.virjar.ratel.api.rposed.RC_MethodHook;
import com.virjar.ratel.api.rposed.RposedBridge;
import com.virjar.ratel.api.rposed.RposedHelpers;
import com.virjar.ratel.api.rposed.callbacks.RC_LoadPackage;
import com.virjar.sekiro.Constants;
import java.io.File;
import java.util.HashMap;
import external.com.alibaba.fastjson.JSON;
public class HookEntry implements IRposedHookLoadPackage {
public static final String TAG = "SuperAppium";
private static AlertDialog alertDialog = null;
// private static boolean hasHookWindowManager = false;
@Override
public void handleLoadPackage(RC_LoadPackage.LoadPackageParam lpparam) {
if (!lpparam.packageName.equals(lpparam.processName)) {
return;
}
Log.i(TAG, "handleLoadPackage");
ClassLoadMonitor.addClassLoadMonitor("com.nike.snkrs.core.idnaccount.user.network.IdnUserFetchRequestKey", new ClassLoadMonitor.OnClassLoader() {
@Override
public void onClassLoad(Class<?> clazz) {
Log.i(TAG, "load IdnUserFetchRequestKey class", new Throwable());
}
});
//启动dump服务器
SekiroStarter.startService("sekiro.virjar.com", Constants.defaultNatServerPort);
SocketMonitor.setPacketEventObserver(new FileLogEventObserver(new File(RatelToolKit.whiteSdcardDirPath, "socketMonitor")));
RposedBridge.hookAllConstructors(
RposedHelpers.findClass("com.nike.snkrs.core.idnaccount.user.models.IdnUserModel", lpparam.classLoader),
new RC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "create IdnUserModel: " + JSON.toJSONString(ForceFiledViewer.toView(param.thisObject)), new Throwable());
}
}
);
//com.nike.snkrs.core.idnaccount.user.network.IdnUserFetchRequestKey#IdnUserFetchRequestKey
RposedBridge.hookAllConstructors(RposedHelpers.findClass("com.nike.snkrs.core.idnaccount.user.network.IdnUserFetchRequestKey", lpparam.classLoader),
new RC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "constructor of IdnUserFetchRequestKey: " + JSON.toJSONString(ForceFiledViewer.toView(param.args)), new Throwable());
}
});
//com.nike.snkrs.core.idnaccount.user.network.IdnUserFetcher#fetch
RposedHelpers.findAndHookMethod("com.nike.snkrs.core.idnaccount.user.network.IdnUserFetcher", lpparam.classLoader,
"fetch", "com.nike.snkrs.core.idnaccount.user.network.IdnUserRequestKey", new RC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "fetch idn user, request: " + JSON.toJSONString(ForceFiledViewer.toView(param.args[0])), new Throwable());
Log.i(TAG, "IdnUserRequestKey class: " + param.args[0].getClass());
}
});
//com.nike.snkrs.core.idnaccount.user.IdnUserService$storeKey$1#apply
RposedHelpers.findAndHookMethod("com.nike.snkrs.core.idnaccount.user.IdnUserService$storeKey$1", lpparam.classLoader,
"apply", String.class, new RC_MethodHook() {
@Override
protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "IdnUserService$storeKey$1#apply :" + param.args[0], new Throwable());
}
});
Log.i(TAG, "hook end");
}
static {
ForceFiledViewer.addForceViewConfig("android.content.pm.ApplicationInfo");
}
private static void backup(RC_LoadPackage.LoadPackageParam lpparam) {
//com.nike.snkrs.core.idnaccount.user.IdnUserRefreshListener.updateIdnUserPrefs
RposedBridge.hookAllMethods(
RposedHelpers.findClass("com.nike.snkrs.core.idnaccount.user.IdnUserRefreshListener", lpparam.classLoader)
, "updateIdnUserPrefs", new RC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "updateIdnUserPrefs: " + JSON.toJSONString(ForceFiledViewer.toView(param.args[0])));
}
}
);
//expires=1575700191&device_name=MI+9+Transparent+Edition&method=token&device_id=E81809057639AE4E800CC109317FC671&apikey=I6FWDlFGVAcR2YrGZaG1cBNtZmbwL33t&v=1&device_type=3&vcode=c6103c95c880850f07c8028d3ad1cb4d&timestamp=1575613791&info=%7B%22api_level%22%3A28%2C%22screen_height%22%3A2135%2C%22screen_width%22%3A1080%2C%22model%22%3A%22MI+9+Transparent+Edition%22%2C%22isroot%22%3A0%2C%22is_baidu_app%22%3A0%2C%22push_sdk_version%22%3A62%2C%22manufacturer%22%3A%22Xiaomi%22%7D
RposedHelpers.findAndHookMethod(HashMap.class, "put", Object.class, Object.class, new RC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
if (!(param.args[0] instanceof CharSequence)) {
return;
}
String key = param.args[0].toString();
if ("firstName".equals(key) || "lastName".equals(key)) {
Log.i(TAG, "set value to hashMap key: " + key + " value: " + param.args[1]);
Log.i(TAG, "stack: ", new Throwable());
}
}
});
//android.app.Activity.onActivityResult(int requestCode, int resultCode, Intent data)
RposedHelpers.findAndHookMethod(Activity.class,
"onActivityResult",
int.class, int.class, Intent.class,
new RC_MethodHook() {
@Override
protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "onActivityResult for activity: " + param.thisObject.getClass().getName() + " requestCode:" + param.args[0]
+ " resultCode:" + param.args[1] + " data:"
+ JSON.toJSONString(ForceFiledViewer.toView(param.args[2])));
}
}
);
RposedHelpers.findAndHookMethod(Activity.class, "onResume", new RC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
Log.i(TAG, "activity: " + param.thisObject.getClass().getName() + " onResume");
}
});
}
}
package com.virjar.ratel.snkrs;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;
import com.virjar.ratel.crack.snkrs.BuildConfig;
import com.virjar.ratel.crack.snkrs.R;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = findViewById(R.id.hint_text);
textView.setText("SNKRS pluign:" + BuildConfig.VERSION_NAME);
}
}
package com.virjar.ratel.snkrs;
import android.util.Log;
import com.virjar.ratel.api.RatelToolKit;
import com.virjar.ratel.api.extension.superappium.PageTriggerManager;
import com.virjar.ratel.api.extension.superappium.SuperAppium;
import com.virjar.ratel.api.scheduler.RatelTask;
import com.virjar.ratel.snkrs.pages.TheWallActivityPageHandler;
import com.virjar.ratel.snkrs.pages.UniteActivityPageHandler;
import java.util.HashMap;
import java.util.Map;
import external.com.alibaba.fastjson.JSON;
public class SnkrsTaskScheduler implements RatelTask {
@Override
public Map<String, String> loadTaskParams() {
Log.i(HookEntry.TAG, "scheduler task load task params");
Map<String, String> ret = new HashMap<>();
ret.put("snkrs_user_name", "13011860000");
ret.put("snkrs_passworld", "yourPassword");
ret.put("crawlId", "testCrawlId");
// ratel. 开头的,是ratel定义的特殊标记
ret.put("ratel.userId", "187821600000");
return ret;
}
@Override
public void doRatelTask(Map<String, String> params) {
Log.i(HookEntry.TAG, "scheduler task with params:" + JSON.toJSONString(params));
if (!params.containsKey("snkrs_user_name")) {
//没有从服务器请求到任务,直接停止调度
RatelToolKit.schedulerTaskBeanHandler.finishedMTask();
return;
}
SuperAppium.TAG = HookEntry.TAG;
GrabTaskBean.userName = params.get("snkrs_user_name");
GrabTaskBean.password = params.get("snkrs_passworld");
//ui点击控制
setupUIDriver();
}
private void setupUIDriver() {
PageTriggerManager.setTaskDuration(800);
//启动页面,主要功能是发现有登陆按钮的话,跳转到登陆页面
PageTriggerManager.addHandler("com.nike.snkrs.feed.activities.TheWallActivity",
new TheWallActivityPageHandler()
);
//登陆页面,使用任务参数登陆账号,之后会回到主页面
PageTriggerManager.addHandler("com.nike.unite.sdk.UniteActivity",
new UniteActivityPageHandler()
);
}
}
\ No newline at end of file
package com.virjar.ratel.snkrs.pages;
import android.app.Activity;
import com.virjar.ratel.api.extension.superappium.PageTriggerManager;
import com.virjar.ratel.api.extension.superappium.ViewImage;
public class TheWallActivityPageHandler implements PageTriggerManager.ActivityFocusHandler {
@Override
public boolean handleActivity(Activity activity, ViewImage root) {
return root.clickByXpath("//android.widget.Button[@id='com.nike.snkrs:id/loginButton']");
}
}
package com.virjar.ratel.snkrs.pages;
import android.app.Activity;
import android.util.Log;
import android.webkit.WebView;
import com.virjar.ratel.api.extension.superappium.PageTriggerManager;
import com.virjar.ratel.api.extension.superappium.ViewImage;
import com.virjar.ratel.api.extension.superappium.WebViewHelper;
import com.virjar.ratel.snkrs.GrabTaskBean;
import com.virjar.ratel.snkrs.HookEntry;
public class UniteActivityPageHandler implements PageTriggerManager.ActivityFocusHandler {
@Override
public boolean handleActivity(Activity activity, ViewImage root) {
WebView webView = root.findWebViewIfExist();
if (webView == null) {
Log.i(HookEntry.TAG, "无法定位登陆WebView...");
return false;
}
WebViewHelper.JsCallFuture jsCallFuture = new WebViewHelper(webView).typeByXpath("//input[@data-componentname='phoneNumber']", GrabTaskBean.userName);
jsCallFuture.success()
.typeByXpath("//input[@data-componentname='password']", GrabTaskBean.password)
.clickByXpath("//input[@type='button' and @value='登录']");
jsCallFuture.failed(new WebViewHelper.OnJsCallFinishEvent() {
@Override
public void onJsCallFinished(String callResultId) {
PageTriggerManager.trigger(400);
}
});
return true;
}
}
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeWidth="1"
android:strokeColor="#00000000">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#008577"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.virjar.ratel.snkrs.MainActivity">
<TextView
android:id="@+id/hint_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
</resources>
<resources>
<string name="app_name">SNKRS AutoUI1</string>
</resources>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
include ':demoapp', ':createhelper',
include ':demoapp',
':crack-snkrs',
':createhelper',
':crack-demoapp'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment