1
2
3
4
5
6
|
Notification noti =
new
Notification.Builder()
.setSmallIcon(R.drawable.ic_stat_player)
.setLargeIcon(albumArtBitmap))
.setCustomContentView(contentView);
.setStyle(
new
Notification.DecoratedCustomViewStyle())
.build();
|
1
|
javac (.java --> .
class
) --> dx (.
class
--> .dex)
|
1
|
ack (.java --> .jack --> .dex)
|
01
02
03
04
05
06
07
08
09
10
11
12
13
|
android {
...
defaultConfig {
...
jackOptions {
enabled
true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
|