-
Notifications
You must be signed in to change notification settings - Fork 213
How to Use
In your project's build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'me.ele:amigo:0.6.0-beta2'
}
}
In your module's build.gradle
apply plugin: 'me.ele.amigo'
android {
...
}
//if you don't want use amigo in dev
//you can define this extension in your mybuild.gradle as to distinguish debug & release build
amigo {
disable true //default false
}
- Supports All Devices From ECLAIR
2.1
to Nougat7.1
- Even support next Android version, no matter small or big change. So Cool, Aha ✌️
- Android 3.0 isn't supported
Some time-consuming tasks are handled in a separate process to avoid ANR, you can customize the loading activity by add the follow code into your AndroidManifest.xml:
<meta-data
android:name="amigo_layout"
android:value="{your-layout-name}" />
<meta-data
android:name="amigo_theme"
android:value="{your-theme-name}" />
There are two ways to make hotfix work.
-
if you don't need hotfix work immediately
you just need to download new apk file, hotfix apk will be loaded as fresh as new when app restarts next time
Amigo.workLater(context, patchApkFile, callback);
-
work immediately, App will restart immediately
Amigo.work(context, patchApkFile);
Amigo.clear(context);
note:All patch files would be deleted on the next start up.
And there is an Demo page in the app demonstrating how to apply patch apk.
Run the task ./gradlew runHost preparePatch
, and navigate to the demo
page.
The plugin was put into buildSrc directory, which means the plugin code change will work immediately each time you build.
The amigo plugin will select the right amigo lib automatically.
There are two gradle tasks provided in the app/build.gradle, :app:runHost
, :app:preparePatch
, which can accelerate development.
-
./gradlew runHost
, launch the host app -
./gradlew preparePatch
, build and push the patch apk to the device - apply the patch apk in the Demo page
-
have to change the way using a content provider
-
declare a new provider: the authorities string must start with "${youPackageName}.provider"
<provider android:name="me.ele.demo.provider.StudentProvider" android:authorities="${youPackageName}.provider.student" />
-
change the uri used to do the query, insert, delete operations:
// 1. inside your app process, no modifications need: Cursor cursor = getContentResolver().query(Uri.parse("content://" + getPackageName() + ".provider.student?id=0"), null, null, null, null); // 2. in another process, have to change the authorities uri like the following : Cursor cursor = getContentResolver().query(Uri.parse("content://" + targetPackageName + ".provider/student?id=0"), null, null, null, null);
-
-
Instant Run conflicts with Amigo, so disable Instant Run when used with amigo
-
Amigo doesn't support Honeycomb
3.0
- Android 3.0 is a version with full of bugs, & Google has closed Android 3.0 Honeycomb.
-
RemoteViews
's layout change innotification
&widget
is not support- any resource id in here should be used with
java RCompat.getHostIdentifier(Context context, int id)
- any resource id in here should be used with
-
make it simple, you just need a fully new apk
-
to save the internet traffic, you may just want to download a diff file bspatch (
support whole apk diff & fine-grained diff in apk
)is an option for you