标签:


| 
 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  }} | 



【Bugly干货】关于 Android N 那些你不知道的事儿
标签:
原文地址:http://www.cnblogs.com/bugly/p/5449705.html