diff --git a/MVPModel/.idea/caches/build_file_checksums.ser b/MVPModel/.idea/caches/build_file_checksums.ser index eb435f1..2998e05 100644 Binary files a/MVPModel/.idea/caches/build_file_checksums.ser and b/MVPModel/.idea/caches/build_file_checksums.ser differ diff --git a/MVPModel/.idea/misc.xml b/MVPModel/.idea/misc.xml index 3b01af5..99202cc 100644 --- a/MVPModel/.idea/misc.xml +++ b/MVPModel/.idea/misc.xml @@ -5,11 +5,12 @@ @@ -24,96 +25,7 @@ - - - - - - - - - Android - - - Class structureJava - - - Cloning issuesJava - - - Code style issuesJava - - - CorrectnessLintAndroid - - - Data flow issuesJava - - - Declaration redundancyJava - - - GPath inspectionsGroovy - - - Groovy - - - IconsUsabilityLintAndroid - - - JUnit issuesJava - - - Java - - - Java 5Java language level migration aidsJava - - - Java 8Java language level migration aidsJava - - - Java language level migration aidsJava - - - LintAndroid - - - Naming ConventionsGroovy - - - Naming conventionsJava - - - Numeric issuesJava - - - Performance issuesJava - - - PerformanceLintAndroid - - - Probable bugsGroovy - - - Probable bugsJava - - - SecurityLintAndroid - - - TestNGJava - - - UsabilityLintAndroid - - - - - - + diff --git a/MVPModel/app/build.gradle b/MVPModel/app/build.gradle index 9c2feaa..037f20a 100644 --- a/MVPModel/app/build.gradle +++ b/MVPModel/app/build.gradle @@ -4,11 +4,16 @@ android { compileSdkVersion 26 defaultConfig { applicationId "com.gaolei.mvpmodel" - minSdkVersion 15 + minSdkVersion 18 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + javaCompileOptions { + annotationProcessorOptions { + arguments = [ eventBusIndex : 'com.gaolei.mvpmodel.MyEventBusIndex' ] + } + } } buildTypes { release { @@ -27,14 +32,33 @@ dependencies { testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' - compile 'com.squareup.okhttp3:okhttp:3.10.0' - compile 'com.squareup.retrofit2:retrofit:2.4.0' - compile 'com.squareup.retrofit2:converter-gson:2.0.2' + implementation 'com.squareup.okhttp3:okhttp:3.10.0' + implementation 'com.squareup.retrofit2:retrofit:2.4.0' + implementation 'com.squareup.retrofit2:converter-gson:2.0.2' implementation 'com.jakewharton:butterknife:8.8.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' + // glide implementation 'com.github.bumptech.glide:glide:4.6.1' annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1' - compile 'com.youth.banner:banner:1.4.10' + // banner + implementation 'com.youth.banner:banner:1.4.10' + // rxjava + implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0' + implementation "io.reactivex.rxjava2:rxjava:2.1.1" + implementation 'io.reactivex.rxjava2:rxandroid:2.0.1' + // dagger2 + annotationProcessor 'com.google.dagger:dagger-compiler:2.0.2' //指定注解处理器 + implementation 'com.google.dagger:dagger:2.0.2' + // eventbus + implementation 'org.greenrobot:eventbus:3.1.1' + annotationProcessor 'org.greenrobot:eventbus-annotation-processor:3.1.1' + + // 仅在debug包启用BlockCanary进行卡顿监控和提示的话,可以这么用 + debugImplementation 'com.github.markzhai:blockcanary-android:1.5.0' + releaseImplementation 'com.github.markzhai:blockcanary-no-op:1.5.0' + debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.3' + releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.3' + implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1' } diff --git a/MVPModel/app/proguard-rules.pro b/MVPModel/app/proguard-rules.pro index f1b4245..b0d4086 100644 --- a/MVPModel/app/proguard-rules.pro +++ b/MVPModel/app/proguard-rules.pro @@ -19,3 +19,130 @@ # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile + +# 保留枚举类不被混淆 +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +# 保留Annotation不混淆 +-keepattributes *Annotation*,InnerClasses +-dontwarn javax.annotation.** +-dontwarn javax.inject.** + +# 保留R下面的资源 +-keep class **.R$* {*;} + +# 保留本地native方法不被混淆 +-keepclasseswithmembernames class * { + native ; +} + +# 保留我们自定义控件(继承自View)不被混淆 +-keep public class * extends android.view.View{ + *** get*(); + void set*(***); + public (android.content.Context); + public (android.content.Context, android.util.AttributeSet); + public (android.content.Context, android.util.AttributeSet, int); +} + +# 保留Parcelable序列化类不被混淆 +-keep class * implements android.os.Parcelable { + public static final android.os.Parcelable$Creator *; +} + +# 保留Serializable序列化的类不被混淆 +-keepclassmembers class * implements java.io.Serializable { + static final long serialVersionUID; + private static final java.io.ObjectStreamField[] serialPersistentFields; + !static !transient ; + !private ; + !private ; + private void writeObject(java.io.ObjectOutputStream); + private void readObject(java.io.ObjectInputStream); + java.lang.Object writeReplace(); + java.lang.Object readResolve(); +} + +# 对于带有回调函数的onXXEvent、**On*Listener的,不能被混淆 +-keepclassmembers class * { + void *(**On*Event); + void *(**On*Listener); +} + +# webView处理,项目中没有使用到webView忽略即可 +-keepclassmembers class fqcn.of.javascript.interface.for.webview { + public *; +} +-keepclassmembers class * extends android.webkit.webViewClient { + public void *(android.webkit.WebView, java.lang.String, android.graphics.Bitmap); + public boolean *(android.webkit.WebView, java.lang.String); +} +-keepclassmembers class * extends android.webkit.webViewClient { + public void *(android.webkit.webView, jav.lang.String); +} + + +# glide +-keep public class * implements com.bumptech.glide.module.GlideModule +-keep public class * extends com.bumptech.glide.module.AppGlideModule +-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** { + **[] $VALUES; + public *; +} +# for DexGuard only +-keepresourcexmlelements manifest/application/meta-data@value=GlideModule + +# OkHttp3 +-dontwarn okhttp3.logging.** +-keep class okhttp3.internal.**{*;} +-dontwarn okio.** + +# Retrofit +-dontwarn retrofit2.** +-keep class retrofit2.** { *; } +-keepattributes Signature-keepattributes Exceptions + +# RxJava RxAndroid +-dontwarn sun.misc.** +-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { + long producerIndex; + long consumerIndex; +} +-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { + rx.internal.util.atomic.LinkedQueueNode producerNode; +} +-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef { + rx.internal.util.atomic.LinkedQueueNode consumerNode; +} + +# Gson +-keep class com.google.gson.stream.** { *; } +-keepattributes EnclosingMethod +-keep class org.xz_sale.entity.**{*;} + +# ButterKnife +-keep class butterknife.** { *;} +-dontwarn butterknife.internal.** +-keep class **$$ViewBinder { *;} +-keepclasseswithmembernames class * { + @butterknife.* ; +} +-keepclasseswithmembernames class * { + @butterknife.* ; +} + +# EventBus +-keepattributes *Annotation* +-keepclassmembers class * { + @org.greenrobot.eventbus.Subscribe ; +} +-keep enum org.greenrobot.eventbus.ThreadMode { *; } + +# Only required if you use AsyncExecutor +-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent { + (java.lang.Throwable); +} + diff --git a/MVPModel/app/release/app-release.apk b/MVPModel/app/release/app-release.apk new file mode 100644 index 0000000..2e8c1af Binary files /dev/null and b/MVPModel/app/release/app-release.apk differ diff --git a/MVPModel/app/release/output.json b/MVPModel/app/release/output.json new file mode 100644 index 0000000..3bc0dab --- /dev/null +++ b/MVPModel/app/release/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"app-release.apk","properties":{"packageId":"com.gaolei.mvpmodel","split":"","minSdkVersion":"15"}}] \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/JsonUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/JsonUtil.java deleted file mode 100644 index 504dc72..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/JsonUtil.java +++ /dev/null @@ -1,245 +0,0 @@ -package com.gaolei.mvpmodel; - -import com.google.gson.Gson; -import com.google.gson.JsonArray; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import com.google.gson.JsonParseException; -import com.google.gson.JsonParser; -import com.google.gson.reflect.TypeToken; - -import java.lang.reflect.Type; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.Map; -import java.util.Set; - -/** - * JSON字符换和对象间转换的工具类 - */ -public class JsonUtil { - - private static final Gson GSON = new Gson(); - - /** - * 将json字符串转换成相应的对象 - * - * @param jsonString json字符串 - * @param classOfT 对象类型的class - * @param 对象的类型 - * @return 转换后的对象 - * @throws JsonParseException if json is not a valid representation for an object of type classOfT - */ - public static T decode(String jsonString, Class classOfT) throws RuntimeException { - return GSON.fromJson(jsonString, classOfT); - } - - /** - * 将json字符串转换成相应的对象 - * - * @param jsonString json字符串 - * @param typeOfT 对象类型的type - * @param 对象的类型 - * @return 转换后的对象 - * @throws JsonParseException if json is not a valid representation for an object of type typeOfT - */ - public static T decode(String jsonString, Type typeOfT) throws RuntimeException { - return GSON.fromJson(jsonString, typeOfT); - } - - /** - * 将已经从json转换后的对象(通常是一个Map)转换成对应Bean的对象实例 - * - * @param object 一个转json换中的过程对象,通常是一个Map,若传值为null,则返回null - * @param typeOfT 要转换的对象类型的type - * @param 要转换的对象类型 - * @return 转换后的对象 - * @throws JsonParseException if object is not a valid representation for an object of type typeOfT - */ - public static T decode(Object object, Type typeOfT) throws RuntimeException { - String jsonString = GSON.toJson(object); - return GSON.fromJson(jsonString, typeOfT); - } - - /** - * 将一个JavaBean转换成json字符串 - * - * @param object 待转换的对象 - * @return json字符串 - * @throws JsonParseException if there was a problem while parsing object. - */ - public static String encode(Object object) throws RuntimeException { - return GSON.toJson(object); - } - - - /** - * 获取JsonObject - * - * @param json - * @return - */ - public static JsonObject parseJson(String json) { - JsonParser parser = new JsonParser(); - JsonObject jsonObj = parser.parse(json).getAsJsonObject(); - return jsonObj; - } - - /** - * 根据javaBean转json字符串再将字符串转Map对象 - * - * @param object - * @return - */ - public static Map javaBeanToMap(Object object) { - String strJson = encode(object); - return toMap(parseJson(strJson)); - } - - /** - * 将JSONObjec对象转换成Map-List集合 - * - * @param json - * @return - */ - public static Map toMap(JsonObject json) { - Map map = new HashMap(); - Set> entrySet = json.entrySet(); - for (Iterator> iter = entrySet.iterator(); iter.hasNext(); ) { - Map.Entry entry = iter.next(); - String key = entry.getKey(); - Object value = entry.getValue(); - if (value instanceof JsonArray) - map.put((String) key, toList((JsonArray) value)); - else if (value instanceof JsonObject) - map.put((String) key, toMap((JsonObject) value)); - else - map.put((String) key, value); - } - return map; - } - - /** - * 将JSONArray对象转换成List集合 - * - * @param json - * @return - */ - public static List toList(JsonArray json) { - List list = new ArrayList(); - for (int i = 0; i < json.size(); i++) { - Object value = json.get(i); - if (value instanceof JsonArray) { - list.add(toList((JsonArray) value)); - } else if (value instanceof JsonObject) { - list.add(toMap((JsonObject) value)); - } else { - list.add(value); - } - } - return list; - } - - /** - * Json解析公用方法 数组 - * - * @param json 解析参数 - * @param token 解析的类型 new TypeToken(){} - * ArrayList temp = ParserJson.fromJson(data, new TypeToken>(){}); - * @return - */ - public static T fromJson(JsonElement json, TypeToken token) { - try { - Gson gson = new Gson(); - return gson.fromJson(json, token.getType()); - } catch (Exception ex) { - ex.printStackTrace(); - } - return null; - } - - /** - * Json解析公用方法 数组 - * - * @param json 解析参数 - * @param type 解析的类型 new TypeToken(){}.getType() - * ArrayList temp = ParserJson.fromJson(data, new TypeToken>(){}); - * @return - */ - public static T fromJson(JsonElement json, Type type) { - try { - Gson gson = new Gson(); - return gson.fromJson(json, type); - } catch (Exception ex) { - ex.printStackTrace(); - } - return null; - } - - /** - * Json解析公用方法 单个类 - * - * @param json 解析参数 - * @param t 解析的类。 class - * @return - */ - public static T fromJson(JsonElement json, Class t) { - try { - Gson gson = new Gson(); - return gson.fromJson(json, t); - } catch (Exception ex) { - ex.printStackTrace(); - } - return null; - } - - /** - * Json解析公用方法 数组 - * - * @param json 解析参数 - * @param token 解析的类型 new TypeToken(){} - * ArrayList temp = ParserJson.fromJson(data, new TypeToken>(){}); - * @return - */ - public static T fromJson(String json, TypeToken token) { - try { - Gson gson = new Gson(); - return gson.fromJson(json, token.getType()); - } catch (Exception ex) { - ex.printStackTrace(); - } - return null; - } - - /** - * Json解析公用方法 单个类 - * - * @param json 解析参数 - * @param t 解析的类。 class - * @return - */ - public static T fromJson(String json, Class t) { - try { - Gson gson = new Gson(); - return gson.fromJson(json, t); - } catch (Exception ex) { - ex.printStackTrace(); - } - return null; - } - - /** - * 把数据转换成Json结构 - * - * @param mType Object的数据,支持所有类型 - * @return - */ - public static String toJson(Object mType) { - Gson mGson = new Gson(); - String mResult = mGson.toJson(mType); - return mResult; - } -} - diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/MainActivity.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/MainActivity.java index 693eb9f..4bc8bf6 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/MainActivity.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/MainActivity.java @@ -1,29 +1,22 @@ package com.gaolei.mvpmodel; import android.Manifest; -import android.content.Context; -import android.content.Intent; -import android.content.pm.PackageManager; -import android.net.Uri; -import android.os.Build; import android.support.annotation.NonNull; import android.support.design.widget.BottomNavigationView; -import android.support.v4.app.ActivityCompat; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentTransaction; import android.os.Bundle; -import android.support.v4.content.ContextCompat; -import android.support.v7.widget.RecyclerView; import android.view.MenuItem; import android.widget.TextView; -import android.widget.Toast; -import com.gaolei.mvpmodel.activity.BaseActivity; -import com.gaolei.mvpmodel.fragment.BaseMvpFragment; +import com.gaolei.mvpmodel.base.activity.BaseActivity; +import com.gaolei.mvpmodel.base.fragment.BaseMvpFragment; import com.gaolei.mvpmodel.fragment.KnowledgeFragment; import com.gaolei.mvpmodel.fragment.HomeFragment; import com.gaolei.mvpmodel.fragment.NavigationFragment; import com.gaolei.mvpmodel.fragment.ProjectFragment; +import com.gaolei.mvpmodel.base.utils.PermissionUtil; +import com.gaolei.mvpmodel.view.BottomNavigationViewHelper; import java.util.ArrayList; @@ -33,15 +26,12 @@ public class MainActivity extends BaseActivity { private ArrayList mFragments; private int mLastFgIndex = 0; + @BindView(R.id.title) TextView title; - private static final int MY_PERMISSION_REQUEST_CODE = 10000; // BottomNavigationView bottomNavigationView; @BindView(R.id.bottom_navigation_view) BottomNavigationView bottomNavigationView; - String[] permissionArray = new String[]{ - Manifest.permission.READ_EXTERNAL_STORAGE, - Manifest.permission.WRITE_EXTERNAL_STORAGE, - }; + @Override protected int setContentLayout() { @@ -50,20 +40,16 @@ protected int setContentLayout() { @Override protected void initData(Bundle bundle) { + + // 取消BottomNavigation大于3个时,动画 BottomNavigationViewHelper.disableShiftMode(bottomNavigationView); mFragments = new ArrayList(); - title = findViewById(R.id.title); mFragments.add(new HomeFragment()); mFragments.add(new KnowledgeFragment()); mFragments.add(new NavigationFragment()); mFragments.add(new ProjectFragment()); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { - //如果versionCode>=23 则需要动态授权 - checkPermission(); - } else { - switchFragment(0); - } + requestPermission(); bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() { @Override @@ -92,6 +78,7 @@ public boolean onNavigationItemSelected(@NonNull MenuItem item) { return true; } }); + } /** @@ -114,87 +101,27 @@ private void switchFragment(int position) { ft.commitAllowingStateLoss(); } - public void checkPermission() { - /** - * 第 1 步: 检查是否有相应的权限 - */ - boolean isAllGranted = checkPermissionAllGranted( - permissionArray - ); - // 如果这权限全都拥有, 则显示HomeFragment - if (isAllGranted) { - switchFragment(0); - return; - } - - /** - * 第 2 步: 请求权限 - */ - // 一次请求多个权限, 如果其他有权限是已经授予的将会自动忽略掉 - ActivityCompat.requestPermissions( - this, - permissionArray, - MY_PERMISSION_REQUEST_CODE - ); - } - - /** - * 检查是否拥有指定的所有权限 - */ - private boolean checkPermissionAllGranted(String[] permissions) { - for (String permission : permissions) { - if (ContextCompat.checkSelfPermission(this, permission) != PackageManager.PERMISSION_GRANTED) { - // 只要有一个权限没有被授予, 则直接返回 false - return false; - } - } - return true; - } - /** - * 第 3 步: 申请权限结果返回处理 - */ - @Override - public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { - super.onRequestPermissionsResult(requestCode, permissions, grantResults); - - if (requestCode == MY_PERMISSION_REQUEST_CODE) { - boolean isAllGranted = true; - // 判断是否所有的权限都已经授予了 - for (int grant : grantResults) { - if (grant != PackageManager.PERMISSION_GRANTED) { - isAllGranted = false; - break; - } - } - if (isAllGranted) { - // 如果所有的权限都授予了, 则显示HomeFragment + public void requestPermission(){ + requestPermission(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},new PermissionUtil.RequestPermissionCallBack() { + @Override + public void granted() { +// Toast.makeText(MainActivity.this, "获取权限成功,执行正常操作", Toast.LENGTH_LONG).show(); switchFragment(0); - } else { - // 弹出对话框告诉用户需要权限的原因, 并引导用户去应用权限管理中手动打开权限按钮 - getAppDetailSettingIntent(this); - toast("App正常使用需要授权" ); + } + @Override + public void denied() { +// Toast.makeText(MainActivity.this, "获取权限失败,正常功能受到影响", Toast.LENGTH_LONG).show(); } - } + }); } - - public void toast(String content) { - Toast.makeText(getApplicationContext(), content, Toast.LENGTH_SHORT).show(); + public void onRestart(){ + super.onRestart(); + //跳转到设置界面后,重现检查权限 + requestPermission(); } - private void getAppDetailSettingIntent(Context context) { - Intent intent = new Intent(); - intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); - if (Build.VERSION.SDK_INT >= 9) { - intent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS"); - intent.setData(Uri.fromParts("package", getPackageName(), null)); - } else if (Build.VERSION.SDK_INT <= 8) { - intent.setAction(Intent.ACTION_VIEW); - intent.setClassName("com.android.settings", "com.android.settings.InstalledAppDetails"); - intent.putExtra("com.android.settings.ApplicationPkgName", getPackageName()); - } - startActivity(intent); - } + } diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/ArticleDetailActivity.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/ArticleDetailActivity.java index 2e0f81d..f8d941a 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/ArticleDetailActivity.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/ArticleDetailActivity.java @@ -1,25 +1,12 @@ package com.gaolei.mvpmodel.activity; import android.os.Bundle; -import android.support.annotation.NonNull; -import android.support.design.widget.BottomNavigationView; -import android.support.v4.app.Fragment; -import android.support.v4.app.FragmentTransaction; -import android.view.MenuItem; import android.view.View; -import android.widget.TextView; -import com.gaolei.mvpmodel.BottomNavigationViewHelper; import com.gaolei.mvpmodel.R; -import com.gaolei.mvpmodel.fragment.BaseMvpFragment; -import com.gaolei.mvpmodel.fragment.HomeFragment; -import com.gaolei.mvpmodel.fragment.KnowledgeFragment; -import com.gaolei.mvpmodel.fragment.NavigationFragment; -import com.gaolei.mvpmodel.fragment.ProjectFragment; +import com.gaolei.mvpmodel.base.activity.BaseActivity; import com.gaolei.mvpmodel.view.Html5Webview; -import java.util.ArrayList; - import butterknife.BindView; public class ArticleDetailActivity extends BaseActivity { diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/BaseActivity.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/BaseActivity.java deleted file mode 100644 index 803b16a..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/BaseActivity.java +++ /dev/null @@ -1,87 +0,0 @@ -package com.gaolei.mvpmodel.activity; - -import android.graphics.Color; -import android.os.Bundle; -import android.support.annotation.Nullable; -import android.support.v4.app.FragmentActivity; -import android.support.v7.app.AppCompatActivity; -import android.view.LayoutInflater; -import android.view.View; -import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.TextView; - -import com.gaolei.mvpmodel.R; -import com.gaolei.mvpmodel.utils.NetworkUtil; -import com.gaolei.mvpmodel.utils.StatusBarUtil; - -import butterknife.ButterKnife; -import butterknife.Unbinder; - - -/** - * Created by gaolei on 2018/4/26. - */ - -public abstract class BaseActivity extends FragmentActivity implements View.OnClickListener { - private Unbinder mBinder; - ImageView iv_back; - TextView title; - - protected void onCreate(@Nullable Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - LayoutInflater inflater = LayoutInflater.from(this); - setContentView(addContentView(inflater)); - setStatusBarColor(R.color.yellow); - mBinder = ButterKnife.bind(this); - Bundle bundle = getIntent().getExtras(); - if (bundle == null) { - bundle = savedInstanceState; - } - initData(bundle); - - - } - - protected abstract int setContentLayout(); - - protected abstract void initData(Bundle bundle); - - private void initBaseView(View view) { - iv_back = view.findViewById(R.id.iv_back); - title = view.findViewById(R.id.title); - iv_back.setOnClickListener(this); - } - - - public View addContentView(LayoutInflater inflater) { - LinearLayout mParentView = (LinearLayout) inflater.inflate(R.layout.activity_base, null); - View subActivityView = inflater.inflate(setContentLayout(), null); - mParentView.addView(subActivityView); - initBaseView(mParentView); - return mParentView; - } - - /** - * 设置状态栏颜色 - */ - public void setStatusBarColor(int resColor) { - StatusBarUtil.setWindowStatusBarColor(this, resColor, true); - } - - protected void onDestroy() { - super.onDestroy(); - if (mBinder != null) { - mBinder.unbind(); - } - } - - @Override - public void onClick(View v) { - switch (v.getId()) { - case R.id.iv_back: - finish(); - break; - } - } -} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/adapter/ProjectAdapter.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/adapter/ProjectAdapter.java index dfe4984..2ed70b7 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/adapter/ProjectAdapter.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/adapter/ProjectAdapter.java @@ -1,7 +1,6 @@ package com.gaolei.mvpmodel.adapter; import android.content.Context; -import android.media.Image; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.LayoutInflater; @@ -10,13 +9,12 @@ import android.widget.ImageView; import android.widget.TextView; -import com.bumptech.glide.Glide; import com.gaolei.mvpmodel.R; import com.gaolei.mvpmodel.mmodel.ProjectListData.FeedArticleData; +import com.gaolei.mvpmodel.base.thirdframe.glide.ImageLoader; import java.util.List; -import static com.gaolei.mvpmodel.application.CustomApplication.options; public class ProjectAdapter extends RecyclerView.Adapter { @@ -55,10 +53,8 @@ public void onBindViewHolder(MyViewHolder holder, int position) { holder.item_project_list_content_tv.setText(projectInfo.getDesc()); holder.item_project_list_time_tv.setText(projectInfo.getNiceDate()); holder.item_project_list_author_tv.setText(projectInfo.getAuthor()); - Glide.with(context) - .load(projectInfo.getEnvelopePic()) // 图片地址 - .apply(options) // 参数 - .into(holder.item_project_list_iv); // 需要显示的ImageView控件 + ImageLoader.getInstance().load(context,projectInfo.getEnvelopePic(),holder.item_project_list_iv); + } @Override diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/api/ApiService.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/api/ApiService.java new file mode 100644 index 0000000..9e114c1 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/api/ApiService.java @@ -0,0 +1,24 @@ +package com.gaolei.mvpmodel.api; + + +import com.gaolei.mvpmodel.mmodel.BannerListData; +import com.gaolei.mvpmodel.mmodel.ProjectListData; + +import io.reactivex.Observable; +import retrofit2.http.GET; +import retrofit2.http.Path; +import retrofit2.http.Query; + +public interface ApiService { + + + @GET("project/list/{page}/json") + Observable getProjectListData(@Path("page") int page, @Query("cid") int cid); +/* + http://www.wanandroid.com/banner/json + 广告栏数据 +*/ + + @GET("banner/json") + Observable getBannerListData(); +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/application/CustomApplication.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/application/CustomApplication.java index e781e76..04faf64 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/application/CustomApplication.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/application/CustomApplication.java @@ -2,21 +2,92 @@ import android.app.Application; import android.content.Context; +import android.content.pm.PackageInfo; +import android.content.pm.PackageManager; +import android.net.ConnectivityManager; +import android.net.NetworkInfo; +import android.os.Environment; +import android.util.Log; import com.bumptech.glide.load.engine.DiskCacheStrategy; import com.bumptech.glide.request.RequestOptions; +import com.gaolei.mvpmodel.BuildConfig; import com.gaolei.mvpmodel.R; +import com.gaolei.mvpmodel.base.utils.CrashHandler; +import com.github.moduth.blockcanary.BlockCanary; +import com.github.moduth.blockcanary.BlockCanaryContext; +import com.squareup.leakcanary.LeakCanary; + +import java.io.File; public class CustomApplication extends Application { + public static ConnectivityManager connectivityManager; - public static RequestOptions options; + public static Context context; @Override public void onCreate() { super.onCreate(); - options = new RequestOptions() -// .placeholder(R.drawable.ic_launcher)// 正在加载中的图片 -// .error(R.drawable.video_error) // 加载失败的图片 - .diskCacheStrategy(DiskCacheStrategy.ALL); // 磁盘缓存策略 + connectivityManager= (ConnectivityManager) getApplicationContext() + .getSystemService(Context.CONNECTIVITY_SERVICE); + context=this; + + LeakCanary.install(this); + BlockCanary.install(this, new AppContext()).start(); + CrashHandler crashHandler = CrashHandler.getInstance(); + crashHandler.init(getApplicationContext()); + } + public static boolean isNetworkAvalible() { + // 获得网络状态管理器 + + if (connectivityManager == null) { + return false; + } else { + // 建立网络数组 + NetworkInfo[] net_info = connectivityManager.getAllNetworkInfo(); + + if (net_info != null) { + for (int i = 0; i < net_info.length; i++) { + // 判断获得的网络状态是否是处于连接状态 + if (net_info[i].getState() == NetworkInfo.State.CONNECTED) { + return true; + } + } + } + } + return false; + } + public class AppContext extends BlockCanaryContext { + private static final String TAG = "AppContext"; + + @Override + public String provideQualifier() { + String qualifier = ""; + try { + PackageInfo info = getApplicationContext().getPackageManager() + .getPackageInfo(getApplicationContext().getPackageName(), 0); + qualifier += info.versionCode + "_" + info.versionName + "_YYB"; + } catch (PackageManager.NameNotFoundException e) { + Log.e(TAG, "provideQualifier exception", e); + } + return qualifier; + } + + @Override + public int provideBlockThreshold() { + return 1000; + } + + @Override + public boolean displayNotification() { + return BuildConfig.DEBUG; + } + + @Override + public boolean stopWhenDebugging() { + return false; + } } + + } diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/activity/BaseActivity.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/activity/BaseActivity.java new file mode 100644 index 0000000..fa3ef54 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/activity/BaseActivity.java @@ -0,0 +1,158 @@ +package com.gaolei.mvpmodel.base.activity; + +import android.app.Activity; +import android.content.Context; +import android.content.pm.PackageManager; +import android.os.Bundle; +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.support.v4.app.ActivityCompat; +import android.support.v4.app.FragmentActivity; +import android.support.v4.content.ContextCompat; +import android.view.LayoutInflater; +import android.view.View; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; + +import com.gaolei.mvpmodel.R; +import com.gaolei.mvpmodel.base.utils.PermissionUtil; +import com.gaolei.mvpmodel.base.utils.StatusBarUtil; + +import butterknife.ButterKnife; +import butterknife.Unbinder; + +import static com.gaolei.mvpmodel.base.utils.PermissionUtil.PERMISSION_CODE; + + +/** + * Created by gaolei on 2018/4/26. + */ + +public abstract class BaseActivity extends FragmentActivity implements View.OnClickListener { + public PermissionUtil.RequestPermissionCallBack mRequestPermissionCallBack; + + public Unbinder mBinder; + public ImageView iv_back; + public TextView title; + + protected void onCreate(@Nullable Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + LayoutInflater inflater = LayoutInflater.from(this); + setContentView(addContentView(inflater)); + setStatusBarColor(R.color.yellow); + mBinder = ButterKnife.bind(this); + Bundle bundle = getIntent().getExtras(); + if (bundle == null) { + bundle = savedInstanceState; + } + initData(bundle); + + } + + protected abstract int setContentLayout(); + + protected abstract void initData(Bundle bundle); + + private void initBaseView(View view) { + iv_back = view.findViewById(R.id.iv_back); + title = view.findViewById(R.id.title); + iv_back.setOnClickListener(this); + } + + + public View addContentView(LayoutInflater inflater) { + LinearLayout mParentView = (LinearLayout) inflater.inflate(R.layout.activity_base, null); + View subActivityView = inflater.inflate(setContentLayout(), null); + mParentView.addView(subActivityView); + initBaseView(mParentView); + return mParentView; + } + + /** + * 设置状态栏颜色 + */ + public void setStatusBarColor(int resColor) { + StatusBarUtil.setWindowStatusBarColor(this, resColor, true); + } + + protected void onDestroy() { + super.onDestroy(); + if (mBinder != null) { + mBinder.unbind(); + } + } + + @Override + public void onClick(View v) { + switch (v.getId()) { + case R.id.iv_back: + finish(); + break; + } + } + + /** + * 发起权限请求 + * + * @param context + * @param permissions + * @param callback + */ + + public void requestPermission(final Context context, final String[] permissions, + PermissionUtil.RequestPermissionCallBack callback) { + this.mRequestPermissionCallBack = callback; + + //如果所有权限都已授权,则直接返回授权成功,只要有一项未授权,则发起权限请求 + boolean isAllGranted = true; + for (String permission : permissions) { + if (ContextCompat.checkSelfPermission(context, permission) == PackageManager.PERMISSION_DENIED) { + isAllGranted = false; + ActivityCompat.requestPermissions(((Activity) context), permissions, PERMISSION_CODE); + } + } + if (isAllGranted) { + mRequestPermissionCallBack.granted(); + } + } + + /** + * 权限请求结果回调 + * + * @param requestCode + * @param permissions + * @param grantResults + */ + @Override + public void onRequestPermissionsResult(int requestCode, @NonNull final String[] permissions, @NonNull int[] grantResults) { + super.onRequestPermissionsResult(requestCode, permissions, grantResults); + boolean hasAllGranted = true; + + switch (requestCode) { + case PERMISSION_CODE: { + for (int i = 0; i < grantResults.length; ++i) { + if (grantResults[i] == PackageManager.PERMISSION_DENIED) { + hasAllGranted = false; + //在用户已经拒绝授权的情况下,如果shouldShowRequestPermissionRationale返回false则 + // 可以推断出用户选择了“不在提示”选项,在这种情况下需要引导用户至设置页手动授权 + if (!ActivityCompat.shouldShowRequestPermissionRationale(this, permissions[i])) { + PermissionUtil.requestForeverDenyDialog(BaseActivity.this, permissions); + + } else { + PermissionUtil.requestDenyDialog(BaseActivity.this, permissions); + + //用户拒绝权限请求,但未选中“不再提示”选项 + } + mRequestPermissionCallBack.denied(); + return; + } + } + if (hasAllGranted) { + mRequestPermissionCallBack.granted(); + } + } + } + } + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/BaseMvpActivity.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/activity/BaseMvpActivity.java similarity index 70% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/BaseMvpActivity.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/activity/BaseMvpActivity.java index f89fd4b..9e40bc8 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/activity/BaseMvpActivity.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/activity/BaseMvpActivity.java @@ -1,4 +1,4 @@ -package com.gaolei.mvpmodel.activity; +package com.gaolei.mvpmodel.base.activity; import android.os.Bundle; import android.support.annotation.Nullable; @@ -6,11 +6,9 @@ import com.gaolei.mvpmodel.mpresenter.BasePresenter; -/** - * Created by liuhaiyang on 2017/8/2. - */ -public abstract class BaseMvpActivity> extends BaseActivity { + +public abstract class BaseMvpActivity< P extends BasePresenter> extends BaseActivity { public P mPresenter; @@ -18,7 +16,7 @@ public abstract class BaseMvpActivity> extends Bas protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); mPresenter = initPresenter(); - mPresenter.attach((V) this); + mPresenter.attach( this); } @Override diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/BaseFragment.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/fragment/BaseFragment.java similarity index 79% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/BaseFragment.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/fragment/BaseFragment.java index 3b39cf1..fa968a4 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/BaseFragment.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/fragment/BaseFragment.java @@ -1,7 +1,8 @@ -package com.gaolei.mvpmodel.fragment; +package com.gaolei.mvpmodel.base.fragment; import android.os.Bundle; import android.support.v4.app.Fragment; +import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; @@ -11,24 +12,22 @@ import android.widget.RelativeLayout; import com.gaolei.mvpmodel.R; -import com.gaolei.mvpmodel.utils.NetworkUtil; -import com.gaolei.mvpmodel.utils.StatusBarUtil; +import com.gaolei.mvpmodel.base.utils.NetworkUtil; +import com.gaolei.mvpmodel.base.utils.StatusBarUtil; import butterknife.ButterKnife; import butterknife.Unbinder; -/** - * Created by liuhaiyang on 2017/1/2. - */ + public abstract class BaseFragment extends Fragment implements View.OnClickListener { - private FrameLayout mLlContent; - View subFragmentView; - private RelativeLayout mLlLoading; - private Button bt_error_refresh; + public FrameLayout mLlContent; + public View subFragmentView; + public RelativeLayout mLlLoading; + public Button bt_error_refresh; public LinearLayout mErrorPageView; - private Unbinder mBinder; + public Unbinder mBinder; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { @@ -55,8 +54,9 @@ private void initBaseView(View view) { mErrorPageView = view.findViewById(R.id.ll_base_error_content); bt_error_refresh = view.findViewById(R.id.bt_error_refresh); mLlLoading = view.findViewById(R.id.ll_loading); - if (!NetworkUtil.isNetworkAvailable(getActivity())) - mErrorPageView.setVisibility(View.VISIBLE); + Log.d("gaolei","network:"+NetworkUtil.isNetworkAvailable(getActivity())); +// if (!NetworkUtil.isNetworkAvailable(getActivity())) +// showErrorPage(true); bt_error_refresh.setOnClickListener(this); } @@ -93,7 +93,7 @@ public void setLoading(boolean isShow) { * @param isShow */ public void showErrorPage(boolean isShow) { -// mErrorPageView.setVisibility(isShow ? View.VISIBLE : View.GONE); + mErrorPageView.setVisibility(isShow ? View.VISIBLE : View.GONE); } @Override @@ -107,12 +107,6 @@ public void onClick(View v) { } } - /** - * 设置状态栏颜色 - */ - public void setStatusBarColor(int resColor) { - StatusBarUtil.setWindowStatusBarColor(getActivity(), resColor, true); - } public void onDestroyView() { super.onDestroyView(); if (mBinder != null) { diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/BaseMvpFragment.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/fragment/BaseMvpFragment.java similarity index 74% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/BaseMvpFragment.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/fragment/BaseMvpFragment.java index c5a0d31..95f49ef 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/BaseMvpFragment.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/fragment/BaseMvpFragment.java @@ -1,8 +1,7 @@ -package com.gaolei.mvpmodel.fragment; +package com.gaolei.mvpmodel.base.fragment; import android.os.Bundle; import android.support.annotation.Nullable; -import android.support.v4.app.Fragment; import com.gaolei.mvpmodel.mpresenter.BasePresenter; @@ -11,7 +10,7 @@ */ -public abstract class BaseMvpFragment> extends BaseFragment { +public abstract class BaseMvpFragment

extends BaseFragment { public P mPresenter; @@ -22,7 +21,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) { mPresenter = initPresenter(); if (mPresenter != null) - mPresenter.attach((V) this); + mPresenter.attach(this); } @Override diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/glide/ImageLoader.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/glide/ImageLoader.java new file mode 100644 index 0000000..2c606da --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/glide/ImageLoader.java @@ -0,0 +1,42 @@ +package com.gaolei.mvpmodel.base.thirdframe.glide; + +import android.content.Context; +import android.widget.ImageView; + +import com.bumptech.glide.load.engine.DiskCacheStrategy; +import com.bumptech.glide.load.resource.drawable.DrawableTransitionOptions; +import com.bumptech.glide.request.RequestOptions; + + +public class ImageLoader { + public static ImageLoader instance; + public static RequestOptions options; + + private ImageLoader() { + } + + public static ImageLoader getInstance() { + if (instance == null) { + instance = new ImageLoader(); + options = new RequestOptions() +// .placeholder(R.drawable.ic_launcher)// 正在加载中的图片 +// .error(R.drawable.video_error) // 加载失败的图片 + .diskCacheStrategy(DiskCacheStrategy.ALL); // 磁盘缓存策略 + + } + return instance; + } + + /** + * 使用Glide加载圆形ImageView(如头像)时,不要使用占位图 + * + * @param context context + * @param url image url + * @param iv imageView + */ + public void load(Context context, String url, ImageView iv) { + + GlideApp.with(context).load(url).apply(options).transition(new DrawableTransitionOptions().crossFade(500)) + .into(iv); + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/glide/MyAppGlideModule.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/glide/MyAppGlideModule.java new file mode 100644 index 0000000..c708824 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/glide/MyAppGlideModule.java @@ -0,0 +1,58 @@ +package com.gaolei.mvpmodel.base.thirdframe.glide; + +import android.content.Context; +import android.os.Environment; +import android.support.annotation.NonNull; + +import com.bumptech.glide.Glide; +import com.bumptech.glide.GlideBuilder; +import com.bumptech.glide.Registry; +import com.bumptech.glide.annotation.GlideModule; +import com.bumptech.glide.load.engine.bitmap_recycle.LruBitmapPool; +import com.bumptech.glide.load.engine.cache.DiskLruCacheFactory; +import com.bumptech.glide.load.engine.cache.LruResourceCache; +import com.bumptech.glide.module.AppGlideModule; + +import java.io.File; + +@GlideModule +public final class MyAppGlideModule extends AppGlideModule { + + private String cacheDir; + + @Override + public boolean isManifestParsingEnabled() { +// return super.isManifestParsingEnabled(); + return false; + } + + @Override + public void applyOptions(@NonNull Context context, @NonNull GlideBuilder builder) { + +// cacheDir=Environment.getExternalStorageDirectory().getPath()+"/"+context.getPackageName()+"/glide_cache"; +// cacheDir=context.getExternalCacheDir().getAbsolutePath()+"/glide_cache"; + cacheDir = context.getExternalFilesDir("glide_cache").getAbsolutePath(); + + int diskCacheSizeBytes = 1024 * 1024 * 100; // 100 MB + builder.setDiskCache( + new DiskLruCacheFactory(cacheDir, diskCacheSizeBytes) + ); + int maxMemory = (int) Runtime.getRuntime().maxMemory();//获取系统分配给应用的总内存大小 + int memoryCacheSize = maxMemory / 8;//设置图片内存缓存占用八分之一 + //设置内存缓存大小 + builder.setMemoryCache(new LruResourceCache(memoryCacheSize)); + //设置BitmapPool缓存内存大小 + builder.setBitmapPool(new LruBitmapPool(memoryCacheSize)); + + } + + private String getStorageDirectory(Context context) { + return Environment.getExternalStorageDirectory().getPath() + "/" + context.getPackageName(); + } + + @Override + public void registerComponents(@NonNull Context context, @NonNull Glide glide, @NonNull Registry registry) { + super.registerComponents(context, glide, registry); + } +} + diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/RetrofitProvider.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/RetrofitProvider.java new file mode 100644 index 0000000..4875684 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/RetrofitProvider.java @@ -0,0 +1,93 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit; + + +import android.os.Environment; + +import com.franmontiel.persistentcookiejar.PersistentCookieJar; +import com.franmontiel.persistentcookiejar.cache.SetCookieCache; +import com.franmontiel.persistentcookiejar.persistence.SharedPrefsCookiePersistor; +import com.gaolei.mvpmodel.api.ApiService; +import com.gaolei.mvpmodel.application.CustomApplication; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.GzipRequestInterceptor; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.HttpLoggingInterceptor; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.OfflineCacheInterceptor; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.OnlineCacheInterceptor; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.RetryIntercepter; + +import java.io.File; +import java.util.concurrent.TimeUnit; + +import okhttp3.Cache; +import okhttp3.OkHttpClient; +import retrofit2.Retrofit; +import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory; +import retrofit2.converter.gson.GsonConverterFactory; + + +public final class RetrofitProvider { + + private Retrofit mRetrofit; + private OkHttpClient mOkHttpClient; + private static volatile RetrofitProvider sInstance; + private ApiService restService; + private String cacheDir; + public final String BASE_URL = "http://www.wanandroid.com/"; + + private RetrofitProvider() { + } + + + public RetrofitProvider builder() { + + if (mOkHttpClient == null) { +// cacheDir= Environment.getExternalStorageDirectory().getPath()+"/"+CustomApplication.context.getPackageName()+"/net_cache"; + cacheDir = CustomApplication.context.getExternalFilesDir("net_cache").getAbsolutePath(); + + mOkHttpClient = new OkHttpClient.Builder() + .addNetworkInterceptor(new HttpLoggingInterceptor()) + .addNetworkInterceptor(new OnlineCacheInterceptor())//有网缓存拦截器 + .addInterceptor(new OfflineCacheInterceptor())//无网缓存拦截器 + .cache(new Cache(new File(cacheDir), 50 * 10240 * 1024))//缓存路径和空间设置 + .addInterceptor(new RetryIntercepter(4))//重试 + .addInterceptor(new GzipRequestInterceptor())//开启Gzip压缩 + +// .addInterceptor(new DefaultHeaderInterceptor())//请求连接中添加头信息 +// .addInterceptor(new ProgressInterceptor())//请求url的进度 +// .addInterceptor(new TokenInterceptor())//token过期,自动刷新Token +// .addInterceptor(new SignInterceptor())//所有的接口,默认需要带上sign,timestamp2个参数 +// .addNetworkInterceptor(new ParamsEncryptInterceptor())//参数加密,一般针对表单中的字段和值进行加密,防止中途第三方进行窥探和篡改 +.cookieJar(new PersistentCookieJar(new SetCookieCache(), new SharedPrefsCookiePersistor(CustomApplication.context))) + .connectTimeout(5, TimeUnit.SECONDS) + .readTimeout(5, TimeUnit.SECONDS) + .writeTimeout(5, TimeUnit.SECONDS) + .build(); + + } + if (mRetrofit == null) { + mRetrofit = new Retrofit.Builder() + .client(mOkHttpClient) + .baseUrl(com.gaolei.mvpmodel.base.thirdframe.retrofit.UrlConfig.BASE_URL) + .addConverterFactory(GsonConverterFactory.create()) + .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) + .build(); + } + return sInstance; + } + + public static RetrofitProvider getInstance() { + if (sInstance == null) { + synchronized (RetrofitProvider.class) { + if (sInstance == null) { + sInstance = new RetrofitProvider(); + } + } + } + return sInstance; + } + + public ApiService getApiService() { + if (restService == null) + restService = mRetrofit.create(ApiService.class); + return restService; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/UrlConfig.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/UrlConfig.java similarity index 71% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/UrlConfig.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/UrlConfig.java index 1d66eb5..ac276e4 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/UrlConfig.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/UrlConfig.java @@ -1,8 +1,6 @@ -package com.gaolei.mvpmodel.net; +package com.gaolei.mvpmodel.base.thirdframe.retrofit; -import retrofit2.http.GET; - /** * Created by liuhaiyang on 2017/8/9. */ diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/DefaultHeaderInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/DefaultHeaderInterceptor.java new file mode 100644 index 0000000..3d01fc1 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/DefaultHeaderInterceptor.java @@ -0,0 +1,23 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import java.io.IOException; + +import okhttp3.Headers; +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; + +public class DefaultHeaderInterceptor implements Interceptor { + + @Override + public Response intercept(Chain chain) throws IOException { + Request originalrequest = chain.request();//原始request + Headers headers = new Headers.Builder() + .add("name", "jason") + .add("age", "27") + .add("token", "dfedsdfsdfffdd12dsef123sdfef1s2dfe") + .build();//构造一个Headers + Request request = originalrequest.newBuilder().headers(headers).build();//注意这行代码别写错了 + return chain.proceed(request); + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/GzipRequestInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/GzipRequestInterceptor.java new file mode 100644 index 0000000..607d009 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/GzipRequestInterceptor.java @@ -0,0 +1,48 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; /** This interceptor compresses the HTTP request body. Many webservers can't handle this! */ + +import java.io.IOException; + +import okhttp3.Interceptor; +import okhttp3.MediaType; +import okhttp3.Request; +import okhttp3.RequestBody; +import okhttp3.Response; +import okio.BufferedSink; +import okio.GzipSink; +import okio.Okio; + +/** + * 我们在向服务器提交大量数据的时候,希望对post的数据进行gzip压缩 + * 这个拦截器压缩了请求实体. 很多网络服务器无法处理它 */ +public class GzipRequestInterceptor implements Interceptor { + @Override public Response intercept(Interceptor.Chain chain) throws IOException { + Request originalRequest = chain.request(); + if (originalRequest.body() == null || originalRequest.header("Content-Encoding") != null) { + return chain.proceed(originalRequest); + } + + Request compressedRequest = originalRequest.newBuilder() + .header("Content-Encoding", "gzip") + .method(originalRequest.method(), gzip(originalRequest.body())) + .build(); + return chain.proceed(compressedRequest); + } + + private RequestBody gzip(final RequestBody body) { + return new RequestBody() { + @Override public MediaType contentType() { + return body.contentType(); + } + + @Override public long contentLength() { + return -1; // We don't know the compressed length in advance! + } + + @Override public void writeTo(BufferedSink sink) throws IOException { + BufferedSink gzipSink = Okio.buffer(new GzipSink(sink)); + body.writeTo(gzipSink); + gzipSink.close(); + } + }; + } +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/HttpLoggingInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/HttpLoggingInterceptor.java new file mode 100644 index 0000000..77ceea3 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/HttpLoggingInterceptor.java @@ -0,0 +1,42 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import android.util.Log; + + +import java.io.IOException; + +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; +import okhttp3.ResponseBody; + + +public class HttpLoggingInterceptor implements Interceptor { + public Response intercept(Interceptor.Chain chain) throws IOException { + //这个chain里面包含了request和response,所以你要什么都可以从这里拿 + Request request = chain.request(); + + long t1 = System.nanoTime();//请求发起的时间 + Log.d("gaolei",String.format("发送请求 %s on %s%n%s", + request.url(), chain.connection(), request.headers())); + + Response response = chain.proceed(request); + + long t2 = System.nanoTime();//收到响应的时间 + + //这里不能直接使用response.body().string()的方式输出日志 + //因为response.body().string()之后,response中的流会被关闭,程序会报错,我们需要创建出一 + //个新的response给应用层处理 + ResponseBody responseBody = response.peekBody(1024 * 1024); + + Log.d("gaolei",String.format("接收响应: [%s] %n返回json:【%s】 %.1fms%n%s", + response.request().url(), + responseBody.string(), + (t2 - t1) / 1e6d, + response.headers())); + + return response; + } +} + + diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/OfflineCacheInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/OfflineCacheInterceptor.java new file mode 100644 index 0000000..1b7250b --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/OfflineCacheInterceptor.java @@ -0,0 +1,38 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import android.util.Log; + +import com.gaolei.mvpmodel.application.CustomApplication; +import com.gaolei.mvpmodel.base.utils.NetworkUtil; + +import java.io.IOException; + +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; + +public class OfflineCacheInterceptor implements Interceptor { + @Override + public Response intercept(Chain chain) throws IOException { + Request request = chain.request(); + if (!NetworkUtil.isNetworkAvailable(CustomApplication.context)) { + int offlineCacheTime = Integer.MAX_VALUE;//离线的时候的缓存的过期时间 + request = request.newBuilder() +// .cacheControl(new CacheControl +// .Builder() +// .maxStale(60, TimeUnit.SECONDS) +// .onlyIfCached() +// .build() +// ) +// 两种方式结果是一样的,写法不同 + .header("Cache-Control", "public, only-if-cached, max-stale=" + offlineCacheTime) + .build(); + } + Response response = chain.proceed(request); + Log.d("gaolei","OfflineCacheInterceptor------------response.code():"+response.code()); + if (response.code() == 504) { + // 缓存已经不可使用 + } + return response; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/OnlineCacheInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/OnlineCacheInterceptor.java new file mode 100644 index 0000000..39c2fa0 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/OnlineCacheInterceptor.java @@ -0,0 +1,25 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import android.util.Log; + +import java.io.IOException; + +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; + +public class OnlineCacheInterceptor implements Interceptor { + @Override + public Response intercept(Chain chain) throws IOException { + Request request = chain.request(); + Response response = chain.proceed(request); + int onlineCacheTime = 10;//在线的时候的缓存过期时间,如果想要不缓存,直接时间设置为0 + Response newResponse = response.newBuilder() + .header("Cache-Control", "public, max-age=" + onlineCacheTime) + .removeHeader("Pragma") + .build(); + Log.d("gaolei","OnlineCacheInterceptor------------newResponse.code():"+newResponse.code()); + + return newResponse; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/ParamsEncryptInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/ParamsEncryptInterceptor.java new file mode 100644 index 0000000..ae6c991 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/ParamsEncryptInterceptor.java @@ -0,0 +1,100 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import android.util.Base64; +import android.util.Log; + +import java.io.IOException; +import java.security.NoSuchAlgorithmException; +import java.security.SecureRandom; +import java.security.spec.InvalidKeySpecException; + +import javax.crypto.Cipher; +import javax.crypto.KeyGenerator; +import javax.crypto.SecretKey; +import javax.crypto.spec.SecretKeySpec; + +import okhttp3.Interceptor; +import okhttp3.MediaType; +import okhttp3.Request; +import okhttp3.RequestBody; +import okhttp3.Response; +import okio.Buffer; + +public class ParamsEncryptInterceptor implements Interceptor { + + private static final String TAG = ParamsEncryptInterceptor.class.getSimpleName(); + + private static final boolean DEBUG = true; + + @Override + public Response intercept(Chain chain) throws IOException { + + + Request request = chain.request(); + try { + RequestBody oldBody = request.body(); + Buffer buffer = new Buffer(); + oldBody.writeTo(buffer); + String strOldBody = buffer.readUtf8(); + MediaType mediaType = MediaType.parse("text/plain; charset=utf-8"); + //在发动报文前,用Base64和AES对参数进行加密转码 + String strNewBody = encryptDataWithSymmetricKey(generateSymmetric(), strOldBody); + RequestBody body = RequestBody.create(mediaType, strNewBody); + request = request.newBuilder().header("Content-Type", body.contentType().toString()) + .header("Content-Length", String.valueOf(body.contentLength())).method(request.method(), body).build(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + } catch (InvalidKeySpecException e) { + e.printStackTrace(); + } + return chain.proceed(request); +} + + //加密算法自己和服务端约定即可 + private static String encrypt(String str){ + //your code + return ""; + } + + //生成了对称密钥 + public static SecretKeySpec generateSymmetric() { + // Set up secret key spec for 128-bit AES encryption and decryption + SecretKeySpec sks = null; + try { + SecureRandom sr = SecureRandom.getInstance("SHA1PRNG"); + sr.setSeed("any data used as random seed".getBytes()); + KeyGenerator kg = KeyGenerator.getInstance("AES"); + kg.init(128, sr); + SecretKey secretKey=kg.generateKey(); + //在这里可以用从服务端获取到的RSA公钥对刚才随机产生的加密密钥secretKey进行加密 + sks = new SecretKeySpec(secretKey.getEncoded(), "AES"); + + System.out.println("AES KEY: " + sks); + } catch (Exception e) { + Log.e(TAG, "AES secret key spec error"); + } + return sks; + } + +//用SecretKeySpec加密数据 + private static String encryptDataWithSymmetricKey (SecretKeySpec symmKey, String data) throws IOException, NoSuchAlgorithmException, InvalidKeySpecException { + + // encryption + byte[] toBeCiphred = data.getBytes("UTF-8"); + String encryptedData = null; + + try { + Cipher c = Cipher.getInstance("AES"); + c.init(Cipher.ENCRYPT_MODE, symmKey); + byte[] encodedBytes = c.doFinal(toBeCiphred); + System.out.println("BYTE STRING (ASYMM): " + encodedBytes); + //将SecretKeySpec转换为Base64字符串格式 + encryptedData = Base64.encodeToString(encodedBytes, Base64.DEFAULT); + + } catch (Exception e) { + Log.e(TAG, "AES encryption error"); + throw new RuntimeException(e); + } + return encryptedData; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/ProgressInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/ProgressInterceptor.java new file mode 100644 index 0000000..c000552 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/ProgressInterceptor.java @@ -0,0 +1,41 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.util.ProgressListener; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.util.ProgressResponseBody; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; + +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; +import okhttp3.ResponseBody; + +/** + * @author guolin + * @since 2017/11/5 + */ +public class ProgressInterceptor implements Interceptor { + + public static final Map LISTENER_MAP = new HashMap<>(); + + public static void addListener(String url, ProgressListener listener) { + LISTENER_MAP.put(url, listener); + } + + public static void removeListener(String url) { + LISTENER_MAP.remove(url); + } + + @Override + public Response intercept(Chain chain) throws IOException { + Request request = chain.request(); + Response response = chain.proceed(request); + String url = request.url().toString(); + ResponseBody body = response.body(); + Response newResponse = response.newBuilder().body(new ProgressResponseBody(url, body)).build(); + return newResponse; + } + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/RetryIntercepter.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/RetryIntercepter.java new file mode 100644 index 0000000..f6f1c83 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/RetryIntercepter.java @@ -0,0 +1,30 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import java.io.IOException; + +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; + +public class RetryIntercepter implements Interceptor { + + public int maxRetry;//最大重试次数 + private int retryNum = 0;//假如设置为3次重试的话,则最大可能请求4次(默认1次+3次重试) + + public RetryIntercepter(int maxRetry) { + this.maxRetry = maxRetry; + } + + @Override + public Response intercept(Chain chain) throws IOException { + Request request = chain.request(); + System.out.println("retryNum=" + retryNum); + Response response = chain.proceed(request); + while (!response.isSuccessful() && retryNum < maxRetry) { + retryNum++; + System.out.println("retryNum=" + retryNum); + response = chain.proceed(request); + } + return response; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/SignInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/SignInterceptor.java new file mode 100644 index 0000000..e29862d --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/SignInterceptor.java @@ -0,0 +1,163 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import android.content.Context; +import android.support.v4.util.ArrayMap; +import android.util.Log; +import android.util.Pair; + +import com.gaolei.mvpmodel.BuildConfig; +import com.gaolei.mvpmodel.base.utils.LogUtil; +import com.gaolei.mvpmodel.base.utils.Utils; + +import org.json.JSONException; +import org.json.JSONObject; + +import java.io.IOException; +import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.Iterator; +import java.util.List; + +import okhttp3.FormBody; +import okhttp3.Interceptor; +import okhttp3.MediaType; +import okhttp3.Request; +import okhttp3.RequestBody; +import okhttp3.Response; +import okio.Buffer; + +/** + * Created by liuhaiyang on 2017/8/9. + * 加密sign + */ + +public final class SignInterceptor implements Interceptor { + + private static final String MD5KEY = "base64:FgBvWS7+m3BPRnKemuoOwXEf7kvldmM+VOmJS5Iccxs="; + private Context mContext; + + public SignInterceptor() { + } + + @Override + public Response intercept(Chain chain) throws IOException { + + Request request = chain.request(); + + //header add version + Request.Builder requestBuilder = request.newBuilder(); + requestBuilder.addHeader("version", BuildConfig.VERSION_NAME); + requestBuilder.addHeader("platform", "ANDROID"); + + if (!request.method().equals("POST")) { + return chain.proceed(request); + } + + JSONObject bodyJson = null; + List> params = new ArrayList<>(); + ArrayMap arrayMap = new ArrayMap<>(); + + FormBody body = null; + try { + body = (FormBody) request.body(); + } catch (ClassCastException c) { + } + + if (body != null) { + + int size = body.size(); + if (size > 0) { + for (int i = 0; i < size; i++) { + params.add(new Pair<>(body.name(i), body.value(i))); + } + } + } else { + RequestBody requestBody = request.body(); + + if (requestBody != null) { + Buffer buffer = new Buffer(); + requestBody.writeTo(buffer); + Charset charset = Charset.forName("UTF-8"); + MediaType contentType = requestBody.contentType(); + if (contentType != null) { + charset = contentType.charset(charset); + } + String paramsStr = buffer.readString(charset); + if (BuildConfig.DEBUG) { + Log.i("HTTP", "request = " + paramsStr); + } + + try { + bodyJson = new JSONObject(paramsStr); + } catch (JSONException e) { + LogUtil.e("JSON", "JsonObject err"); + } + + if (bodyJson != null) { + Iterator it = bodyJson.keys(); + while (it.hasNext()) { + String key = it.next(); + Object value = null; + try { + value = bodyJson.get(key); + } catch (JSONException e) { + LogUtil.e("JSON", "JsonObject get err"); + } + if (key.equals("token")) { + arrayMap.put("token", String.valueOf(value)); + arrayMap.put("timestamp", String.valueOf(System.currentTimeMillis() / 1000)); + + for (String strKey : arrayMap.keySet()) { + params.add(new Pair<>(strKey, arrayMap.get(strKey))); + } + } else { + params.add(new Pair<>(key, String.valueOf(value))); + } + + } + } + + } + } + + params.add(new Pair<>("MD5Key", MD5KEY)); + Collections.sort(params, new Comparator>() { + @Override + public int compare(Pair lhs, Pair rhs) { + return lhs.second.compareTo(rhs.second); + } + }); + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < params.size(); i++) { + sb.append(params.get(i).second); + if (i < params.size() - 1) { + sb.append(""); + } + } + + String sign = Utils.md5Encode(sb.toString()); + params.add(new Pair<>("sign", sign)); + + for (Pair pair : params) { + if ((arrayMap.containsKey(pair.first) || pair.first.equals("sign")) && bodyJson != null) { + try { + bodyJson.put(pair.first, pair.second); + } catch (JSONException e) { + LogUtil.e("JSON", "JsonObject put err"); + } + } + } + + String postBodyString = bodyJson.toString(); + request = requestBuilder + .post(RequestBody.create(MediaType.parse("application/json;charset=UTF-8"), + postBodyString)) + .build(); + + return chain.proceed(request); + } + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/TokenInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/TokenInterceptor.java new file mode 100644 index 0000000..18922c4 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/TokenInterceptor.java @@ -0,0 +1,70 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import com.gaolei.mvpmodel.base.utils.LogUtil; + +import java.io.IOException; + +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; + +public class TokenInterceptor implements Interceptor { + + String TAG=getClass()+""; + @Override + public Response intercept(Chain chain) throws IOException { + Request request = chain.request(); + Response response = chain.proceed(request); + LogUtil.d(TAG,response.code()+""); + + if (isTokenExpired(response)) {//根据和服务端的约定判断token过期 + LogUtil.d(TAG,"静默自动刷新Token,然后重新请求数据"); + //同步请求方式,获取最新的Token + String newSession = getNewToken(); + //使用新的Token,创建新的请求 + Request newRequest = chain.request() + .newBuilder() + .header("Cookie", "JSESSIONID=" + newSession) + .build(); + //重新请求 + return chain.proceed(newRequest); + } + return response; + } + + /** + * 根据Response,判断Token是否失效 + * + * @param response + * @return + */ + private boolean isTokenExpired(Response response) { + if (response.code() == 404) { + return true; + } + return false; + } + + /** + * 同步请求方式,获取最新的Token + * + * @return + */ + private String getNewToken() throws IOException { + // 通过一个特定的接口获取新的token,此处要用到同步的retrofit请求 +// Response_Login loginInfo = CacheManager.restoreLoginInfo(BaseApplication.getContext()); +// String username = loginInfo.getUserName(); +// String password = loginInfo.getPassword(); +// +// LogUtil.print("loginInfo=" + loginInfo.toString()); +// Call call = WebHelper.getSyncInterface().synclogin(new Request_Login(username, password)); +// loginInfo = call.execute().body(); +// LogUtil.print("loginInfo=" + loginInfo.toString()); +// +// loginInfo.setPassword(password); +// CacheManager.saveLoginInfo(loginInfo); +// return loginInfo.getSession(); +// } + return ""; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/UrlResetInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/UrlResetInterceptor.java new file mode 100644 index 0000000..3252c88 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/UrlResetInterceptor.java @@ -0,0 +1,47 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor; + +import java.io.IOException; + +import okhttp3.HttpUrl; +import okhttp3.Interceptor; +import okhttp3.Request; +import okhttp3.Response; + +/* +实际的开发过程中,我们在网络请求中会添加一些公共参数,对于一些可变的公共参数,在缓存数据和访问缓存数据的 +过程中需要删除,比如网络类型,有网络时其值为Wifi或4G等,无网络时可能为none, 这时访问缓存时就会因url不一致导致访问缓存失败 +*/ + +public class UrlResetInterceptor implements Interceptor { + @Override + public Response intercept(Chain chain) throws IOException { + + + Response response = chain.proceed(chain.request()); + HttpUrl newUrl = chain.request().url().newBuilder() + .removeAllQueryParameters("network") + .build(); // 缓存数据前删除可变的公共参数 + Request newRequest = chain.request().newBuilder() + .url(newUrl) + .build(); + return response.newBuilder() + .request(newRequest) + .removeHeader("Pragma") + .header("Cache-Control", "public, max-age=" + 1) + .build(); + + +// Request request = chain.request(); +// HttpUrl url = request.url(); +// String s = url.url().toString(); +// //———请求之前—– +// Response response = null; +// //如果Url中没有包含androidxx关键字,则修改请求链接为http://www.androidxx.cn +// if (s.contains("androidxx")) { +// request = request.newBuilder().url("http://www.androidxx.cn").build(); +// } +// response = chain.proceed(request); +// //———请求之后———— +// return response; + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/util/ProgressListener.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/util/ProgressListener.java new file mode 100644 index 0000000..7cabca6 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/util/ProgressListener.java @@ -0,0 +1,16 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.util; + +/** + * @author guolin + * @since 2017/11/5 + */ +public interface ProgressListener { + + /** + * 当下载进度发生变化时,会回调此方法。 + * @param progress + * 当前的下载进度,参数值的范围是0-100。 + */ + void onProgress(int progress); + +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/util/ProgressResponseBody.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/util/ProgressResponseBody.java new file mode 100644 index 0000000..0748928 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/retrofit/interceptor/util/ProgressResponseBody.java @@ -0,0 +1,86 @@ +package com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.util; + +import android.util.Log; + +import com.gaolei.mvpmodel.base.thirdframe.retrofit.interceptor.ProgressInterceptor; + +import java.io.IOException; + +import okhttp3.MediaType; +import okhttp3.ResponseBody; +import okio.Buffer; +import okio.BufferedSource; +import okio.ForwardingSource; +import okio.Okio; +import okio.Source; + +/** + * @author guolin + * @since 2017/11/5 + */ +public class ProgressResponseBody extends ResponseBody { + + private static final String TAG = "ProgressResponseBody"; + + private BufferedSource bufferedSource; + + private ResponseBody responseBody; + + private ProgressListener listener; + + public ProgressResponseBody(String url, ResponseBody responseBody) { + this.responseBody = responseBody; + listener = ProgressInterceptor.LISTENER_MAP.get(url); + } + + @Override + public MediaType contentType() { + return responseBody.contentType(); + } + + @Override + public long contentLength() { + return responseBody.contentLength(); + } + + @Override + public BufferedSource source() { + if (bufferedSource == null) { + bufferedSource = Okio.buffer(new ProgressSource(responseBody.source())); + } + return bufferedSource; + } + + private class ProgressSource extends ForwardingSource { + + long totalBytesRead = 0; + + int currentProgress; + + ProgressSource(Source source) { + super(source); + } + + @Override + public long read(Buffer sink, long byteCount) throws IOException { + long bytesRead = super.read(sink, byteCount); + long fullLength = responseBody.contentLength(); + if (bytesRead == -1) { + totalBytesRead = fullLength; + } else { + totalBytesRead += bytesRead; + } + int progress = (int) (100f * totalBytesRead / fullLength); + Log.d(TAG, "download progress is " + progress); + if (listener != null && progress != currentProgress) { + listener.onProgress(progress); + } + if (listener != null && totalBytesRead == fullLength) { + listener = null; + } + currentProgress = progress; + return bytesRead; + } + } + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/rxjava/BaseObserver.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/rxjava/BaseObserver.java new file mode 100644 index 0000000..b3e0a45 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/thirdframe/rxjava/BaseObserver.java @@ -0,0 +1,63 @@ +package com.gaolei.mvpmodel.base.thirdframe.rxjava; + +import android.app.Dialog; +import android.content.Context; + +import com.gaolei.mvpmodel.application.CustomApplication; +import com.gaolei.mvpmodel.mview.BaseView; +import com.gaolei.mvpmodel.base.utils.Utils; +import com.gaolei.mvpmodel.view.CustomProgressDialog; + +import java.io.IOException; + +import io.reactivex.observers.ResourceObserver; +import retrofit2.HttpException; + +public abstract class BaseObserver extends ResourceObserver { + + protected String errMsg = ""; + private boolean isShowError = true; + private Context context; + Dialog prgressDialog; + + protected BaseObserver(Context context){ + this.context=context; + prgressDialog= CustomProgressDialog.createLoadingDialog(context); + prgressDialog.setCancelable(true);//允许返回 + prgressDialog.show();//显示 + } + protected BaseObserver(BaseView view, boolean isShowError){ + this.isShowError = isShowError; + } + + + + @Override + public void onNext(T t) { + + } + + @Override + public void onError(Throwable e) { + prgressDialog.cancel(); + if (!CustomApplication.isNetworkAvalible()) { + errMsg = "网络连接出错,请检查网络"; + + } else if (e instanceof HttpException) { + errMsg = "服务器访问异常(HttpException)"; + } else if (e instanceof IOException) { + errMsg = "服务器访问异常(IOException)"; + } + if (isShowError) { +// mView.showErrorMsg(errMsg); + Utils.showToast(errMsg); + } + + } + + @Override + public void onComplete() { + prgressDialog.cancel(); + } + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/CrashHandler.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/CrashHandler.java new file mode 100644 index 0000000..a8dc4b9 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/CrashHandler.java @@ -0,0 +1,163 @@ +package com.gaolei.mvpmodel.base.utils; + +import android.app.AlarmManager; +import android.app.PendingIntent; +import android.content.Context; +import android.content.Intent; +import android.content.pm.PackageInfo; +import android.content.pm.PackageManager; +import android.os.Environment; +import android.os.Looper; +import android.view.Gravity; +import android.widget.Toast; + +import com.gaolei.mvpmodel.MainActivity; +import com.gaolei.mvpmodel.application.CustomApplication; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.PrintWriter; +import java.io.StringWriter; +import java.io.Writer; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.LinkedHashMap; +import java.util.Map; + +public class CrashHandler implements Thread.UncaughtExceptionHandler { + /** + * 系统默认的异常处理类 + */ + private Thread.UncaughtExceptionHandler mDefaultHandler; + Context mcontext; + private static CrashHandler INSTANCE = new CrashHandler(); + String errorSavePath; + //用来存储设备信息和异常信息 + private Map infos = new LinkedHashMap(); + + public static CrashHandler getInstance() { + return INSTANCE; + } + + public void init(Context context) { + mcontext = context; + mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler();// 获取默认的异常处理类 + Thread.setDefaultUncaughtExceptionHandler(this);// 设置当前处理类为默认的异常处理类 + } + + @Override + public void uncaughtException(Thread thread, Throwable ex) { + if (!handleException(ex) && mDefaultHandler != null) { + mDefaultHandler.uncaughtException(thread, ex);// 如果未处理异常,那么系统默认的异常处理类处理 + } else { + try { + Thread.sleep(1500); + } catch (Exception e) { + // TODO: handle exception + } + + + + //崩溃后,重启应用 + Intent intent = new Intent(mcontext.getApplicationContext(), + MainActivity.class); + intent.putExtra("error_reboot", true); + + PendingIntent pendingIntent = PendingIntent.getActivity( + mcontext.getApplicationContext(), 0, intent, + PendingIntent.FLAG_ONE_SHOT); + AlarmManager mgr = (AlarmManager) mcontext + .getSystemService(Context.ALARM_SERVICE); + mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 1500, + pendingIntent); // 1秒钟后重启应用 + android.os.Process.killProcess(android.os.Process.myPid()); + System.exit(10); + } + } + + private boolean handleException(Throwable ex) { + if (ex == null) { + return false; + } + new Thread() { + @Override + public void run() { + Looper.prepare(); + Toast toast = Toast.makeText(mcontext, "程序出错了,我们会尽快修复,稍后将重启应用!", + Toast.LENGTH_LONG); + toast.setGravity(Gravity.CENTER, 0, 0); + toast.show(); + Looper.loop(); + } + }.start(); + + collectDeviceInfo(); + saveCrashInfoIntoSd(ex); + return true;// 测试阶段全部抛出 + // return false; + } + + // 收集设备、软件参数信息 + private void collectDeviceInfo() { + try { + PackageManager pm = CustomApplication.context.getPackageManager(); + PackageInfo pi = pm.getPackageInfo(CustomApplication.context.getPackageName(), PackageManager.GET_ACTIVITIES); + if (pi != null) { + String versionName = pi.versionName == null ? "null" : pi.versionName; + String versionCode = pi.versionCode + ""; + infos.put("systemVersion", SystemUtil.getSystemVersion()); + infos.put("deviceModel", SystemUtil.getSystemModel()); + infos.put("deviceBrand", SystemUtil.getDeviceBrand()); + infos.put("versionName", versionName); + infos.put("versionCode", versionCode); + } + } catch (PackageManager.NameNotFoundException e) { + } + + } + + // 保存错误信息到SD卡文件中 + private void saveCrashInfoIntoSd(Throwable ex) { + //创建文件夹 + errorSavePath = Environment.getExternalStorageDirectory().getPath() + "/" + mcontext.getPackageName() + "/crash"; + File dir = new File(errorSavePath); + if (!dir.exists()) dir.mkdirs(); + + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + String time = formatter.format(new Date()); + StringBuffer sb = new StringBuffer(); + sb.append("\n" + time + "\n"); + for (Map.Entry entry : infos.entrySet()) { + String key = entry.getKey(); + String value = entry.getValue(); + sb.append(key + "=" + value + "\n"); + } + + sb.append(getCrashInfo(ex)); + + try { + //创建文件 + String fileName = "crash-" + time + ".txt"; + File file = new File(errorSavePath + "//" + fileName); + if (!file.exists()) file.createNewFile(); + + FileOutputStream fos = new FileOutputStream(file); + fos.write(sb.toString().getBytes()); + fos.close(); + } catch (Exception e) { + e.printStackTrace(); + } + } + + /** + * 得到程序崩溃的详细信息 + */ + public String getCrashInfo(Throwable ex) { + Writer result = new StringWriter(); + PrintWriter printWriter = new PrintWriter(result); + ex.setStackTrace(ex.getStackTrace()); + ex.printStackTrace(printWriter); + printWriter.close(); + return result.toString(); + } +} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/LogUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/LogUtil.java new file mode 100644 index 0000000..440b330 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/LogUtil.java @@ -0,0 +1,67 @@ +/** + * Copyright (C) 2006-2014 Tuniu All rights reserved + */ +package com.gaolei.mvpmodel.base.utils; + +import android.util.Log; + + +public class LogUtil { + + private static boolean IS_PRINTABLE = false; + + public static void init(boolean isPrintable) { + IS_PRINTABLE = isPrintable; + } + + + public static void v(String tag, String msg) { + if (!IS_PRINTABLE) { + return; + } + Log.v(tag, msg); + } + + + public static void d(String tag, String msg) { + if (!IS_PRINTABLE) { + return; + } + Log.d(tag, msg); + } + + + + public static void i(String tag, String msg) { + if (!IS_PRINTABLE) { + return; + } + Log.i(tag, msg); + } + + + + public static void w(String tag, String msg) { + if (!IS_PRINTABLE) { + return; + } + Log.w(tag, msg); + } + + + public static void e(String tag, String msg) { + if (!IS_PRINTABLE) { + return; + } + Log.e(tag, msg); + } + + public static void d( String msg) { + if (!IS_PRINTABLE) { + return; + } + Log.e("gaolei", msg); + } + + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/NetworkUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/NetworkUtil.java similarity index 95% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/NetworkUtil.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/NetworkUtil.java index 339bdca..da152c0 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/NetworkUtil.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/NetworkUtil.java @@ -1,4 +1,4 @@ -package com.gaolei.mvpmodel.utils; +package com.gaolei.mvpmodel.base.utils; import android.content.Context; import android.net.ConnectivityManager; diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/PermissionUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/PermissionUtil.java new file mode 100644 index 0000000..2582fcc --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/PermissionUtil.java @@ -0,0 +1,127 @@ +package com.gaolei.mvpmodel.base.utils; + + +import android.Manifest; +import android.app.Activity; +import android.app.AlertDialog; +import android.content.DialogInterface; +import android.content.Intent; +import android.net.Uri; +import android.os.Build; +import android.support.v4.app.ActivityCompat; + +public class PermissionUtil { + + private static String denyRequestContent = "%s权限 为必要权限,开通才可以正常使用相应功能"; + private static String foreverDenyRequestContent = "%s权限 为必要权限,开通才可以正常使用相应功能。\n \n 请点击 \"设置\"-\"权限\"-打开所需权限。"; + public static final int PERMISSION_CODE = 10001; + + public static void gotoDetailSettingIntent(Activity context) { + Intent intent = new Intent(); + intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + if (Build.VERSION.SDK_INT >= 9) { + intent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS"); + intent.setData(Uri.fromParts("package", context.getPackageName(), null)); + } else if (Build.VERSION.SDK_INT <= 8) { + intent.setAction(Intent.ACTION_VIEW); + intent.setClassName("com.android.settings", "com.android.settings.InstalledAppDetails"); + intent.putExtra("com.android.settings.ApplicationPkgName", context.getPackageName()); + } + context.startActivity(intent); + +// Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); +// Uri uri = Uri.fromParts("package", context.getPackageName(), null); +// intent.setData(uri); + } + + public static void requestDenyDialog(final Activity activity, final String... permissions) { + + String content = getContent(denyRequestContent, permissions); + + AlertDialog.Builder builder = new AlertDialog.Builder(activity); + + builder.setTitle("权限申请") + .setMessage(content) + .setPositiveButton("申请", new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + ActivityCompat.requestPermissions(activity, permissions, PERMISSION_CODE); + dialog.dismiss(); + } + }) + .setNegativeButton("取消", new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + + dialog.dismiss(); + } + }); + builder.show(); + } + + public static void requestForeverDenyDialog(final Activity activity, final String... permissions) { + + String content = getContent(foreverDenyRequestContent, permissions); + + AlertDialog.Builder builder = new AlertDialog.Builder(activity); + + builder.setTitle("权限设置") + .setMessage(content) + .setPositiveButton("设置", new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + gotoDetailSettingIntent(activity); + dialog.dismiss(); + } + }) + .setNegativeButton("取消", new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + + dialog.dismiss(); + } + }); + builder.show(); + } + + public static String getContent(String ifForeverDeny, String... permissions) { + String content = ""; + + if (permissions.length == 1) { + if (permissions[0].equals(Manifest.permission.CAMERA)) + content = String.format(ifForeverDeny, "相机"); + if (permissions[0].equals(Manifest.permission.WRITE_EXTERNAL_STORAGE)) + content = String.format(ifForeverDeny, "存储"); + } + if (permissions.length > 1) { + StringBuilder stringBuilder = new StringBuilder(); + int length = permissions.length; + for (int i = 0; i < length; i++) { + if (permissions[i].equals(Manifest.permission.CAMERA)) + stringBuilder = stringBuilder.append("相机"); + if (permissions[i].equals(Manifest.permission.WRITE_EXTERNAL_STORAGE)) + stringBuilder = stringBuilder.append("存储"); + if (permissions[i].equals(Manifest.permission.ACCESS_FINE_LOCATION)) + stringBuilder = stringBuilder.append("位置"); + if (permissions[i].equals(Manifest.permission.WRITE_CONTACTS)) + stringBuilder = stringBuilder.append("联系人"); + if (i < length - 1) + stringBuilder = stringBuilder.append("、"); + } + content = String.format(ifForeverDeny, stringBuilder.toString()); + } + return content; + + } + + /** + * 权限请求结果回调接口 + */ + public interface RequestPermissionCallBack { + /** + * 同意授权 + */ + public void granted(); + + /** + * 取消授权 + */ + public void denied(); + } +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/StatusBarUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/StatusBarUtil.java similarity index 99% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/StatusBarUtil.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/StatusBarUtil.java index 77f27da..7c88515 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/StatusBarUtil.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/StatusBarUtil.java @@ -1,4 +1,4 @@ -package com.gaolei.mvpmodel.utils; +package com.gaolei.mvpmodel.base.utils; /** * Created by caiwancheng on 2017/7/24. diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/StatusBarView.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/StatusBarView.java similarity index 89% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/StatusBarView.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/StatusBarView.java index ed81b15..e4c6647 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/utils/StatusBarView.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/StatusBarView.java @@ -1,4 +1,4 @@ -package com.gaolei.mvpmodel.utils; +package com.gaolei.mvpmodel.base.utils; import android.content.Context; import android.util.AttributeSet; diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/SystemUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/SystemUtil.java new file mode 100644 index 0000000..b5555e0 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/SystemUtil.java @@ -0,0 +1,72 @@ +package com.gaolei.mvpmodel.base.utils; + +import android.app.Activity; +import android.content.Context; +import android.telephony.TelephonyManager; + +import java.util.Locale; + +/** + * 系统工具类 + * Created by zhuwentao on 2016-07-18. + */ +public class SystemUtil { + + /** + * 获取当前手机系统语言。 + * + * @return 返回当前系统语言。例如:当前设置的是“中文-中国”,则返回“zh-CN” + */ + public static String getSystemLanguage() { + return Locale.getDefault().getLanguage(); + } + + /** + * 获取当前系统上的语言列表(Locale列表) + * + * @return 语言列表 + */ + public static Locale[] getSystemLanguageList() { + return Locale.getAvailableLocales(); + } + + /** + * 获取当前手机系统版本号 + * + * @return 系统版本号 + */ + public static String getSystemVersion() { + return android.os.Build.VERSION.RELEASE; + } + + /** + * 获取手机型号 + * + * @return 手机型号 + */ + public static String getSystemModel() { + return android.os.Build.MODEL; + } + + /** + * 获取手机厂商 + * + * @return 手机厂商 + */ + public static String getDeviceBrand() { + return android.os.Build.BRAND; + } + + /** + * 获取手机IMEI(需要“android.permission.READ_PHONE_STATE”权限) + * + * @return 手机IMEI + */ +// public static String getIMEI(Context ctx) { +// TelephonyManager tm = (TelephonyManager) ctx.getSystemService(Activity.TELEPHONY_SERVICE); +// if (tm != null) { +// return tm.getDeviceId(); +// } +// return null; +// } +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/Utils.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/Utils.java new file mode 100644 index 0000000..934c5ed --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/base/utils/Utils.java @@ -0,0 +1,43 @@ +package com.gaolei.mvpmodel.base.utils; + +import android.widget.Toast; + +import com.gaolei.mvpmodel.application.CustomApplication; + +import java.security.MessageDigest; + +/** + * Created by gaolei on 2018/6/15. + */ + +public class Utils { + + public static void showToast(String content){ + Toast.makeText(CustomApplication.context, content, Toast.LENGTH_SHORT).show(); + } + /** + * md5 加密 + * + * @param str 要加密的字符串 + * @return + */ + public static String md5Encode(String str) { + StringBuffer buf = new StringBuffer(); + try { + MessageDigest md5 = MessageDigest.getInstance("MD5"); + md5.update(str.getBytes()); + byte[] bytes = md5.digest(); + for (int i = 0; i < bytes.length; i++) { + String s = Integer.toHexString(bytes[i] & 0xff); + if (s.length() == 1) { + buf.append("0"); + } + buf.append(s); + } + + } catch (Exception ex) { + } + return buf.toString(); + } + +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/HomeFragment.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/HomeFragment.java index 46c23c6..74ca6d3 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/HomeFragment.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/HomeFragment.java @@ -3,9 +3,10 @@ import android.content.Context; import android.content.Intent; import android.os.Bundle; +import android.os.Debug; +import android.os.Trace; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; -import android.util.Log; import android.view.View; import android.widget.ImageView; @@ -14,12 +15,11 @@ import com.gaolei.mvpmodel.activity.ArticleDetailActivity; import com.gaolei.mvpmodel.adapter.DividerItemDecoration; import com.gaolei.mvpmodel.adapter.ProjectAdapter; +import com.gaolei.mvpmodel.base.fragment.BaseMvpFragment; +import com.gaolei.mvpmodel.mcontract.ProjectListContract; import com.gaolei.mvpmodel.mmodel.BannerListData; import com.gaolei.mvpmodel.mmodel.ProjectListData; import com.gaolei.mvpmodel.mpresenter.HomePresenter; -import com.gaolei.mvpmodel.mview.ProjectListView; -import com.gaolei.mvpmodel.net.RestService; -import com.gaolei.mvpmodel.net.UrlConfig; import com.youth.banner.Banner; import com.youth.banner.BannerConfig; import com.youth.banner.Transformer; @@ -29,19 +29,10 @@ import java.util.List; import butterknife.BindView; -import retrofit2.Call; -import retrofit2.Callback; -import retrofit2.Response; -import retrofit2.Retrofit; -import retrofit2.converter.gson.GsonConverterFactory; -/** - * @author quchao - * @date 2018/2/11 - */ -public class HomeFragment extends BaseMvpFragment implements ProjectListView { +public class HomeFragment extends BaseMvpFragment< HomePresenter> implements ProjectListContract.View { @BindView(R.id.project_recyclerview) RecyclerView project_recyclerview; @@ -51,8 +42,14 @@ public class HomeFragment extends BaseMvpFragment articleDataList = listData.data.getDatas(); projectAdapter = new ProjectAdapter(getActivity(), articleDataList); @@ -104,14 +91,13 @@ public void onItemClick(View v, int position) { } @Override - public void requstBannerList(BannerListData itemBeans) { + public void showBannerInfo(BannerListData itemBeans) { final List linkList = new ArrayList(); List imageList = new ArrayList(); List titleList = new ArrayList(); int size = itemBeans.data.size(); - Log.d("gaolei", "url--------------" + itemBeans.data.get(0).getUrl()); - Log.d("gaolei", "title--------------" + itemBeans.data.get(0).getTitle()); + for (int i = 0; i < size; i++) { imageList.add(itemBeans.data.get(i).getImagePath()); titleList.add(itemBeans.data.get(i).getTitle()); @@ -157,5 +143,11 @@ public void OnBannerClick(int position) { } }); } + public void onPause() { + super.onPause(); + } + public void onDestroy() { + super.onDestroy(); + } } diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/KnowledgeFragment.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/KnowledgeFragment.java index 280dbf7..7324038 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/KnowledgeFragment.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/KnowledgeFragment.java @@ -1,18 +1,12 @@ package com.gaolei.mvpmodel.fragment; import android.os.Bundle; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; import com.gaolei.mvpmodel.R; +import com.gaolei.mvpmodel.base.fragment.BaseMvpFragment; import com.gaolei.mvpmodel.mpresenter.BasePresenter; -/** - * @author quchao - * @date 2018/2/11 - */ public class KnowledgeFragment extends BaseMvpFragment { diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/NavigationFragment.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/NavigationFragment.java index 6e8eee0..1ff3a80 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/NavigationFragment.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/NavigationFragment.java @@ -1,18 +1,13 @@ package com.gaolei.mvpmodel.fragment; import android.os.Bundle; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; import com.gaolei.mvpmodel.R; +import com.gaolei.mvpmodel.base.fragment.BaseMvpFragment; import com.gaolei.mvpmodel.mpresenter.BasePresenter; -/** - * @author quchao - * @date 2018/2/11 - */ + public class NavigationFragment extends BaseMvpFragment { diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/ProjectFragment.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/ProjectFragment.java index 7da69dd..37e1d22 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/ProjectFragment.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/fragment/ProjectFragment.java @@ -1,19 +1,12 @@ package com.gaolei.mvpmodel.fragment; import android.os.Bundle; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; import com.gaolei.mvpmodel.R; +import com.gaolei.mvpmodel.base.fragment.BaseMvpFragment; import com.gaolei.mvpmodel.mpresenter.BasePresenter; -/** - * @author quchao - * @date 2018/2/11 - */ - public class ProjectFragment extends BaseMvpFragment { diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mcontract/ProjectListContract.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mcontract/ProjectListContract.java new file mode 100644 index 0000000..3aed8aa --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mcontract/ProjectListContract.java @@ -0,0 +1,25 @@ +package com.gaolei.mvpmodel.mcontract; + +import android.content.Context; + +import com.gaolei.mvpmodel.mmodel.BannerListData; +import com.gaolei.mvpmodel.mmodel.ProjectListData; + +/** + * Created by gaolei on 2018/6/18. + */ + +public class ProjectListContract { + + public interface Presenter { + + void getProjectInfo(int page, int cid, Context context); + void getBannerInfo(Context context); + } + + public interface View { + + void showProjectInfo(ProjectListData itemBeans); + void showBannerInfo(BannerListData itemBeans); + } +} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/BannerListData.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/BannerListData.java index dce47eb..ccc1766 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/BannerListData.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/BannerListData.java @@ -3,9 +3,7 @@ import java.io.Serializable; import java.util.List; -/** - * Created by caiwancheng on 2017/8/29. - */ + public class BannerListData { @@ -15,8 +13,8 @@ public class BannerListData { // 1, "order":0, "title":"最新项目上线啦~", "type":0, "url":"http://www.wanandroid.com/pindex" // } - int errorCode; - String errorMsg; + public int errorCode; + public String errorMsg; public List data; public List getData() { return data; diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/ProjectListData.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/ProjectListData.java index 40cb1b2..494c5fd 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/ProjectListData.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mmodel/ProjectListData.java @@ -4,10 +4,7 @@ import java.util.List; -/** - * @author quchao - * @date 2018/2/24 - */ + public class ProjectListData { @@ -38,15 +35,12 @@ public void setDatas(List datas) { this.datas = datas; } // public int getCurPage() { -// // return curPage; // } // // public void setCurPage(int curPage) { // this.curPage = curPage; // } -// - // // public int getOffset() { // return offset; @@ -92,7 +86,7 @@ public void setDatas(List datas) { public class FeedArticleData implements Serializable { - // { +// { // "apkLink": "", // "author": "LiangLuDev", // "chapterId": 294, diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/BasePresenter.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/BasePresenter.java index 16c7ba7..093672a 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/BasePresenter.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/BasePresenter.java @@ -1,16 +1,20 @@ package com.gaolei.mvpmodel.mpresenter; -import com.gaolei.mvpmodel.net.RestApiProvider; -import com.gaolei.mvpmodel.net.RestService; +import com.gaolei.mvpmodel.base.thirdframe.retrofit.RetrofitProvider; +import com.gaolei.mvpmodel.api.ApiService; +import com.gaolei.mvpmodel.base.thirdframe.rxjava.BaseObserver; + +import io.reactivex.Observable; +import io.reactivex.android.schedulers.AndroidSchedulers; +import io.reactivex.disposables.CompositeDisposable; +import io.reactivex.schedulers.Schedulers; -import retrofit2.Call; public abstract class BasePresenter { public V mView; - public Call mCall; - public RestService mRestService = RestApiProvider.getInstance().withNoInterceptor().builder().getApiService(); - + public ApiService mRestService = RetrofitProvider.getInstance().builder().getApiService(); + CompositeDisposable mCompositeDisposable ; /** * 绑定View @@ -19,6 +23,9 @@ public abstract class BasePresenter { */ public void attach(V view) { this.mView = view; + if (mCompositeDisposable == null) { + mCompositeDisposable = new CompositeDisposable(); + } } /** @@ -26,8 +33,16 @@ public void attach(V view) { */ public void dettach() { this.mView = null; - if (mCall != null) { - mCall.cancel(); + if (mCompositeDisposable != null) { + mCompositeDisposable.clear(); } } + + public void doSubscribe(Observable observable, BaseObserver observer){ + mCompositeDisposable.add(observer); + observable.subscribeOn(Schedulers.io()) + .unsubscribeOn(Schedulers.io()) + .observeOn(AndroidSchedulers.mainThread()) + .subscribe(observer); + } } \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/HomePresenter.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/HomePresenter.java index 62443a3..d01a2ca 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/HomePresenter.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mpresenter/HomePresenter.java @@ -1,64 +1,43 @@ package com.gaolei.mvpmodel.mpresenter; +import android.content.Context; + +import com.gaolei.mvpmodel.mcontract.ProjectListContract; import com.gaolei.mvpmodel.mmodel.BannerListData; import com.gaolei.mvpmodel.mmodel.ProjectListData; -import com.gaolei.mvpmodel.mview.ProjectListView; -import com.gaolei.mvpmodel.net.RestService; -import com.gaolei.mvpmodel.net.UrlConfig; - -import retrofit2.Call; -import retrofit2.Callback; -import retrofit2.Response; -import retrofit2.Retrofit; -import retrofit2.converter.gson.GsonConverterFactory; - -/** - * Created by caiwancheng on 2017/8/30. - */ - -public class HomePresenter extends BasePresenter { - - public void getProjectInfo(int page, int cid) { +import com.gaolei.mvpmodel.base.thirdframe.rxjava.BaseObserver; - mCall = mRestService.getProjectListData(page, cid); - mView.showLoading(); - mCall.enqueue(new Callback() { - public void onResponse(Call call, Response response) { - mView.hideLoading(); +import io.reactivex.Observable; - mView.requstProjectList(response.body()); - } +public class HomePresenter extends BasePresenter implements ProjectListContract.Presenter { - public void onFailure(Call call, Throwable t) { - mView.hideLoading(); + @Override + public void getProjectInfo(int page, int cid, Context context) { + Observable observable = mRestService.getProjectListData(page, cid); + doSubscribe(observable, new BaseObserver(context) { + @Override + public void onNext(ProjectListData projectListData) { + mView.showProjectInfo(projectListData); } }); } - public void getBannerInfo() { -// Retrofit mRetrofit = new Retrofit.Builder() -// .baseUrl(UrlConfig.BASE_URL) -// .addConverterFactory(GsonConverterFactory.create()) -// //.addCallAdapterFactory(RxJavaCallAdapterFactory.create()) -// .build(); -// RestService mRestService = mRetrofit.create(RestService.class); - mCall = mRestService.getBannerListData(); - mView.showLoading(); - mCall.enqueue(new Callback() { - public void onResponse(Call call, Response response) { - mView.hideLoading(); - mView.requstBannerList(response.body()); + @Override + public void getBannerInfo(Context context) { + Observable observable = mRestService.getBannerListData(); + doSubscribe(observable, new BaseObserver(context) { + @Override + public void onNext(BannerListData bannerListData) { + mView.showBannerInfo(bannerListData); } - public void onFailure(Call call, Throwable t) { - mView.hideLoading(); - - } }); + + } } diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/BaseView.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/BaseView.java index 155db4c..86ad847 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/BaseView.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/BaseView.java @@ -4,4 +4,5 @@ public interface BaseView { void showLoading(); void hideLoading(); + void showErrorMsg(String errorMsg); } \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/ProjectListView.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/ProjectListView.java deleted file mode 100644 index 1255d52..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/mview/ProjectListView.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.gaolei.mvpmodel.mview; - - -import com.gaolei.mvpmodel.mmodel.BannerListData; -import com.gaolei.mvpmodel.mmodel.ProjectListData; - -import java.util.List; - -/** - * 倒计时mview - * Created by caiwancheng on 2017/8/29. - */ - -public interface ProjectListView extends BaseView { - - - void requstProjectList(ProjectListData itemBeans); - void requstBannerList(BannerListData itemBeans); -} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/HttpLoggingInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/HttpLoggingInterceptor.java deleted file mode 100644 index 8cb857e..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/HttpLoggingInterceptor.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.gaolei.mvpmodel.net; - -import android.support.v4.BuildConfig; -import android.util.Log; - - -import java.io.IOException; - -import okhttp3.Interceptor; -import okhttp3.Request; -import okhttp3.Response; - -/** - * Created by liuhaiyang on 2016/9/6. - */ -public class HttpLoggingInterceptor implements Interceptor { - @Override - public Response intercept(Chain chain) throws IOException { - Request request = chain.request(); - - long t1 = System.nanoTime(); - - if (BuildConfig.DEBUG) { - Log.i("HTTP", String.format("----> %s %s on %s %n%s", - request.method(), request.url(), chain.connection(), request.headers())); - } - - - Response response = chain.proceed(request); - - long t2 = System.nanoTime(); - - if (BuildConfig.DEBUG) { - Log.i("HTTP", String.format("----> %s %s (%.1fms) %n%s", response.code(), - response.request().url(), (t2 - t1) / 1e6d, response.headers())); - } - - - return response; - } -} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/OkHttpUtil.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/OkHttpUtil.java deleted file mode 100644 index 8cdb4d2..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/OkHttpUtil.java +++ /dev/null @@ -1,104 +0,0 @@ -package com.gaolei.mvpmodel.net; - - -import java.io.IOException; -import java.util.Map; -import java.util.Set; - -import okhttp3.Call; -import okhttp3.Callback; -import okhttp3.FormBody; -import okhttp3.OkHttpClient; -import okhttp3.Request; -import okhttp3.RequestBody; -import okhttp3.Response; - -/** - * Created by gaolei on 2018/4/27. - */ - -public class OkHttpUtil { - //静态本类对象 - private static OkHttpUtil okHttpUtil; - private OkHttpClient okHttpClient; - - //私有化构造方法 - private OkHttpUtil() { - okHttpClient = new OkHttpClient.Builder().build(); - } - - //公共的供外部访问的方法 - public static OkHttpUtil getInstance() { - if (okHttpUtil == null) { - synchronized (OkHttpUtil.class) { - if (okHttpUtil == null) { - okHttpUtil = new OkHttpUtil(); - } - } - } - return okHttpUtil; - } - - public void get(String url, Map map, final NetworkCallback networkCallback) { - - if (map != null && map.size() > 0) { - - StringBuffer sb = new StringBuffer(url); - sb.append("?"); - Set set = map.keySet(); - for (String str : set) { - - sb.append(str).append("=").append(map.get(str)).append("&"); - } - url = sb.substring(0, sb.length() - 1); - } - - Request request = new Request.Builder().url(url).build(); - okHttpClient.newCall(request).enqueue(new Callback() { - @Override - public void onFailure(Call call, IOException e) { - networkCallback.error(e.getMessage()); - } - - @Override - public void onResponse(Call call, Response response) throws IOException { - String string = response.body().string(); - networkCallback.successful(string); - } - }); - } - - public void post(String url, Map map, final NetworkCallback networkCallback) { - if (map != null && map.size() > 0) { - - StringBuffer sb = new StringBuffer(url); - sb.append("?"); - Set set = map.keySet(); - for (String str : set) { - - sb.append(str).append("=").append(map.get(str)).append("&"); - } - url = sb.substring(0, sb.length() - 1); - } - - RequestBody body = new FormBody.Builder().build(); - Request request = new Request.Builder().url(url).method("POST", body).build(); - okHttpClient.newCall(request).enqueue(new Callback() { - @Override - public void onFailure(Call call, IOException e) { - networkCallback.error(e.getMessage()); - } - - @Override - public void onResponse(Call call, Response response) throws IOException { - String string = response.body().string(); - networkCallback.successful(string); - } - }); - } - - public interface NetworkCallback{ - void error(String error); - void successful(String response); - } -} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/RestApiProvider.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/RestApiProvider.java deleted file mode 100644 index 90568dc..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/RestApiProvider.java +++ /dev/null @@ -1,77 +0,0 @@ -package com.gaolei.mvpmodel.net; - - -import okhttp3.CertificatePinner; -import okhttp3.Interceptor; -import okhttp3.OkHttpClient; -import retrofit2.Retrofit; -import retrofit2.converter.gson.GsonConverterFactory; - - -public final class RestApiProvider { - - private Retrofit mRetrofit; - private OkHttpClient mOkHttpClient; - private static volatile RestApiProvider sInstance; - private RestService restService; - - private RestApiProvider() { - } - - - public RestApiProvider withInterceptor(Interceptor intertor, CertificatePinner pinner) { - if (mOkHttpClient == null) { - mOkHttpClient = new OkHttpClient.Builder() - .addNetworkInterceptor(new HttpLoggingInterceptor()) - .addInterceptor(intertor) - .certificatePinner(pinner) - .build(); - } - return sInstance; - } - - public RestApiProvider withNoInterceptor() { - - - if (mOkHttpClient == null) { - mOkHttpClient = new OkHttpClient.Builder() - .addNetworkInterceptor(new HttpLoggingInterceptor()) - .build(); - } - return sInstance; - } - - public RestApiProvider builder() { - if (mOkHttpClient == null) { - mOkHttpClient = new OkHttpClient.Builder() - .addNetworkInterceptor(new HttpLoggingInterceptor()) - .build(); - } - if (mRetrofit == null) { - mRetrofit = new Retrofit.Builder() - .client(mOkHttpClient) - .baseUrl(UrlConfig.BASE_URL) - .addConverterFactory(GsonConverterFactory.create()) - //.addCallAdapterFactory(RxJavaCallAdapterFactory.create()) - .build(); - } - return sInstance; - } - - public static RestApiProvider getInstance() { - if (sInstance == null) { - synchronized (RestApiProvider.class) { - if (sInstance == null) { - sInstance = new RestApiProvider(); - } - } - } - return sInstance; - } - - public RestService getApiService() { - if (restService == null) - restService = mRetrofit.create(RestService.class); - return restService; - } -} \ No newline at end of file diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/RestService.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/RestService.java deleted file mode 100644 index f9a3682..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/RestService.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.gaolei.mvpmodel.net; - - -import com.gaolei.mvpmodel.mmodel.BannerListData; -import com.gaolei.mvpmodel.mmodel.ProjectListData; - -import java.util.List; - -import retrofit2.Call; -import retrofit2.http.GET; -import retrofit2.http.Path; -import retrofit2.http.Query; - -/** - * Created by liuhaiyang on 2016/9/6. - */ -public interface RestService { -// @GET -// Call loadHomeList(@Url String url, @Query("strRecord") int strRecord, @Query("pageSize") int pageSize); -// -// @GET -// Call loadData(@Url String url, @QueryMap Map map); -// -// @GET -// Call loadData(@Url String url); -// -// -// @POST -// Call postData(@Url String url, @Body Object body); -// -// -// @FormUrlEncoded -// @POST -// Call login(@Url String url, @Field("username") String username, -// @Field("password") String pwd -// ); -/* - http://www.wanandroid.com/project/list/1/json?cid=294 - 方法:GET - 参数:cid 分类的id,页码:拼接在链接中,从1开始。 - */ - @GET("project/list/{page}/json") - Call getProjectListData(@Path("page") int page, @Query("cid") int cid); -/* - http://www.wanandroid.com/banner/json - 广告栏数据 -*/ - - @GET("banner/json") - Call getBannerListData(); -} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/SignInterceptor.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/SignInterceptor.java deleted file mode 100644 index 18b70e0..0000000 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/net/SignInterceptor.java +++ /dev/null @@ -1,161 +0,0 @@ -//package com.gaolei.mvpmodel.net; -// -//import android.content.Context; -//import android.support.v4.util.ArrayMap; -//import android.util.Log; -//import android.util.Pair; -// -//import org.json.JSONException; -//import org.json.JSONObject; -// -//import java.io.IOException; -//import java.nio.charset.Charset; -//import java.util.ArrayList; -//import java.util.Collections; -//import java.util.Comparator; -//import java.util.Iterator; -//import java.util.List; -// -//import okhttp3.FormBody; -//import okhttp3.Interceptor; -//import okhttp3.MediaType; -//import okhttp3.Request; -//import okhttp3.RequestBody; -//import okhttp3.Response; -//import okio.Buffer; -// -///** -// * Created by liuhaiyang on 2017/8/9. -// * 加密sign -// */ -// -//public final class SignInterceptor implements Interceptor { -// -// private static final String MD5KEY = "base64:FgBvWS7+m3BPRnKemuoOwXEf7kvldmM+VOmJS5Iccxs="; -// private Context mContext; -// -// public SignInterceptor(Context context) { -// this.mContext = context; -// } -// -// @Override -// public Response intercept(Chain chain) throws IOException { -// -// Request request = chain.request(); -// -// //header add version -// Request.Builder requestBuilder = request.newBuilder(); -// requestBuilder.addHeader("version", BuildConfig.VERSION_NAME); -// requestBuilder.addHeader("platform", "ANDROID"); -// requestBuilder.addHeader("deviceid", ExtendUtil.getDeviceID(mContext)); -// -// if (!request.method().equals("POST")) { -// return chain.proceed(request); -// } -// -// JSONObject bodyJson = null; -// List> params = new ArrayList<>(); -// ArrayMap arrayMap = new ArrayMap<>(); -// -// FormBody body = null; -// try { -// body = (FormBody) request.body(); -// } catch (ClassCastException c) { -// } -// -// if (body != null) { -// -// int size = body.size(); -// if (size > 0) { -// for (int i = 0; i < size; i++) { -// params.add(new Pair<>(body.name(i), body.value(i))); -// } -// } -// } else { -// RequestBody requestBody = request.body(); -// -// if (requestBody != null) { -// Buffer buffer = new Buffer(); -// requestBody.writeTo(buffer); -// Charset charset = Charset.forName("UTF-8"); -// MediaType contentType = requestBody.contentType(); -// if (contentType != null) { -// charset = contentType.charset(charset); -// } -// String paramsStr = buffer.readString(charset); -// if (BuildConfig.DEBUG) { -// Log.i("HTTP", "request = " + paramsStr); -// } -// -// try { -// bodyJson = new JSONObject(paramsStr); -// } catch (JSONException e) { -// LogUtils.e("JSON", "JsonObject err"); -// } -// -// if (bodyJson != null) { -// Iterator it = bodyJson.keys(); -// while (it.hasNext()) { -// String key = it.next(); -// Object value = null; -// try { -// value = bodyJson.get(key); -// } catch (JSONException e) { -// LogUtils.e("JSON", "JsonObject get err"); -// } -// if (key.equals("token")) { -// arrayMap.put("token", String.valueOf(value)); -// arrayMap.put("timestamp", String.valueOf(System.currentTimeMillis() / 1000)); -// -// for (String strKey : arrayMap.keySet()) { -// params.add(new Pair<>(strKey, arrayMap.get(strKey))); -// } -// } else { -// params.add(new Pair<>(key, String.valueOf(value))); -// } -// -// } -// } -// -// } -// } -// -// params.add(new Pair<>("MD5Key", MD5KEY)); -// Collections.sort(params, new Comparator>() { -// @Override -// public int compare(Pair lhs, Pair rhs) { -// return lhs.second.compareTo(rhs.second); -// } -// }); -// -// StringBuilder sb = new StringBuilder(); -// for (int i = 0; i < params.size(); i++) { -// sb.append(params.get(i).second); -// if (i < params.size() - 1) { -// sb.append(""); -// } -// } -// -// String sign = StringUtil.md5Encode(sb.toString()); -// params.add(new Pair<>("sign", sign)); -// -// for (Pair pair : params) { -// if ((arrayMap.containsKey(pair.first) || pair.first.equals("sign")) && bodyJson != null) { -// try { -// bodyJson.put(pair.first, pair.second); -// } catch (JSONException e) { -// LogUtils.e("JSON", "JsonObject put err"); -// } -// } -// } -// -// String postBodyString = bodyJson.toString(); -// request = requestBuilder -// .post(RequestBody.create(MediaType.parse("application/json;charset=UTF-8"), -// postBodyString)) -// .build(); -// -// return chain.proceed(request); -// } -// -//} diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/BottomNavigationViewHelper.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/view/BottomNavigationViewHelper.java similarity index 97% rename from MVPModel/app/src/main/java/com/gaolei/mvpmodel/BottomNavigationViewHelper.java rename to MVPModel/app/src/main/java/com/gaolei/mvpmodel/view/BottomNavigationViewHelper.java index 828bc21..95fc963 100644 --- a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/BottomNavigationViewHelper.java +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/view/BottomNavigationViewHelper.java @@ -1,4 +1,4 @@ -package com.gaolei.mvpmodel; +package com.gaolei.mvpmodel.view; /** * Created by gaolei on 2018/4/26. diff --git a/MVPModel/app/src/main/java/com/gaolei/mvpmodel/view/CustomProgressDialog.java b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/view/CustomProgressDialog.java new file mode 100644 index 0000000..5107643 --- /dev/null +++ b/MVPModel/app/src/main/java/com/gaolei/mvpmodel/view/CustomProgressDialog.java @@ -0,0 +1,42 @@ +package com.gaolei.mvpmodel.view; + +import android.app.Dialog; +import android.content.Context; +import android.view.LayoutInflater; +import android.view.View; +import android.view.animation.Animation; +import android.view.animation.AnimationUtils; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; + +import com.gaolei.mvpmodel.R; + +public class CustomProgressDialog{ + + public static Dialog createLoadingDialog(Context context) { + + LayoutInflater inflater = LayoutInflater.from(context); + View v = inflater.inflate(R.layout.dialog_loading, null);// 得到加载view + LinearLayout layout = (LinearLayout) v.findViewById(R.id.dialog_view);// 加载布局 + // main.xml中的ImageView + ImageView spaceshipImage = (ImageView) v.findViewById(R.id.img); + TextView tipTextView = (TextView) v.findViewById(R.id.tipTextView);// 提示文字 + // 加载动画 + Animation hyperspaceJumpAnimation = AnimationUtils.loadAnimation( + context, R.anim.anim_dialog_load); + // 使用ImageView显示动画 + spaceshipImage.startAnimation(hyperspaceJumpAnimation); + + Dialog loadingDialog = new Dialog(context, R.style.loading_dialog);// 创建自定义样式dialog + + loadingDialog.setCancelable(false);// 不可以用“返回键”取消 + loadingDialog.setContentView(layout, new LinearLayout.LayoutParams( + LinearLayout.LayoutParams.MATCH_PARENT, + LinearLayout.LayoutParams.MATCH_PARENT));// 设置布局 + return loadingDialog; + + } + +} + diff --git a/MVPModel/app/src/main/res/anim/anim_dialog_load.xml b/MVPModel/app/src/main/res/anim/anim_dialog_load.xml new file mode 100644 index 0000000..51a4d13 --- /dev/null +++ b/MVPModel/app/src/main/res/anim/anim_dialog_load.xml @@ -0,0 +1,15 @@ + + + + + + diff --git a/MVPModel/app/src/main/res/anim/request_progress_loading.xml b/MVPModel/app/src/main/res/anim/anim_progress_load.xml similarity index 100% rename from MVPModel/app/src/main/res/anim/request_progress_loading.xml rename to MVPModel/app/src/main/res/anim/anim_progress_load.xml diff --git a/MVPModel/app/src/main/res/drawable-xxhdpi/progress_dialog_icon.png b/MVPModel/app/src/main/res/drawable-xxhdpi/progress_dialog_icon.png new file mode 100644 index 0000000..ccc722b Binary files /dev/null and b/MVPModel/app/src/main/res/drawable-xxhdpi/progress_dialog_icon.png differ diff --git a/MVPModel/app/src/main/res/drawable-xxxhdpi/progress_dialog_icon.png b/MVPModel/app/src/main/res/drawable-xxxhdpi/progress_dialog_icon.png new file mode 100644 index 0000000..ccc722b Binary files /dev/null and b/MVPModel/app/src/main/res/drawable-xxxhdpi/progress_dialog_icon.png differ diff --git a/MVPModel/app/src/main/res/layout/dialog_loading.xml b/MVPModel/app/src/main/res/layout/dialog_loading.xml new file mode 100644 index 0000000..15bdcfd --- /dev/null +++ b/MVPModel/app/src/main/res/layout/dialog_loading.xml @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/MVPModel/app/src/main/res/layout/fragment_base.xml b/MVPModel/app/src/main/res/layout/fragment_base.xml index 01a81a4..3c7b897 100644 --- a/MVPModel/app/src/main/res/layout/fragment_base.xml +++ b/MVPModel/app/src/main/res/layout/fragment_base.xml @@ -46,7 +46,7 @@ android:layout_width="68dp" android:layout_height="68dp" android:layout_centerInParent="true" - android:indeterminateDrawable="@anim/request_progress_loading" /> + android:indeterminateDrawable="@anim/anim_progress_load" /> diff --git a/MVPModel/app/src/main/res/layout/item_project_list.xml b/MVPModel/app/src/main/res/layout/item_project_list.xml index 8556ce3..24b4332 100644 --- a/MVPModel/app/src/main/res/layout/item_project_list.xml +++ b/MVPModel/app/src/main/res/layout/item_project_list.xml @@ -22,8 +22,7 @@ android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="2" - android:contentDescription="@null" - android:src="@mipmap/ic_launcher" /> + android:contentDescription="@null"/> @color/colorPrimaryDark @color/colorAccent + + + diff --git a/MVPModel/build.gradle b/MVPModel/build.gradle index e6b32bc..7221b2c 100644 --- a/MVPModel/build.gradle +++ b/MVPModel/build.gradle @@ -19,6 +19,7 @@ allprojects { repositories { google() jcenter() + maven { url "https://jitpack.io" } } } diff --git a/MVPModel/gradle/wrapper/gradle-wrapper.properties b/MVPModel/gradle/wrapper/gradle-wrapper.properties index d282fd6..4844b73 100644 --- a/MVPModel/gradle/wrapper/gradle-wrapper.properties +++ b/MVPModel/gradle/wrapper/gradle-wrapper.properties @@ -1,4 +1,4 @@ -#Thu Apr 26 09:56:52 CST 2018 +#Sat Jun 30 08:08:27 CST 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/MVPModel/retrofitdemo/build/generated/mockable-android-26.v3.jar b/MVPModel/retrofitdemo/build/generated/mockable-android-26.v3.jar deleted file mode 100644 index 40cba0b..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/mockable-android-26.v3.jar and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml deleted file mode 100644 index d5fccc5..0000000 --- a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png deleted file mode 100644 index b7e37ae..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png deleted file mode 100644 index 0ddbe1c..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png deleted file mode 100644 index 366e2de..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png deleted file mode 100644 index c771e70..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png deleted file mode 100644 index 2692be6..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png b/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png deleted file mode 100644 index 21bead5..0000000 Binary files a/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/generated/source/buildConfig/androidTest/debug/com/gaolei/retrofitdemo/test/BuildConfig.java b/MVPModel/retrofitdemo/build/generated/source/buildConfig/androidTest/debug/com/gaolei/retrofitdemo/test/BuildConfig.java deleted file mode 100644 index 53ca7ba..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/buildConfig/androidTest/debug/com/gaolei/retrofitdemo/test/BuildConfig.java +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package com.gaolei.retrofitdemo.test; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String APPLICATION_ID = "com.gaolei.retrofitdemo.test"; - public static final String BUILD_TYPE = "debug"; - public static final String FLAVOR = ""; - public static final int VERSION_CODE = 1; - public static final String VERSION_NAME = "1.0"; -} diff --git a/MVPModel/retrofitdemo/build/generated/source/buildConfig/debug/com/gaolei/retrofitdemo/BuildConfig.java b/MVPModel/retrofitdemo/build/generated/source/buildConfig/debug/com/gaolei/retrofitdemo/BuildConfig.java deleted file mode 100644 index c823562..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/buildConfig/debug/com/gaolei/retrofitdemo/BuildConfig.java +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package com.gaolei.retrofitdemo; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String APPLICATION_ID = "com.gaolei.retrofitdemo"; - public static final String BUILD_TYPE = "debug"; - public static final String FLAVOR = ""; - public static final int VERSION_CODE = 1; - public static final String VERSION_NAME = "1.0"; -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/espresso/R.java b/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/espresso/R.java deleted file mode 100644 index bed0f88..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/espresso/R.java +++ /dev/null @@ -1,10 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.test.espresso; - -public final class R { -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/espresso/idling/concurrent/R.java b/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/espresso/idling/concurrent/R.java deleted file mode 100644 index ff531a4..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/espresso/idling/concurrent/R.java +++ /dev/null @@ -1,10 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.test.espresso.idling.concurrent; - -public final class R { -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/rules/R.java b/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/rules/R.java deleted file mode 100644 index c784352..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/rules/R.java +++ /dev/null @@ -1,10 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.test.rules; - -public final class R { -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/runner/R.java b/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/runner/R.java deleted file mode 100644 index 66b5b7a..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/android/support/test/runner/R.java +++ /dev/null @@ -1,10 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.test.runner; - -public final class R { -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/com/gaolei/retrofitdemo/test/R.java b/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/com/gaolei/retrofitdemo/test/R.java deleted file mode 100644 index 6d4ce90..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/androidTest/debug/com/gaolei/retrofitdemo/test/R.java +++ /dev/null @@ -1,11570 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package com.gaolei.retrofitdemo.test; - -public final class R { - public static final class anim { - public static final int abc_fade_in=0x7f010000; - public static final int abc_fade_out=0x7f010001; - public static final int abc_grow_fade_in_from_bottom=0x7f010002; - public static final int abc_popup_enter=0x7f010003; - public static final int abc_popup_exit=0x7f010004; - public static final int abc_shrink_fade_out_from_bottom=0x7f010005; - public static final int abc_slide_in_bottom=0x7f010006; - public static final int abc_slide_in_top=0x7f010007; - public static final int abc_slide_out_bottom=0x7f010008; - public static final int abc_slide_out_top=0x7f010009; - public static final int tooltip_enter=0x7f01000a; - public static final int tooltip_exit=0x7f01000b; - } - public static final class attr { - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarDivider=0x7f020000; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarItemBackground=0x7f020001; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarPopupTheme=0x7f020002; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrap_content0
- */ - public static final int actionBarSize=0x7f020003; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarSplitStyle=0x7f020004; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarStyle=0x7f020005; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTabBarStyle=0x7f020006; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTabStyle=0x7f020007; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTabTextStyle=0x7f020008; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTheme=0x7f020009; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarWidgetTheme=0x7f02000a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionButtonStyle=0x7f02000b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionDropDownStyle=0x7f02000c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionLayout=0x7f02000d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionMenuTextAppearance=0x7f02000e; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int actionMenuTextColor=0x7f02000f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeBackground=0x7f020010; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCloseButtonStyle=0x7f020011; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCloseDrawable=0x7f020012; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCopyDrawable=0x7f020013; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCutDrawable=0x7f020014; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeFindDrawable=0x7f020015; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModePasteDrawable=0x7f020016; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModePopupWindowStyle=0x7f020017; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeSelectAllDrawable=0x7f020018; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeShareDrawable=0x7f020019; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeSplitBackground=0x7f02001a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeStyle=0x7f02001b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeWebSearchDrawable=0x7f02001c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionOverflowButtonStyle=0x7f02001d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionOverflowMenuStyle=0x7f02001e; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int actionProviderClass=0x7f02001f; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int actionViewClass=0x7f020020; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int activityChooserViewStyle=0x7f020021; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int alertDialogButtonGroupStyle=0x7f020022; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int alertDialogCenterButtons=0x7f020023; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int alertDialogStyle=0x7f020024; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int alertDialogTheme=0x7f020025; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int allowStacking=0x7f020026; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int alpha=0x7f020027; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- */ - public static final int alphabeticModifiers=0x7f020028; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int arrowHeadLength=0x7f020029; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int arrowShaftLength=0x7f02002a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int autoCompleteTextViewStyle=0x7f02002b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int autoSizeMaxTextSize=0x7f02002c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int autoSizeMinTextSize=0x7f02002d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int autoSizePresetSizes=0x7f02002e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int autoSizeStepGranularity=0x7f02002f; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
none0
uniform1
- */ - public static final int autoSizeTextType=0x7f020030; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int background=0x7f020031; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int backgroundSplit=0x7f020032; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int backgroundStacked=0x7f020033; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int backgroundTint=0x7f020034; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int backgroundTintMode=0x7f020035; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int barLength=0x7f020036; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int barrierAllowsGoneWidgets=0x7f020037; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
- */ - public static final int barrierDirection=0x7f020038; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int borderlessButtonStyle=0x7f020039; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarButtonStyle=0x7f02003a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarNegativeButtonStyle=0x7f02003b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarNeutralButtonStyle=0x7f02003c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarPositiveButtonStyle=0x7f02003d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarStyle=0x7f02003e; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
top30
- */ - public static final int buttonGravity=0x7f02003f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonPanelSideLayout=0x7f020040; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonStyle=0x7f020041; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonStyleSmall=0x7f020042; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int buttonTint=0x7f020043; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int buttonTintMode=0x7f020044; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int chainUseRtl=0x7f020045; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int checkboxStyle=0x7f020046; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int checkedTextViewStyle=0x7f020047; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int closeIcon=0x7f020048; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int closeItemLayout=0x7f020049; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int collapseContentDescription=0x7f02004a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int collapseIcon=0x7f02004b; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int color=0x7f02004c; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorAccent=0x7f02004d; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorBackgroundFloating=0x7f02004e; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorButtonNormal=0x7f02004f; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorControlActivated=0x7f020050; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorControlHighlight=0x7f020051; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorControlNormal=0x7f020052; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorError=0x7f020053; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorPrimary=0x7f020054; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorPrimaryDark=0x7f020055; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorSwitchThumbNormal=0x7f020056; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int commitIcon=0x7f020057; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int constraintSet=0x7f020058; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int constraint_referenced_ids=0x7f020059; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int content=0x7f02005a; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int contentDescription=0x7f02005b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetEnd=0x7f02005c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetEndWithActions=0x7f02005d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetLeft=0x7f02005e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetRight=0x7f02005f; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetStart=0x7f020060; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetStartWithNavigation=0x7f020061; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int controlBackground=0x7f020062; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int customNavigationLayout=0x7f020063; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int defaultQueryHint=0x7f020064; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int dialogPreferredPadding=0x7f020065; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dialogTheme=0x7f020066; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
- */ - public static final int displayOptions=0x7f020067; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int divider=0x7f020068; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dividerHorizontal=0x7f020069; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int dividerPadding=0x7f02006a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dividerVertical=0x7f02006b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int drawableSize=0x7f02006c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int drawerArrowStyle=0x7f02006d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dropDownListViewStyle=0x7f02006e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int dropdownListPreferredItemHeight=0x7f02006f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int editTextBackground=0x7f020070; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int editTextColor=0x7f020071; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int editTextStyle=0x7f020072; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int elevation=0x7f020073; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
gone0
invisible1
- */ - public static final int emptyVisibility=0x7f020074; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int expandActivityOverflowButtonDrawable=0x7f020075; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int font=0x7f020076; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontFamily=0x7f020077; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontProviderAuthority=0x7f020078; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int fontProviderCerts=0x7f020079; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
async1
blocking0
- */ - public static final int fontProviderFetchStrategy=0x7f02007a; - /** - *

May be an integer value, such as "100". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
foreverffffffff
- */ - public static final int fontProviderFetchTimeout=0x7f02007b; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontProviderPackage=0x7f02007c; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontProviderQuery=0x7f02007d; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
italic1
normal0
- */ - public static final int fontStyle=0x7f02007e; - /** - *

May be an integer value, such as "100". - */ - public static final int fontWeight=0x7f02007f; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int gapBetweenBars=0x7f020080; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int goIcon=0x7f020081; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int height=0x7f020082; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int hideOnContentScroll=0x7f020083; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int homeAsUpIndicator=0x7f020084; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int homeLayout=0x7f020085; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int icon=0x7f020086; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int iconTint=0x7f020087; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int iconTintMode=0x7f020088; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int iconifiedByDefault=0x7f020089; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int imageButtonStyle=0x7f02008a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int indeterminateProgressStyle=0x7f02008b; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int initialActivityCount=0x7f02008c; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int isLightTheme=0x7f02008d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int itemPadding=0x7f02008e; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int layout=0x7f02008f; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int layout_constrainedHeight=0x7f020090; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int layout_constrainedWidth=0x7f020091; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintBaseline_creator=0x7f020092; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintBaseline_toBaselineOf=0x7f020093; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintBottom_creator=0x7f020094; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintBottom_toBottomOf=0x7f020095; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintBottom_toTopOf=0x7f020096; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int layout_constraintCircle=0x7f020097; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintCircleAngle=0x7f020098; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_constraintCircleRadius=0x7f020099; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int layout_constraintDimensionRatio=0x7f02009a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintEnd_toEndOf=0x7f02009b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintEnd_toStartOf=0x7f02009c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_constraintGuide_begin=0x7f02009d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_constraintGuide_end=0x7f02009e; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintGuide_percent=0x7f02009f; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- */ - public static final int layout_constraintHeight_default=0x7f0200a0; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintHeight_max=0x7f0200a1; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintHeight_min=0x7f0200a2; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintHeight_percent=0x7f0200a3; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintHorizontal_bias=0x7f0200a4; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- */ - public static final int layout_constraintHorizontal_chainStyle=0x7f0200a5; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintHorizontal_weight=0x7f0200a6; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintLeft_creator=0x7f0200a7; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintLeft_toLeftOf=0x7f0200a8; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintLeft_toRightOf=0x7f0200a9; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintRight_creator=0x7f0200aa; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintRight_toLeftOf=0x7f0200ab; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintRight_toRightOf=0x7f0200ac; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintStart_toEndOf=0x7f0200ad; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintStart_toStartOf=0x7f0200ae; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintTop_creator=0x7f0200af; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintTop_toBottomOf=0x7f0200b0; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintTop_toTopOf=0x7f0200b1; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintVertical_bias=0x7f0200b2; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- */ - public static final int layout_constraintVertical_chainStyle=0x7f0200b3; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintVertical_weight=0x7f0200b4; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- */ - public static final int layout_constraintWidth_default=0x7f0200b5; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintWidth_max=0x7f0200b6; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintWidth_min=0x7f0200b7; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintWidth_percent=0x7f0200b8; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_editor_absoluteX=0x7f0200b9; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_editor_absoluteY=0x7f0200ba; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginBottom=0x7f0200bb; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginEnd=0x7f0200bc; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginLeft=0x7f0200bd; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginRight=0x7f0200be; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginStart=0x7f0200bf; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginTop=0x7f0200c0; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
barrier2
chains4
dimensions8
direct1for now only direct & barriers
none0
standard3
- */ - public static final int layout_optimizationLevel=0x7f0200c1; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listChoiceBackgroundIndicator=0x7f0200c2; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listDividerAlertDialog=0x7f0200c3; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listItemLayout=0x7f0200c4; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listLayout=0x7f0200c5; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listMenuViewStyle=0x7f0200c6; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listPopupWindowStyle=0x7f0200c7; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemHeight=0x7f0200c8; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemHeightLarge=0x7f0200c9; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemHeightSmall=0x7f0200ca; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemPaddingLeft=0x7f0200cb; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemPaddingRight=0x7f0200cc; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int logo=0x7f0200cd; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int logoDescription=0x7f0200ce; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int maxButtonHeight=0x7f0200cf; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int measureWithLargestChild=0x7f0200d0; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int multiChoiceItemLayout=0x7f0200d1; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int navigationContentDescription=0x7f0200d2; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int navigationIcon=0x7f0200d3; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
listMode1
normal0
tabMode2
- */ - public static final int navigationMode=0x7f0200d4; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- */ - public static final int numericModifiers=0x7f0200d5; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int overlapAnchor=0x7f0200d6; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingBottomNoButtons=0x7f0200d7; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingEnd=0x7f0200d8; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingStart=0x7f0200d9; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingTopNoTitle=0x7f0200da; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int panelBackground=0x7f0200db; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int panelMenuListTheme=0x7f0200dc; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int panelMenuListWidth=0x7f0200dd; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int popupMenuStyle=0x7f0200de; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int popupTheme=0x7f0200df; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int popupWindowStyle=0x7f0200e0; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int preserveIconSpacing=0x7f0200e1; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int progressBarPadding=0x7f0200e2; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int progressBarStyle=0x7f0200e3; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int queryBackground=0x7f0200e4; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int queryHint=0x7f0200e5; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int radioButtonStyle=0x7f0200e6; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int ratingBarStyle=0x7f0200e7; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int ratingBarStyleIndicator=0x7f0200e8; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int ratingBarStyleSmall=0x7f0200e9; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int searchHintIcon=0x7f0200ea; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int searchIcon=0x7f0200eb; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int searchViewStyle=0x7f0200ec; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int seekBarStyle=0x7f0200ed; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int selectableItemBackground=0x7f0200ee; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int selectableItemBackgroundBorderless=0x7f0200ef; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
always2
collapseActionView8
ifRoom1
never0
withText4
- */ - public static final int showAsAction=0x7f0200f0; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
beginning1
end4
middle2
none0
- */ - public static final int showDividers=0x7f0200f1; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int showText=0x7f0200f2; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int showTitle=0x7f0200f3; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int singleChoiceItemLayout=0x7f0200f4; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int spinBars=0x7f0200f5; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int spinnerDropDownItemStyle=0x7f0200f6; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int spinnerStyle=0x7f0200f7; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int splitTrack=0x7f0200f8; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int srcCompat=0x7f0200f9; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int state_above_anchor=0x7f0200fa; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int subMenuArrow=0x7f0200fb; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int submitBackground=0x7f0200fc; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int subtitle=0x7f0200fd; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int subtitleTextAppearance=0x7f0200fe; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int subtitleTextColor=0x7f0200ff; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int subtitleTextStyle=0x7f020100; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int suggestionRowLayout=0x7f020101; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int switchMinWidth=0x7f020102; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int switchPadding=0x7f020103; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int switchStyle=0x7f020104; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int switchTextAppearance=0x7f020105; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int textAllCaps=0x7f020106; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceLargePopupMenu=0x7f020107; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceListItem=0x7f020108; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceListItemSecondary=0x7f020109; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceListItemSmall=0x7f02010a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearancePopupMenuHeader=0x7f02010b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceSearchResultSubtitle=0x7f02010c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceSearchResultTitle=0x7f02010d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceSmallPopupMenu=0x7f02010e; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int textColorAlertDialogListItem=0x7f02010f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int textColorSearchUrl=0x7f020110; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int theme=0x7f020111; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int thickness=0x7f020112; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int thumbTextPadding=0x7f020113; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int thumbTint=0x7f020114; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int thumbTintMode=0x7f020115; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int tickMark=0x7f020116; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int tickMarkTint=0x7f020117; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int tickMarkTintMode=0x7f020118; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int tint=0x7f020119; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int tintMode=0x7f02011a; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int title=0x7f02011b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMargin=0x7f02011c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginBottom=0x7f02011d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginEnd=0x7f02011e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginStart=0x7f02011f; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginTop=0x7f020120; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMargins=0x7f020121; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int titleTextAppearance=0x7f020122; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int titleTextColor=0x7f020123; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int titleTextStyle=0x7f020124; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int toolbarNavigationButtonStyle=0x7f020125; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int toolbarStyle=0x7f020126; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int tooltipForegroundColor=0x7f020127; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int tooltipFrameBackground=0x7f020128; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int tooltipText=0x7f020129; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int track=0x7f02012a; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int trackTint=0x7f02012b; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int trackTintMode=0x7f02012c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int voiceIcon=0x7f02012d; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowActionBar=0x7f02012e; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowActionBarOverlay=0x7f02012f; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowActionModeOverlay=0x7f020130; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedHeightMajor=0x7f020131; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedHeightMinor=0x7f020132; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedWidthMajor=0x7f020133; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedWidthMinor=0x7f020134; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowMinWidthMajor=0x7f020135; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowMinWidthMinor=0x7f020136; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowNoTitle=0x7f020137; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f030000; - public static final int abc_allow_stacked_button_bar=0x7f030001; - public static final int abc_config_actionMenuItemAllCaps=0x7f030002; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f030003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f030004; - } - public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; - public static final int abc_background_cache_hint_selector_material_light=0x7f040001; - public static final int abc_btn_colored_borderless_text_material=0x7f040002; - public static final int abc_btn_colored_text_material=0x7f040003; - public static final int abc_color_highlight_material=0x7f040004; - public static final int abc_hint_foreground_material_dark=0x7f040005; - public static final int abc_hint_foreground_material_light=0x7f040006; - public static final int abc_input_method_navigation_guard=0x7f040007; - public static final int abc_primary_text_disable_only_material_dark=0x7f040008; - public static final int abc_primary_text_disable_only_material_light=0x7f040009; - public static final int abc_primary_text_material_dark=0x7f04000a; - public static final int abc_primary_text_material_light=0x7f04000b; - public static final int abc_search_url_text=0x7f04000c; - public static final int abc_search_url_text_normal=0x7f04000d; - public static final int abc_search_url_text_pressed=0x7f04000e; - public static final int abc_search_url_text_selected=0x7f04000f; - public static final int abc_secondary_text_material_dark=0x7f040010; - public static final int abc_secondary_text_material_light=0x7f040011; - public static final int abc_tint_btn_checkable=0x7f040012; - public static final int abc_tint_default=0x7f040013; - public static final int abc_tint_edittext=0x7f040014; - public static final int abc_tint_seek_thumb=0x7f040015; - public static final int abc_tint_spinner=0x7f040016; - public static final int abc_tint_switch_track=0x7f040017; - public static final int accent_material_dark=0x7f040018; - public static final int accent_material_light=0x7f040019; - public static final int background_floating_material_dark=0x7f04001a; - public static final int background_floating_material_light=0x7f04001b; - public static final int background_material_dark=0x7f04001c; - public static final int background_material_light=0x7f04001d; - public static final int bright_foreground_disabled_material_dark=0x7f04001e; - public static final int bright_foreground_disabled_material_light=0x7f04001f; - public static final int bright_foreground_inverse_material_dark=0x7f040020; - public static final int bright_foreground_inverse_material_light=0x7f040021; - public static final int bright_foreground_material_dark=0x7f040022; - public static final int bright_foreground_material_light=0x7f040023; - public static final int button_material_dark=0x7f040024; - public static final int button_material_light=0x7f040025; - public static final int dim_foreground_disabled_material_dark=0x7f040026; - public static final int dim_foreground_disabled_material_light=0x7f040027; - public static final int dim_foreground_material_dark=0x7f040028; - public static final int dim_foreground_material_light=0x7f040029; - public static final int error_color_material=0x7f04002a; - public static final int foreground_material_dark=0x7f04002b; - public static final int foreground_material_light=0x7f04002c; - public static final int highlighted_text_material_dark=0x7f04002d; - public static final int highlighted_text_material_light=0x7f04002e; - public static final int material_blue_grey_800=0x7f04002f; - public static final int material_blue_grey_900=0x7f040030; - public static final int material_blue_grey_950=0x7f040031; - public static final int material_deep_teal_200=0x7f040032; - public static final int material_deep_teal_500=0x7f040033; - public static final int material_grey_100=0x7f040034; - public static final int material_grey_300=0x7f040035; - public static final int material_grey_50=0x7f040036; - public static final int material_grey_600=0x7f040037; - public static final int material_grey_800=0x7f040038; - public static final int material_grey_850=0x7f040039; - public static final int material_grey_900=0x7f04003a; - public static final int notification_action_color_filter=0x7f04003b; - public static final int notification_icon_bg_color=0x7f04003c; - public static final int notification_material_background_media_default_color=0x7f04003d; - public static final int primary_dark_material_dark=0x7f04003e; - public static final int primary_dark_material_light=0x7f04003f; - public static final int primary_material_dark=0x7f040040; - public static final int primary_material_light=0x7f040041; - public static final int primary_text_default_material_dark=0x7f040042; - public static final int primary_text_default_material_light=0x7f040043; - public static final int primary_text_disabled_material_dark=0x7f040044; - public static final int primary_text_disabled_material_light=0x7f040045; - public static final int ripple_material_dark=0x7f040046; - public static final int ripple_material_light=0x7f040047; - public static final int secondary_text_default_material_dark=0x7f040048; - public static final int secondary_text_default_material_light=0x7f040049; - public static final int secondary_text_disabled_material_dark=0x7f04004a; - public static final int secondary_text_disabled_material_light=0x7f04004b; - public static final int switch_thumb_disabled_material_dark=0x7f04004c; - public static final int switch_thumb_disabled_material_light=0x7f04004d; - public static final int switch_thumb_material_dark=0x7f04004e; - public static final int switch_thumb_material_light=0x7f04004f; - public static final int switch_thumb_normal_material_dark=0x7f040050; - public static final int switch_thumb_normal_material_light=0x7f040051; - public static final int tooltip_background_dark=0x7f040052; - public static final int tooltip_background_light=0x7f040053; - } - public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f050000; - public static final int abc_action_bar_content_inset_with_nav=0x7f050001; - public static final int abc_action_bar_default_height_material=0x7f050002; - public static final int abc_action_bar_default_padding_end_material=0x7f050003; - public static final int abc_action_bar_default_padding_start_material=0x7f050004; - public static final int abc_action_bar_elevation_material=0x7f050005; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; - public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; - public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; - public static final int abc_action_bar_progress_bar_size=0x7f050009; - public static final int abc_action_bar_stacked_max_height=0x7f05000a; - public static final int abc_action_bar_stacked_tab_max_width=0x7f05000b; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000c; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000d; - public static final int abc_action_button_min_height_material=0x7f05000e; - public static final int abc_action_button_min_width_material=0x7f05000f; - public static final int abc_action_button_min_width_overflow_material=0x7f050010; - public static final int abc_alert_dialog_button_bar_height=0x7f050011; - public static final int abc_button_inset_horizontal_material=0x7f050012; - public static final int abc_button_inset_vertical_material=0x7f050013; - public static final int abc_button_padding_horizontal_material=0x7f050014; - public static final int abc_button_padding_vertical_material=0x7f050015; - public static final int abc_cascading_menus_min_smallest_width=0x7f050016; - public static final int abc_config_prefDialogWidth=0x7f050017; - public static final int abc_control_corner_material=0x7f050018; - public static final int abc_control_inset_material=0x7f050019; - public static final int abc_control_padding_material=0x7f05001a; - public static final int abc_dialog_fixed_height_major=0x7f05001b; - public static final int abc_dialog_fixed_height_minor=0x7f05001c; - public static final int abc_dialog_fixed_width_major=0x7f05001d; - public static final int abc_dialog_fixed_width_minor=0x7f05001e; - public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f05001f; - public static final int abc_dialog_list_padding_top_no_title=0x7f050020; - public static final int abc_dialog_min_width_major=0x7f050021; - public static final int abc_dialog_min_width_minor=0x7f050022; - public static final int abc_dialog_padding_material=0x7f050023; - public static final int abc_dialog_padding_top_material=0x7f050024; - public static final int abc_dialog_title_divider_material=0x7f050025; - public static final int abc_disabled_alpha_material_dark=0x7f050026; - public static final int abc_disabled_alpha_material_light=0x7f050027; - public static final int abc_dropdownitem_icon_width=0x7f050028; - public static final int abc_dropdownitem_text_padding_left=0x7f050029; - public static final int abc_dropdownitem_text_padding_right=0x7f05002a; - public static final int abc_edit_text_inset_bottom_material=0x7f05002b; - public static final int abc_edit_text_inset_horizontal_material=0x7f05002c; - public static final int abc_edit_text_inset_top_material=0x7f05002d; - public static final int abc_floating_window_z=0x7f05002e; - public static final int abc_list_item_padding_horizontal_material=0x7f05002f; - public static final int abc_panel_menu_list_width=0x7f050030; - public static final int abc_progress_bar_height_material=0x7f050031; - public static final int abc_search_view_preferred_height=0x7f050032; - public static final int abc_search_view_preferred_width=0x7f050033; - public static final int abc_seekbar_track_background_height_material=0x7f050034; - public static final int abc_seekbar_track_progress_height_material=0x7f050035; - public static final int abc_select_dialog_padding_start_material=0x7f050036; - public static final int abc_switch_padding=0x7f050037; - public static final int abc_text_size_body_1_material=0x7f050038; - public static final int abc_text_size_body_2_material=0x7f050039; - public static final int abc_text_size_button_material=0x7f05003a; - public static final int abc_text_size_caption_material=0x7f05003b; - public static final int abc_text_size_display_1_material=0x7f05003c; - public static final int abc_text_size_display_2_material=0x7f05003d; - public static final int abc_text_size_display_3_material=0x7f05003e; - public static final int abc_text_size_display_4_material=0x7f05003f; - public static final int abc_text_size_headline_material=0x7f050040; - public static final int abc_text_size_large_material=0x7f050041; - public static final int abc_text_size_medium_material=0x7f050042; - public static final int abc_text_size_menu_header_material=0x7f050043; - public static final int abc_text_size_menu_material=0x7f050044; - public static final int abc_text_size_small_material=0x7f050045; - public static final int abc_text_size_subhead_material=0x7f050046; - public static final int abc_text_size_subtitle_material_toolbar=0x7f050047; - public static final int abc_text_size_title_material=0x7f050048; - public static final int abc_text_size_title_material_toolbar=0x7f050049; - public static final int compat_button_inset_horizontal_material=0x7f05004a; - public static final int compat_button_inset_vertical_material=0x7f05004b; - public static final int compat_button_padding_horizontal_material=0x7f05004c; - public static final int compat_button_padding_vertical_material=0x7f05004d; - public static final int compat_control_corner_material=0x7f05004e; - public static final int disabled_alpha_material_dark=0x7f05004f; - public static final int disabled_alpha_material_light=0x7f050050; - public static final int highlight_alpha_material_colored=0x7f050051; - public static final int highlight_alpha_material_dark=0x7f050052; - public static final int highlight_alpha_material_light=0x7f050053; - public static final int hint_alpha_material_dark=0x7f050054; - public static final int hint_alpha_material_light=0x7f050055; - public static final int hint_pressed_alpha_material_dark=0x7f050056; - public static final int hint_pressed_alpha_material_light=0x7f050057; - public static final int notification_action_icon_size=0x7f050058; - public static final int notification_action_text_size=0x7f050059; - public static final int notification_big_circle_margin=0x7f05005a; - public static final int notification_content_margin_start=0x7f05005b; - public static final int notification_large_icon_height=0x7f05005c; - public static final int notification_large_icon_width=0x7f05005d; - public static final int notification_main_column_padding_top=0x7f05005e; - public static final int notification_media_narrow_margin=0x7f05005f; - public static final int notification_right_icon_size=0x7f050060; - public static final int notification_right_side_padding_top=0x7f050061; - public static final int notification_small_icon_background_padding=0x7f050062; - public static final int notification_small_icon_size_as_large=0x7f050063; - public static final int notification_subtext_size=0x7f050064; - public static final int notification_top_pad=0x7f050065; - public static final int notification_top_pad_large_text=0x7f050066; - public static final int tooltip_corner_radius=0x7f050067; - public static final int tooltip_horizontal_padding=0x7f050068; - public static final int tooltip_margin=0x7f050069; - public static final int tooltip_precise_anchor_extra_offset=0x7f05006a; - public static final int tooltip_precise_anchor_threshold=0x7f05006b; - public static final int tooltip_vertical_padding=0x7f05006c; - public static final int tooltip_y_offset_non_touch=0x7f05006d; - public static final int tooltip_y_offset_touch=0x7f05006e; - } - public static final class drawable { - public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; - public static final int abc_action_bar_item_background_material=0x7f060001; - public static final int abc_btn_borderless_material=0x7f060002; - public static final int abc_btn_check_material=0x7f060003; - public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; - public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; - public static final int abc_btn_colored_material=0x7f060006; - public static final int abc_btn_default_mtrl_shape=0x7f060007; - public static final int abc_btn_radio_material=0x7f060008; - public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; - public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; - public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; - public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; - public static final int abc_cab_background_internal_bg=0x7f06000d; - public static final int abc_cab_background_top_material=0x7f06000e; - public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; - public static final int abc_control_background_material=0x7f060010; - public static final int abc_dialog_material_background=0x7f060011; - public static final int abc_edit_text_material=0x7f060012; - public static final int abc_ic_ab_back_material=0x7f060013; - public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; - public static final int abc_ic_clear_material=0x7f060015; - public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; - public static final int abc_ic_go_search_api_material=0x7f060017; - public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; - public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; - public static final int abc_ic_menu_overflow_material=0x7f06001a; - public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; - public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; - public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; - public static final int abc_ic_search_api_material=0x7f06001e; - public static final int abc_ic_star_black_16dp=0x7f06001f; - public static final int abc_ic_star_black_36dp=0x7f060020; - public static final int abc_ic_star_black_48dp=0x7f060021; - public static final int abc_ic_star_half_black_16dp=0x7f060022; - public static final int abc_ic_star_half_black_36dp=0x7f060023; - public static final int abc_ic_star_half_black_48dp=0x7f060024; - public static final int abc_ic_voice_search_api_material=0x7f060025; - public static final int abc_item_background_holo_dark=0x7f060026; - public static final int abc_item_background_holo_light=0x7f060027; - public static final int abc_list_divider_mtrl_alpha=0x7f060028; - public static final int abc_list_focused_holo=0x7f060029; - public static final int abc_list_longpressed_holo=0x7f06002a; - public static final int abc_list_pressed_holo_dark=0x7f06002b; - public static final int abc_list_pressed_holo_light=0x7f06002c; - public static final int abc_list_selector_background_transition_holo_dark=0x7f06002d; - public static final int abc_list_selector_background_transition_holo_light=0x7f06002e; - public static final int abc_list_selector_disabled_holo_dark=0x7f06002f; - public static final int abc_list_selector_disabled_holo_light=0x7f060030; - public static final int abc_list_selector_holo_dark=0x7f060031; - public static final int abc_list_selector_holo_light=0x7f060032; - public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060033; - public static final int abc_popup_background_mtrl_mult=0x7f060034; - public static final int abc_ratingbar_indicator_material=0x7f060035; - public static final int abc_ratingbar_material=0x7f060036; - public static final int abc_ratingbar_small_material=0x7f060037; - public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060038; - public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f060039; - public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003a; - public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003b; - public static final int abc_scrubber_track_mtrl_alpha=0x7f06003c; - public static final int abc_seekbar_thumb_material=0x7f06003d; - public static final int abc_seekbar_tick_mark_material=0x7f06003e; - public static final int abc_seekbar_track_material=0x7f06003f; - public static final int abc_spinner_mtrl_am_alpha=0x7f060040; - public static final int abc_spinner_textfield_background_material=0x7f060041; - public static final int abc_switch_thumb_material=0x7f060042; - public static final int abc_switch_track_mtrl_alpha=0x7f060043; - public static final int abc_tab_indicator_material=0x7f060044; - public static final int abc_tab_indicator_mtrl_alpha=0x7f060045; - public static final int abc_text_cursor_material=0x7f060046; - public static final int abc_text_select_handle_left_mtrl_dark=0x7f060047; - public static final int abc_text_select_handle_left_mtrl_light=0x7f060048; - public static final int abc_text_select_handle_middle_mtrl_dark=0x7f060049; - public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004a; - public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004b; - public static final int abc_text_select_handle_right_mtrl_light=0x7f06004c; - public static final int abc_textfield_activated_mtrl_alpha=0x7f06004d; - public static final int abc_textfield_default_mtrl_alpha=0x7f06004e; - public static final int abc_textfield_search_activated_mtrl_alpha=0x7f06004f; - public static final int abc_textfield_search_default_mtrl_alpha=0x7f060050; - public static final int abc_textfield_search_material=0x7f060051; - public static final int abc_vector_test=0x7f060052; - public static final int notification_action_background=0x7f060053; - public static final int notification_bg=0x7f060054; - public static final int notification_bg_low=0x7f060055; - public static final int notification_bg_low_normal=0x7f060056; - public static final int notification_bg_low_pressed=0x7f060057; - public static final int notification_bg_normal=0x7f060058; - public static final int notification_bg_normal_pressed=0x7f060059; - public static final int notification_icon_background=0x7f06005a; - public static final int notification_template_icon_bg=0x7f06005b; - public static final int notification_template_icon_low_bg=0x7f06005c; - public static final int notification_tile_bg=0x7f06005d; - public static final int notify_panel_notification_icon_bg=0x7f06005e; - public static final int tooltip_frame_dark=0x7f06005f; - public static final int tooltip_frame_light=0x7f060060; - } - public static final class id { - public static final int ALT=0x7f070000; - public static final int CTRL=0x7f070001; - public static final int FUNCTION=0x7f070002; - public static final int META=0x7f070003; - public static final int SHIFT=0x7f070004; - public static final int SYM=0x7f070005; - public static final int action0=0x7f070006; - public static final int action_bar=0x7f070007; - public static final int action_bar_activity_content=0x7f070008; - public static final int action_bar_container=0x7f070009; - public static final int action_bar_root=0x7f07000a; - public static final int action_bar_spinner=0x7f07000b; - public static final int action_bar_subtitle=0x7f07000c; - public static final int action_bar_title=0x7f07000d; - public static final int action_container=0x7f07000e; - public static final int action_context_bar=0x7f07000f; - public static final int action_divider=0x7f070010; - public static final int action_image=0x7f070011; - public static final int action_menu_divider=0x7f070012; - public static final int action_menu_presenter=0x7f070013; - public static final int action_mode_bar=0x7f070014; - public static final int action_mode_bar_stub=0x7f070015; - public static final int action_mode_close_button=0x7f070016; - public static final int action_text=0x7f070017; - public static final int actions=0x7f070018; - public static final int activity_chooser_view_content=0x7f070019; - public static final int add=0x7f07001a; - public static final int alertTitle=0x7f07001b; - public static final int always=0x7f07001c; - public static final int async=0x7f07001d; - public static final int barrier=0x7f07001e; - public static final int beginning=0x7f07001f; - public static final int blocking=0x7f070020; - public static final int bottom=0x7f070021; - public static final int buttonPanel=0x7f070022; - public static final int cancel_action=0x7f070023; - public static final int chains=0x7f070024; - public static final int checkbox=0x7f070025; - public static final int chronometer=0x7f070026; - public static final int collapseActionView=0x7f070027; - public static final int contentPanel=0x7f070028; - public static final int custom=0x7f070029; - public static final int customPanel=0x7f07002a; - public static final int decor_content_parent=0x7f07002b; - public static final int default_activity_button=0x7f07002c; - public static final int dimensions=0x7f07002d; - public static final int direct=0x7f07002e; - public static final int disableHome=0x7f07002f; - public static final int edit_query=0x7f070030; - public static final int end=0x7f070031; - public static final int end_padder=0x7f070032; - public static final int expand_activities_button=0x7f070033; - public static final int expanded_menu=0x7f070034; - public static final int forever=0x7f070035; - public static final int gone=0x7f070036; - public static final int home=0x7f070037; - public static final int homeAsUp=0x7f070038; - public static final int icon=0x7f070039; - public static final int icon_group=0x7f07003a; - public static final int ifRoom=0x7f07003b; - public static final int image=0x7f07003c; - public static final int info=0x7f07003d; - public static final int invisible=0x7f07003e; - public static final int italic=0x7f07003f; - public static final int left=0x7f070040; - public static final int line1=0x7f070041; - public static final int line3=0x7f070042; - public static final int listMode=0x7f070043; - public static final int list_item=0x7f070044; - public static final int media_actions=0x7f070045; - public static final int message=0x7f070046; - public static final int middle=0x7f070047; - public static final int multiply=0x7f070048; - public static final int never=0x7f070049; - public static final int none=0x7f07004a; - public static final int normal=0x7f07004b; - public static final int notification_background=0x7f07004c; - public static final int notification_main_column=0x7f07004d; - public static final int notification_main_column_container=0x7f07004e; - public static final int packed=0x7f07004f; - public static final int parent=0x7f070050; - public static final int parentPanel=0x7f070051; - public static final int percent=0x7f070052; - public static final int progress_circular=0x7f070053; - public static final int progress_horizontal=0x7f070054; - public static final int radio=0x7f070055; - public static final int right=0x7f070056; - public static final int right_icon=0x7f070057; - public static final int right_side=0x7f070058; - public static final int screen=0x7f070059; - public static final int scrollIndicatorDown=0x7f07005a; - public static final int scrollIndicatorUp=0x7f07005b; - public static final int scrollView=0x7f07005c; - public static final int search_badge=0x7f07005d; - public static final int search_bar=0x7f07005e; - public static final int search_button=0x7f07005f; - public static final int search_close_btn=0x7f070060; - public static final int search_edit_frame=0x7f070061; - public static final int search_go_btn=0x7f070062; - public static final int search_mag_icon=0x7f070063; - public static final int search_plate=0x7f070064; - public static final int search_src_text=0x7f070065; - public static final int search_voice_btn=0x7f070066; - public static final int select_dialog_listview=0x7f070067; - public static final int shortcut=0x7f070068; - public static final int showCustom=0x7f070069; - public static final int showHome=0x7f07006a; - public static final int showTitle=0x7f07006b; - public static final int spacer=0x7f07006c; - public static final int split_action_bar=0x7f07006d; - public static final int spread=0x7f07006e; - public static final int spread_inside=0x7f07006f; - public static final int src_atop=0x7f070070; - public static final int src_in=0x7f070071; - public static final int src_over=0x7f070072; - public static final int standard=0x7f070073; - public static final int start=0x7f070074; - public static final int status_bar_latest_event_content=0x7f070075; - public static final int submenuarrow=0x7f070076; - public static final int submit_area=0x7f070077; - public static final int tabMode=0x7f070078; - public static final int text=0x7f070079; - public static final int text2=0x7f07007a; - public static final int textSpacerNoButtons=0x7f07007b; - public static final int textSpacerNoTitle=0x7f07007c; - public static final int time=0x7f07007d; - public static final int title=0x7f07007e; - public static final int titleDividerNoCustom=0x7f07007f; - public static final int title_template=0x7f070080; - public static final int top=0x7f070081; - public static final int topPanel=0x7f070082; - public static final int uniform=0x7f070083; - public static final int up=0x7f070084; - public static final int useLogo=0x7f070085; - public static final int withText=0x7f070086; - public static final int wrap=0x7f070087; - public static final int wrap_content=0x7f070088; - } - public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f080000; - public static final int abc_config_activityShortDur=0x7f080001; - public static final int cancel_button_image_alpha=0x7f080002; - public static final int config_tooltipAnimTime=0x7f080003; - public static final int status_bar_notification_info_maxnum=0x7f080004; - } - public static final class layout { - public static final int abc_action_bar_title_item=0x7f090000; - public static final int abc_action_bar_up_container=0x7f090001; - public static final int abc_action_bar_view_list_nav_layout=0x7f090002; - public static final int abc_action_menu_item_layout=0x7f090003; - public static final int abc_action_menu_layout=0x7f090004; - public static final int abc_action_mode_bar=0x7f090005; - public static final int abc_action_mode_close_item_material=0x7f090006; - public static final int abc_activity_chooser_view=0x7f090007; - public static final int abc_activity_chooser_view_list_item=0x7f090008; - public static final int abc_alert_dialog_button_bar_material=0x7f090009; - public static final int abc_alert_dialog_material=0x7f09000a; - public static final int abc_alert_dialog_title_material=0x7f09000b; - public static final int abc_dialog_title_material=0x7f09000c; - public static final int abc_expanded_menu_layout=0x7f09000d; - public static final int abc_list_menu_item_checkbox=0x7f09000e; - public static final int abc_list_menu_item_icon=0x7f09000f; - public static final int abc_list_menu_item_layout=0x7f090010; - public static final int abc_list_menu_item_radio=0x7f090011; - public static final int abc_popup_menu_header_item_layout=0x7f090012; - public static final int abc_popup_menu_item_layout=0x7f090013; - public static final int abc_screen_content_include=0x7f090014; - public static final int abc_screen_simple=0x7f090015; - public static final int abc_screen_simple_overlay_action_mode=0x7f090016; - public static final int abc_screen_toolbar=0x7f090017; - public static final int abc_search_dropdown_item_icons_2line=0x7f090018; - public static final int abc_search_view=0x7f090019; - public static final int abc_select_dialog_material=0x7f09001a; - public static final int notification_action=0x7f09001b; - public static final int notification_action_tombstone=0x7f09001c; - public static final int notification_media_action=0x7f09001d; - public static final int notification_media_cancel_action=0x7f09001e; - public static final int notification_template_big_media=0x7f09001f; - public static final int notification_template_big_media_custom=0x7f090020; - public static final int notification_template_big_media_narrow=0x7f090021; - public static final int notification_template_big_media_narrow_custom=0x7f090022; - public static final int notification_template_custom_big=0x7f090023; - public static final int notification_template_icon_group=0x7f090024; - public static final int notification_template_lines_media=0x7f090025; - public static final int notification_template_media=0x7f090026; - public static final int notification_template_media_custom=0x7f090027; - public static final int notification_template_part_chronometer=0x7f090028; - public static final int notification_template_part_time=0x7f090029; - public static final int select_dialog_item_material=0x7f09002a; - public static final int select_dialog_multichoice_material=0x7f09002b; - public static final int select_dialog_singlechoice_material=0x7f09002c; - public static final int support_simple_spinner_dropdown_item=0x7f09002d; - public static final int tooltip=0x7f09002e; - } - public static final class string { - public static final int abc_action_bar_home_description=0x7f0a0000; - public static final int abc_action_bar_home_description_format=0x7f0a0001; - public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0002; - public static final int abc_action_bar_up_description=0x7f0a0003; - public static final int abc_action_menu_overflow_description=0x7f0a0004; - public static final int abc_action_mode_done=0x7f0a0005; - public static final int abc_activity_chooser_view_see_all=0x7f0a0006; - public static final int abc_activitychooserview_choose_application=0x7f0a0007; - public static final int abc_capital_off=0x7f0a0008; - public static final int abc_capital_on=0x7f0a0009; - public static final int abc_font_family_body_1_material=0x7f0a000a; - public static final int abc_font_family_body_2_material=0x7f0a000b; - public static final int abc_font_family_button_material=0x7f0a000c; - public static final int abc_font_family_caption_material=0x7f0a000d; - public static final int abc_font_family_display_1_material=0x7f0a000e; - public static final int abc_font_family_display_2_material=0x7f0a000f; - public static final int abc_font_family_display_3_material=0x7f0a0010; - public static final int abc_font_family_display_4_material=0x7f0a0011; - public static final int abc_font_family_headline_material=0x7f0a0012; - public static final int abc_font_family_menu_material=0x7f0a0013; - public static final int abc_font_family_subhead_material=0x7f0a0014; - public static final int abc_font_family_title_material=0x7f0a0015; - public static final int abc_search_hint=0x7f0a0016; - public static final int abc_searchview_description_clear=0x7f0a0017; - public static final int abc_searchview_description_query=0x7f0a0018; - public static final int abc_searchview_description_search=0x7f0a0019; - public static final int abc_searchview_description_submit=0x7f0a001a; - public static final int abc_searchview_description_voice=0x7f0a001b; - public static final int abc_shareactionprovider_share_with=0x7f0a001c; - public static final int abc_shareactionprovider_share_with_application=0x7f0a001d; - public static final int abc_toolbar_collapse_description=0x7f0a001e; - public static final int search_menu_title=0x7f0a001f; - public static final int status_bar_notification_info_overflow=0x7f0a0020; - } - public static final class style { - public static final int AlertDialog_AppCompat=0x7f0b0000; - public static final int AlertDialog_AppCompat_Light=0x7f0b0001; - public static final int Animation_AppCompat_Dialog=0x7f0b0002; - public static final int Animation_AppCompat_DropDownUp=0x7f0b0003; - public static final int Animation_AppCompat_Tooltip=0x7f0b0004; - public static final int Base_AlertDialog_AppCompat=0x7f0b0005; - public static final int Base_AlertDialog_AppCompat_Light=0x7f0b0006; - public static final int Base_Animation_AppCompat_Dialog=0x7f0b0007; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b0008; - public static final int Base_Animation_AppCompat_Tooltip=0x7f0b0009; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b000b; - public static final int Base_DialogWindowTitle_AppCompat=0x7f0b000a; - public static final int Base_TextAppearance_AppCompat=0x7f0b000c; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b000d; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b000e; - public static final int Base_TextAppearance_AppCompat_Button=0x7f0b000f; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0010; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0011; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0012; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0013; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0014; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0015; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b0016; - public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0017; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b0018; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0019; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b001a; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b001b; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b001d; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b001e; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b001f; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0020; - public static final int Base_TextAppearance_AppCompat_Small=0x7f0b0021; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b0022; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b0023; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b0024; - public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0025; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b0026; - public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0b0027; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0028; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0029; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b002a; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b002b; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b002c; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b002d; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b002e; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b002f; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0030; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0031; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0032; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0033; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0034; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0035; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0036; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0037; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0038; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0039; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b003a; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b003b; - public static final int Base_ThemeOverlay_AppCompat=0x7f0b004a; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b004b; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b004c; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b004d; - public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b004e; - public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b004f; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b0050; - public static final int Base_Theme_AppCompat=0x7f0b003c; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b003d; - public static final int Base_Theme_AppCompat_Dialog=0x7f0b003e; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0042; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b003f; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b0040; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0041; - public static final int Base_Theme_AppCompat_Light=0x7f0b0043; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b0044; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0045; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0049; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0046; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b0047; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0048; - public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b0053; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0051; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0052; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0054; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0055; - public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b005a; - public static final int Base_V21_Theme_AppCompat=0x7f0b0056; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0057; - public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0058; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0059; - public static final int Base_V22_Theme_AppCompat=0x7f0b005b; - public static final int Base_V22_Theme_AppCompat_Light=0x7f0b005c; - public static final int Base_V23_Theme_AppCompat=0x7f0b005d; - public static final int Base_V23_Theme_AppCompat_Light=0x7f0b005e; - public static final int Base_V26_Theme_AppCompat=0x7f0b005f; - public static final int Base_V26_Theme_AppCompat_Light=0x7f0b0060; - public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0b0061; - public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b0066; - public static final int Base_V7_Theme_AppCompat=0x7f0b0062; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b0063; - public static final int Base_V7_Theme_AppCompat_Light=0x7f0b0064; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b0065; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b0067; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b0068; - public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0b0069; - public static final int Base_Widget_AppCompat_ActionBar=0x7f0b006a; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b006b; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b006c; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b006d; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b006e; - public static final int Base_Widget_AppCompat_ActionButton=0x7f0b006f; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0070; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0071; - public static final int Base_Widget_AppCompat_ActionMode=0x7f0b0072; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b0073; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0074; - public static final int Base_Widget_AppCompat_Button=0x7f0b0075; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007b; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b007c; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b0076; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b0077; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0078; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b0079; - public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007a; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b007d; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b007e; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b007f; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b0080; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b0081; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082; - public static final int Base_Widget_AppCompat_EditText=0x7f0b0083; - public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0084; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b0085; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0086; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0087; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0088; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0089; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b008a; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b008b; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b008c; - public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b008d; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b008e; - public static final int Base_Widget_AppCompat_ListView=0x7f0b008f; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0090; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0091; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0092; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0093; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b0094; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b0095; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0096; - public static final int Base_Widget_AppCompat_RatingBar=0x7f0b0097; - public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b0098; - public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b0099; - public static final int Base_Widget_AppCompat_SearchView=0x7f0b009a; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b009b; - public static final int Base_Widget_AppCompat_SeekBar=0x7f0b009c; - public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b009d; - public static final int Base_Widget_AppCompat_Spinner=0x7f0b009e; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b009f; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b00a0; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00a1; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00a2; - public static final int Platform_AppCompat=0x7f0b00a3; - public static final int Platform_AppCompat_Light=0x7f0b00a4; - public static final int Platform_ThemeOverlay_AppCompat=0x7f0b00a5; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b00a6; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b00a7; - public static final int Platform_V11_AppCompat=0x7f0b00a8; - public static final int Platform_V11_AppCompat_Light=0x7f0b00a9; - public static final int Platform_V14_AppCompat=0x7f0b00aa; - public static final int Platform_V14_AppCompat_Light=0x7f0b00ab; - public static final int Platform_V21_AppCompat=0x7f0b00ac; - public static final int Platform_V21_AppCompat_Light=0x7f0b00ad; - public static final int Platform_V25_AppCompat=0x7f0b00ae; - public static final int Platform_V25_AppCompat_Light=0x7f0b00af; - public static final int Platform_Widget_AppCompat_Spinner=0x7f0b00b0; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b00b1; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b00b2; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b00b3; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b00b4; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b00b5; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b00b6; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b00bc; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b00b7; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b00b8; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b00b9; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b00ba; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b00bb; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b00bd; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b00be; - public static final int TextAppearance_AppCompat=0x7f0b00bf; - public static final int TextAppearance_AppCompat_Body1=0x7f0b00c0; - public static final int TextAppearance_AppCompat_Body2=0x7f0b00c1; - public static final int TextAppearance_AppCompat_Button=0x7f0b00c2; - public static final int TextAppearance_AppCompat_Caption=0x7f0b00c3; - public static final int TextAppearance_AppCompat_Display1=0x7f0b00c4; - public static final int TextAppearance_AppCompat_Display2=0x7f0b00c5; - public static final int TextAppearance_AppCompat_Display3=0x7f0b00c6; - public static final int TextAppearance_AppCompat_Display4=0x7f0b00c7; - public static final int TextAppearance_AppCompat_Headline=0x7f0b00c8; - public static final int TextAppearance_AppCompat_Inverse=0x7f0b00c9; - public static final int TextAppearance_AppCompat_Large=0x7f0b00ca; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00cb; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00cc; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00cd; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ce; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00cf; - public static final int TextAppearance_AppCompat_Medium=0x7f0b00d0; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00d1; - public static final int TextAppearance_AppCompat_Menu=0x7f0b00d2; - public static final int TextAppearance_AppCompat_Notification=0x7f0b00d3; - public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b00d4; - public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b00d5; - public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00d6; - public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00d7; - public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b00d8; - public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b00d9; - public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b00da; - public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b00db; - public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b00dc; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00dd; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00de; - public static final int TextAppearance_AppCompat_Small=0x7f0b00df; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00e0; - public static final int TextAppearance_AppCompat_Subhead=0x7f0b00e1; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00e2; - public static final int TextAppearance_AppCompat_Title=0x7f0b00e3; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00e4; - public static final int TextAppearance_AppCompat_Tooltip=0x7f0b00e5; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00e6; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00e7; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00e8; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00e9; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ea; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b00eb; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b00ec; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b00ed; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b00ee; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b00ef; - public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00f0; - public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00f1; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00f2; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00f3; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b00f4; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b00f5; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b00f6; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b00f7; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00f8; - public static final int TextAppearance_Compat_Notification=0x7f0b00f9; - public static final int TextAppearance_Compat_Notification_Info=0x7f0b00fa; - public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0b00fb; - public static final int TextAppearance_Compat_Notification_Line2=0x7f0b00fc; - public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0b00fd; - public static final int TextAppearance_Compat_Notification_Media=0x7f0b00fe; - public static final int TextAppearance_Compat_Notification_Time=0x7f0b00ff; - public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0b0100; - public static final int TextAppearance_Compat_Notification_Title=0x7f0b0101; - public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0b0102; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0103; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0104; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0105; - public static final int ThemeOverlay_AppCompat=0x7f0b011b; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b011c; - public static final int ThemeOverlay_AppCompat_Dark=0x7f0b011d; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b011e; - public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b011f; - public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0120; - public static final int ThemeOverlay_AppCompat_Light=0x7f0b0121; - public static final int Theme_AppCompat=0x7f0b0106; - public static final int Theme_AppCompat_CompactMenu=0x7f0b0107; - public static final int Theme_AppCompat_DayNight=0x7f0b0108; - public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0109; - public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b010a; - public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b010d; - public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b010b; - public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b010c; - public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b010e; - public static final int Theme_AppCompat_Dialog=0x7f0b010f; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0112; - public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0110; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0111; - public static final int Theme_AppCompat_Light=0x7f0b0113; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0114; - public static final int Theme_AppCompat_Light_Dialog=0x7f0b0115; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0118; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b0116; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0117; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b0119; - public static final int Theme_AppCompat_NoActionBar=0x7f0b011a; - public static final int Widget_AppCompat_ActionBar=0x7f0b0122; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0123; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0124; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0125; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0126; - public static final int Widget_AppCompat_ActionButton=0x7f0b0127; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b0128; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0129; - public static final int Widget_AppCompat_ActionMode=0x7f0b012a; - public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012b; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b012c; - public static final int Widget_AppCompat_Button=0x7f0b012d; - public static final int Widget_AppCompat_ButtonBar=0x7f0b0133; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0134; - public static final int Widget_AppCompat_Button_Borderless=0x7f0b012e; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b012f; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0130; - public static final int Widget_AppCompat_Button_Colored=0x7f0b0131; - public static final int Widget_AppCompat_Button_Small=0x7f0b0132; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0135; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0136; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0137; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0138; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0139; - public static final int Widget_AppCompat_EditText=0x7f0b013a; - public static final int Widget_AppCompat_ImageButton=0x7f0b013b; - public static final int Widget_AppCompat_Light_ActionBar=0x7f0b013c; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b013d; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b013e; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b013f; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0140; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0141; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0142; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0143; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0144; - public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0145; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0146; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0147; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0148; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0149; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014a; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014b; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b014c; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b014d; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b014e; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b014f; - public static final int Widget_AppCompat_Light_SearchView=0x7f0b0150; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0151; - public static final int Widget_AppCompat_ListMenuView=0x7f0b0152; - public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0153; - public static final int Widget_AppCompat_ListView=0x7f0b0154; - public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0155; - public static final int Widget_AppCompat_ListView_Menu=0x7f0b0156; - public static final int Widget_AppCompat_PopupMenu=0x7f0b0157; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0158; - public static final int Widget_AppCompat_PopupWindow=0x7f0b0159; - public static final int Widget_AppCompat_ProgressBar=0x7f0b015a; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015b; - public static final int Widget_AppCompat_RatingBar=0x7f0b015c; - public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b015d; - public static final int Widget_AppCompat_RatingBar_Small=0x7f0b015e; - public static final int Widget_AppCompat_SearchView=0x7f0b015f; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0160; - public static final int Widget_AppCompat_SeekBar=0x7f0b0161; - public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0162; - public static final int Widget_AppCompat_Spinner=0x7f0b0163; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0164; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0165; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b0166; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b0167; - public static final int Widget_AppCompat_Toolbar=0x7f0b0168; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0169; - public static final int Widget_Compat_NotificationActionContainer=0x7f0b016a; - public static final int Widget_Compat_NotificationActionText=0x7f0b016b; - } - public static final class styleable { - /** - * Attributes that can be used with a ActionBar. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ActionBar_background com.gaolei.retrofitdemo.test:background}
{@link #ActionBar_backgroundSplit com.gaolei.retrofitdemo.test:backgroundSplit}
{@link #ActionBar_backgroundStacked com.gaolei.retrofitdemo.test:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.gaolei.retrofitdemo.test:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions com.gaolei.retrofitdemo.test:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft com.gaolei.retrofitdemo.test:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.gaolei.retrofitdemo.test:contentInsetRight}
{@link #ActionBar_contentInsetStart com.gaolei.retrofitdemo.test:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation com.gaolei.retrofitdemo.test:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout com.gaolei.retrofitdemo.test:customNavigationLayout}
{@link #ActionBar_displayOptions com.gaolei.retrofitdemo.test:displayOptions}
{@link #ActionBar_divider com.gaolei.retrofitdemo.test:divider}
{@link #ActionBar_elevation com.gaolei.retrofitdemo.test:elevation}
{@link #ActionBar_height com.gaolei.retrofitdemo.test:height}
{@link #ActionBar_hideOnContentScroll com.gaolei.retrofitdemo.test:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.gaolei.retrofitdemo.test:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.gaolei.retrofitdemo.test:homeLayout}
{@link #ActionBar_icon com.gaolei.retrofitdemo.test:icon}
{@link #ActionBar_indeterminateProgressStyle com.gaolei.retrofitdemo.test:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.gaolei.retrofitdemo.test:itemPadding}
{@link #ActionBar_logo com.gaolei.retrofitdemo.test:logo}
{@link #ActionBar_navigationMode com.gaolei.retrofitdemo.test:navigationMode}
{@link #ActionBar_popupTheme com.gaolei.retrofitdemo.test:popupTheme}
{@link #ActionBar_progressBarPadding com.gaolei.retrofitdemo.test:progressBarPadding}
{@link #ActionBar_progressBarStyle com.gaolei.retrofitdemo.test:progressBarStyle}
{@link #ActionBar_subtitle com.gaolei.retrofitdemo.test:subtitle}
{@link #ActionBar_subtitleTextStyle com.gaolei.retrofitdemo.test:subtitleTextStyle}
{@link #ActionBar_title com.gaolei.retrofitdemo.test:title}
{@link #ActionBar_titleTextStyle com.gaolei.retrofitdemo.test:titleTextStyle}
- * @see #ActionBar_background - * @see #ActionBar_backgroundSplit - * @see #ActionBar_backgroundStacked - * @see #ActionBar_contentInsetEnd - * @see #ActionBar_contentInsetEndWithActions - * @see #ActionBar_contentInsetLeft - * @see #ActionBar_contentInsetRight - * @see #ActionBar_contentInsetStart - * @see #ActionBar_contentInsetStartWithNavigation - * @see #ActionBar_customNavigationLayout - * @see #ActionBar_displayOptions - * @see #ActionBar_divider - * @see #ActionBar_elevation - * @see #ActionBar_height - * @see #ActionBar_hideOnContentScroll - * @see #ActionBar_homeAsUpIndicator - * @see #ActionBar_homeLayout - * @see #ActionBar_icon - * @see #ActionBar_indeterminateProgressStyle - * @see #ActionBar_itemPadding - * @see #ActionBar_logo - * @see #ActionBar_navigationMode - * @see #ActionBar_popupTheme - * @see #ActionBar_progressBarPadding - * @see #ActionBar_progressBarStyle - * @see #ActionBar_subtitle - * @see #ActionBar_subtitleTextStyle - * @see #ActionBar_title - * @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar={ - 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, - 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, - 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, - 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, - 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, - 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, - 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, - 0x7f020124 - }; - /** - * Attributes that can be used with a ActionBarLayout. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
- * @see #ActionBarLayout_android_layout_gravity - */ - public static final int[] ActionBarLayout={ - 0x010100b3 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_gravity} - * attribute's value can be found in the {@link #ActionBarLayout} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#background} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:background - */ - public static final int ActionBar_background=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#backgroundSplit} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:backgroundSplit - */ - public static final int ActionBar_backgroundSplit=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#backgroundStacked} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:backgroundStacked - */ - public static final int ActionBar_backgroundStacked=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetEnd} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetEnd - */ - public static final int ActionBar_contentInsetEnd=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetEndWithActions} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetEndWithActions - */ - public static final int ActionBar_contentInsetEndWithActions=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetLeft} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetLeft - */ - public static final int ActionBar_contentInsetLeft=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetRight} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetRight - */ - public static final int ActionBar_contentInsetRight=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetStart} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetStart - */ - public static final int ActionBar_contentInsetStart=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetStartWithNavigation} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetStartWithNavigation - */ - public static final int ActionBar_contentInsetStartWithNavigation=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#customNavigationLayout} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#displayOptions} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
- * - * @attr name com.gaolei.retrofitdemo.test:displayOptions - */ - public static final int ActionBar_displayOptions=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#divider} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:divider - */ - public static final int ActionBar_divider=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#elevation} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:elevation - */ - public static final int ActionBar_elevation=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#height} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:height - */ - public static final int ActionBar_height=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#hideOnContentScroll} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:hideOnContentScroll - */ - public static final int ActionBar_hideOnContentScroll=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#homeAsUpIndicator} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:homeAsUpIndicator - */ - public static final int ActionBar_homeAsUpIndicator=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#homeLayout} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:homeLayout - */ - public static final int ActionBar_homeLayout=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#icon} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:icon - */ - public static final int ActionBar_icon=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#indeterminateProgressStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#itemPadding} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:itemPadding - */ - public static final int ActionBar_itemPadding=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#logo} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:logo - */ - public static final int ActionBar_logo=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#navigationMode} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
listMode1
normal0
tabMode2
- * - * @attr name com.gaolei.retrofitdemo.test:navigationMode - */ - public static final int ActionBar_navigationMode=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#popupTheme} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:popupTheme - */ - public static final int ActionBar_popupTheme=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#progressBarPadding} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:progressBarPadding - */ - public static final int ActionBar_progressBarPadding=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#progressBarStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:progressBarStyle - */ - public static final int ActionBar_progressBarStyle=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subtitle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:subtitle - */ - public static final int ActionBar_subtitle=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subtitleTextStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#title} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:title - */ - public static final int ActionBar_title=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleTextStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:titleTextStyle - */ - public static final int ActionBar_titleTextStyle=28; - /** - * Attributes that can be used with a ActionMenuItemView. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
- * @see #ActionMenuItemView_android_minWidth - */ - public static final int[] ActionMenuItemView={ - 0x0101013f - }; - /** - *

This symbol is the offset where the {@link android.R.attr#minWidth} - * attribute's value can be found in the {@link #ActionMenuItemView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minWidth - */ - public static final int ActionMenuItemView_android_minWidth=0; - public static final int[] ActionMenuView={ - }; - /** - * Attributes that can be used with a ActionMode. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ActionMode_background com.gaolei.retrofitdemo.test:background}
{@link #ActionMode_backgroundSplit com.gaolei.retrofitdemo.test:backgroundSplit}
{@link #ActionMode_closeItemLayout com.gaolei.retrofitdemo.test:closeItemLayout}
{@link #ActionMode_height com.gaolei.retrofitdemo.test:height}
{@link #ActionMode_subtitleTextStyle com.gaolei.retrofitdemo.test:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.gaolei.retrofitdemo.test:titleTextStyle}
- * @see #ActionMode_background - * @see #ActionMode_backgroundSplit - * @see #ActionMode_closeItemLayout - * @see #ActionMode_height - * @see #ActionMode_subtitleTextStyle - * @see #ActionMode_titleTextStyle - */ - public static final int[] ActionMode={ - 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, - 0x7f020100, 0x7f020124 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#background} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:background - */ - public static final int ActionMode_background=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#backgroundSplit} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:backgroundSplit - */ - public static final int ActionMode_backgroundSplit=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#closeItemLayout} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:closeItemLayout - */ - public static final int ActionMode_closeItemLayout=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#height} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:height - */ - public static final int ActionMode_height=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subtitleTextStyle} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleTextStyle} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:titleTextStyle - */ - public static final int ActionMode_titleTextStyle=5; - /** - * Attributes that can be used with a ActivityChooserView. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.gaolei.retrofitdemo.test:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.gaolei.retrofitdemo.test:initialActivityCount}
- * @see #ActivityChooserView_expandActivityOverflowButtonDrawable - * @see #ActivityChooserView_initialActivityCount - */ - public static final int[] ActivityChooserView={ - 0x7f020075, 0x7f02008c - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#expandActivityOverflowButtonDrawable} - * attribute's value can be found in the {@link #ActivityChooserView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#initialActivityCount} - * attribute's value can be found in the {@link #ActivityChooserView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount=1; - /** - * Attributes that can be used with a AlertDialog. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.gaolei.retrofitdemo.test:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.gaolei.retrofitdemo.test:listItemLayout}
{@link #AlertDialog_listLayout com.gaolei.retrofitdemo.test:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.gaolei.retrofitdemo.test:multiChoiceItemLayout}
{@link #AlertDialog_showTitle com.gaolei.retrofitdemo.test:showTitle}
{@link #AlertDialog_singleChoiceItemLayout com.gaolei.retrofitdemo.test:singleChoiceItemLayout}
- * @see #AlertDialog_android_layout - * @see #AlertDialog_buttonPanelSideLayout - * @see #AlertDialog_listItemLayout - * @see #AlertDialog_listLayout - * @see #AlertDialog_multiChoiceItemLayout - * @see #AlertDialog_showTitle - * @see #AlertDialog_singleChoiceItemLayout - */ - public static final int[] AlertDialog={ - 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, - 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#layout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:layout - */ - public static final int AlertDialog_android_layout=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonPanelSideLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonPanelSideLayout - */ - public static final int AlertDialog_buttonPanelSideLayout=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listItemLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:listItemLayout - */ - public static final int AlertDialog_listItemLayout=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:listLayout - */ - public static final int AlertDialog_listLayout=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#multiChoiceItemLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:multiChoiceItemLayout - */ - public static final int AlertDialog_multiChoiceItemLayout=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#showTitle} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:showTitle - */ - public static final int AlertDialog_showTitle=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#singleChoiceItemLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:singleChoiceItemLayout - */ - public static final int AlertDialog_singleChoiceItemLayout=6; - /** - * Attributes that can be used with a AppCompatImageView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.gaolei.retrofitdemo.test:srcCompat}
{@link #AppCompatImageView_tint com.gaolei.retrofitdemo.test:tint}
{@link #AppCompatImageView_tintMode com.gaolei.retrofitdemo.test:tintMode}
- * @see #AppCompatImageView_android_src - * @see #AppCompatImageView_srcCompat - * @see #AppCompatImageView_tint - * @see #AppCompatImageView_tintMode - */ - public static final int[] AppCompatImageView={ - 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a - }; - /** - *

This symbol is the offset where the {@link android.R.attr#src} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:src - */ - public static final int AppCompatImageView_android_src=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#srcCompat} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:srcCompat - */ - public static final int AppCompatImageView_srcCompat=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tint} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:tint - */ - public static final int AppCompatImageView_tint=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tintMode} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:tintMode - */ - public static final int AppCompatImageView_tintMode=3; - /** - * Attributes that can be used with a AppCompatSeekBar. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark com.gaolei.retrofitdemo.test:tickMark}
{@link #AppCompatSeekBar_tickMarkTint com.gaolei.retrofitdemo.test:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode com.gaolei.retrofitdemo.test:tickMarkTintMode}
- * @see #AppCompatSeekBar_android_thumb - * @see #AppCompatSeekBar_tickMark - * @see #AppCompatSeekBar_tickMarkTint - * @see #AppCompatSeekBar_tickMarkTintMode - */ - public static final int[] AppCompatSeekBar={ - 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#thumb} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:thumb - */ - public static final int AppCompatSeekBar_android_thumb=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tickMark} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:tickMark - */ - public static final int AppCompatSeekBar_tickMark=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tickMarkTint} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:tickMarkTint - */ - public static final int AppCompatSeekBar_tickMarkTint=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tickMarkTintMode} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:tickMarkTintMode - */ - public static final int AppCompatSeekBar_tickMarkTintMode=3; - /** - * Attributes that can be used with a AppCompatTextHelper. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
- * @see #AppCompatTextHelper_android_textAppearance - * @see #AppCompatTextHelper_android_drawableTop - * @see #AppCompatTextHelper_android_drawableBottom - * @see #AppCompatTextHelper_android_drawableLeft - * @see #AppCompatTextHelper_android_drawableRight - * @see #AppCompatTextHelper_android_drawableStart - * @see #AppCompatTextHelper_android_drawableEnd - */ - public static final int[] AppCompatTextHelper={ - 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, - 0x01010170, 0x01010392, 0x01010393 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableBottom} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableBottom - */ - public static final int AppCompatTextHelper_android_drawableBottom=2; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableEnd} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableEnd - */ - public static final int AppCompatTextHelper_android_drawableEnd=6; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableLeft} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableLeft - */ - public static final int AppCompatTextHelper_android_drawableLeft=3; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableRight} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableRight - */ - public static final int AppCompatTextHelper_android_drawableRight=4; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableStart} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableStart - */ - public static final int AppCompatTextHelper_android_drawableStart=5; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableTop} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableTop - */ - public static final int AppCompatTextHelper_android_drawableTop=1; - /** - *

This symbol is the offset where the {@link android.R.attr#textAppearance} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:textAppearance - */ - public static final int AppCompatTextHelper_android_textAppearance=0; - /** - * Attributes that can be used with a AppCompatTextView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize com.gaolei.retrofitdemo.test:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize com.gaolei.retrofitdemo.test:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes com.gaolei.retrofitdemo.test:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity com.gaolei.retrofitdemo.test:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType com.gaolei.retrofitdemo.test:autoSizeTextType}
{@link #AppCompatTextView_fontFamily com.gaolei.retrofitdemo.test:fontFamily}
{@link #AppCompatTextView_textAllCaps com.gaolei.retrofitdemo.test:textAllCaps}
- * @see #AppCompatTextView_android_textAppearance - * @see #AppCompatTextView_autoSizeMaxTextSize - * @see #AppCompatTextView_autoSizeMinTextSize - * @see #AppCompatTextView_autoSizePresetSizes - * @see #AppCompatTextView_autoSizeStepGranularity - * @see #AppCompatTextView_autoSizeTextType - * @see #AppCompatTextView_fontFamily - * @see #AppCompatTextView_textAllCaps - */ - public static final int[] AppCompatTextView={ - 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, - 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#textAppearance} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:textAppearance - */ - public static final int AppCompatTextView_android_textAppearance=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#autoSizeMaxTextSize} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:autoSizeMaxTextSize - */ - public static final int AppCompatTextView_autoSizeMaxTextSize=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#autoSizeMinTextSize} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:autoSizeMinTextSize - */ - public static final int AppCompatTextView_autoSizeMinTextSize=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#autoSizePresetSizes} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:autoSizePresetSizes - */ - public static final int AppCompatTextView_autoSizePresetSizes=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#autoSizeStepGranularity} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:autoSizeStepGranularity - */ - public static final int AppCompatTextView_autoSizeStepGranularity=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#autoSizeTextType} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
none0
uniform1
- * - * @attr name com.gaolei.retrofitdemo.test:autoSizeTextType - */ - public static final int AppCompatTextView_autoSizeTextType=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontFamily} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:fontFamily - */ - public static final int AppCompatTextView_fontFamily=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAllCaps} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:textAllCaps - */ - public static final int AppCompatTextView_textAllCaps=7; - /** - * Attributes that can be used with a AppCompatTheme. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider com.gaolei.retrofitdemo.test:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.gaolei.retrofitdemo.test:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.gaolei.retrofitdemo.test:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.gaolei.retrofitdemo.test:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.gaolei.retrofitdemo.test:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.gaolei.retrofitdemo.test:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.gaolei.retrofitdemo.test:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.gaolei.retrofitdemo.test:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.gaolei.retrofitdemo.test:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.gaolei.retrofitdemo.test:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.gaolei.retrofitdemo.test:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.gaolei.retrofitdemo.test:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.gaolei.retrofitdemo.test:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.gaolei.retrofitdemo.test:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.gaolei.retrofitdemo.test:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.gaolei.retrofitdemo.test:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.gaolei.retrofitdemo.test:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.gaolei.retrofitdemo.test:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.gaolei.retrofitdemo.test:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.gaolei.retrofitdemo.test:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.gaolei.retrofitdemo.test:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.gaolei.retrofitdemo.test:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.gaolei.retrofitdemo.test:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.gaolei.retrofitdemo.test:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.gaolei.retrofitdemo.test:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.gaolei.retrofitdemo.test:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.gaolei.retrofitdemo.test:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.gaolei.retrofitdemo.test:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.gaolei.retrofitdemo.test:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.gaolei.retrofitdemo.test:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.gaolei.retrofitdemo.test:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.gaolei.retrofitdemo.test:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.gaolei.retrofitdemo.test:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.gaolei.retrofitdemo.test:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.gaolei.retrofitdemo.test:alertDialogTheme}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.gaolei.retrofitdemo.test:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.gaolei.retrofitdemo.test:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.gaolei.retrofitdemo.test:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.gaolei.retrofitdemo.test:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.gaolei.retrofitdemo.test:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.gaolei.retrofitdemo.test:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.gaolei.retrofitdemo.test:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.gaolei.retrofitdemo.test:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.gaolei.retrofitdemo.test:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.gaolei.retrofitdemo.test:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.gaolei.retrofitdemo.test:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.gaolei.retrofitdemo.test:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating com.gaolei.retrofitdemo.test:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal com.gaolei.retrofitdemo.test:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.gaolei.retrofitdemo.test:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.gaolei.retrofitdemo.test:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.gaolei.retrofitdemo.test:colorControlNormal}
{@link #AppCompatTheme_colorError com.gaolei.retrofitdemo.test:colorError}
{@link #AppCompatTheme_colorPrimary com.gaolei.retrofitdemo.test:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.gaolei.retrofitdemo.test:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.gaolei.retrofitdemo.test:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.gaolei.retrofitdemo.test:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.gaolei.retrofitdemo.test:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.gaolei.retrofitdemo.test:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.gaolei.retrofitdemo.test:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.gaolei.retrofitdemo.test:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.gaolei.retrofitdemo.test:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.gaolei.retrofitdemo.test:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.gaolei.retrofitdemo.test:editTextBackground}
{@link #AppCompatTheme_editTextColor com.gaolei.retrofitdemo.test:editTextColor}
{@link #AppCompatTheme_editTextStyle com.gaolei.retrofitdemo.test:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.gaolei.retrofitdemo.test:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.gaolei.retrofitdemo.test:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.gaolei.retrofitdemo.test:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.gaolei.retrofitdemo.test:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle com.gaolei.retrofitdemo.test:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle com.gaolei.retrofitdemo.test:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.gaolei.retrofitdemo.test:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.gaolei.retrofitdemo.test:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.gaolei.retrofitdemo.test:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.gaolei.retrofitdemo.test:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.gaolei.retrofitdemo.test:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.gaolei.retrofitdemo.test:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.gaolei.retrofitdemo.test:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.gaolei.retrofitdemo.test:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.gaolei.retrofitdemo.test:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.gaolei.retrofitdemo.test:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.gaolei.retrofitdemo.test:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.gaolei.retrofitdemo.test:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.gaolei.retrofitdemo.test:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.gaolei.retrofitdemo.test:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.gaolei.retrofitdemo.test:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.gaolei.retrofitdemo.test:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.gaolei.retrofitdemo.test:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.gaolei.retrofitdemo.test:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.gaolei.retrofitdemo.test:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.gaolei.retrofitdemo.test:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.gaolei.retrofitdemo.test:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.gaolei.retrofitdemo.test:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.gaolei.retrofitdemo.test:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary com.gaolei.retrofitdemo.test:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall com.gaolei.retrofitdemo.test:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader com.gaolei.retrofitdemo.test:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.gaolei.retrofitdemo.test:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.gaolei.retrofitdemo.test:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.gaolei.retrofitdemo.test:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.gaolei.retrofitdemo.test:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.gaolei.retrofitdemo.test:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.gaolei.retrofitdemo.test:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.gaolei.retrofitdemo.test:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor com.gaolei.retrofitdemo.test:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground com.gaolei.retrofitdemo.test:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar com.gaolei.retrofitdemo.test:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.gaolei.retrofitdemo.test:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.gaolei.retrofitdemo.test:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.gaolei.retrofitdemo.test:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.gaolei.retrofitdemo.test:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.gaolei.retrofitdemo.test:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.gaolei.retrofitdemo.test:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.gaolei.retrofitdemo.test:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.gaolei.retrofitdemo.test:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.gaolei.retrofitdemo.test:windowNoTitle}
- * @see #AppCompatTheme_android_windowIsFloating - * @see #AppCompatTheme_android_windowAnimationStyle - * @see #AppCompatTheme_actionBarDivider - * @see #AppCompatTheme_actionBarItemBackground - * @see #AppCompatTheme_actionBarPopupTheme - * @see #AppCompatTheme_actionBarSize - * @see #AppCompatTheme_actionBarSplitStyle - * @see #AppCompatTheme_actionBarStyle - * @see #AppCompatTheme_actionBarTabBarStyle - * @see #AppCompatTheme_actionBarTabStyle - * @see #AppCompatTheme_actionBarTabTextStyle - * @see #AppCompatTheme_actionBarTheme - * @see #AppCompatTheme_actionBarWidgetTheme - * @see #AppCompatTheme_actionButtonStyle - * @see #AppCompatTheme_actionDropDownStyle - * @see #AppCompatTheme_actionMenuTextAppearance - * @see #AppCompatTheme_actionMenuTextColor - * @see #AppCompatTheme_actionModeBackground - * @see #AppCompatTheme_actionModeCloseButtonStyle - * @see #AppCompatTheme_actionModeCloseDrawable - * @see #AppCompatTheme_actionModeCopyDrawable - * @see #AppCompatTheme_actionModeCutDrawable - * @see #AppCompatTheme_actionModeFindDrawable - * @see #AppCompatTheme_actionModePasteDrawable - * @see #AppCompatTheme_actionModePopupWindowStyle - * @see #AppCompatTheme_actionModeSelectAllDrawable - * @see #AppCompatTheme_actionModeShareDrawable - * @see #AppCompatTheme_actionModeSplitBackground - * @see #AppCompatTheme_actionModeStyle - * @see #AppCompatTheme_actionModeWebSearchDrawable - * @see #AppCompatTheme_actionOverflowButtonStyle - * @see #AppCompatTheme_actionOverflowMenuStyle - * @see #AppCompatTheme_activityChooserViewStyle - * @see #AppCompatTheme_alertDialogButtonGroupStyle - * @see #AppCompatTheme_alertDialogCenterButtons - * @see #AppCompatTheme_alertDialogStyle - * @see #AppCompatTheme_alertDialogTheme - * @see #AppCompatTheme_autoCompleteTextViewStyle - * @see #AppCompatTheme_borderlessButtonStyle - * @see #AppCompatTheme_buttonBarButtonStyle - * @see #AppCompatTheme_buttonBarNegativeButtonStyle - * @see #AppCompatTheme_buttonBarNeutralButtonStyle - * @see #AppCompatTheme_buttonBarPositiveButtonStyle - * @see #AppCompatTheme_buttonBarStyle - * @see #AppCompatTheme_buttonStyle - * @see #AppCompatTheme_buttonStyleSmall - * @see #AppCompatTheme_checkboxStyle - * @see #AppCompatTheme_checkedTextViewStyle - * @see #AppCompatTheme_colorAccent - * @see #AppCompatTheme_colorBackgroundFloating - * @see #AppCompatTheme_colorButtonNormal - * @see #AppCompatTheme_colorControlActivated - * @see #AppCompatTheme_colorControlHighlight - * @see #AppCompatTheme_colorControlNormal - * @see #AppCompatTheme_colorError - * @see #AppCompatTheme_colorPrimary - * @see #AppCompatTheme_colorPrimaryDark - * @see #AppCompatTheme_colorSwitchThumbNormal - * @see #AppCompatTheme_controlBackground - * @see #AppCompatTheme_dialogPreferredPadding - * @see #AppCompatTheme_dialogTheme - * @see #AppCompatTheme_dividerHorizontal - * @see #AppCompatTheme_dividerVertical - * @see #AppCompatTheme_dropDownListViewStyle - * @see #AppCompatTheme_dropdownListPreferredItemHeight - * @see #AppCompatTheme_editTextBackground - * @see #AppCompatTheme_editTextColor - * @see #AppCompatTheme_editTextStyle - * @see #AppCompatTheme_homeAsUpIndicator - * @see #AppCompatTheme_imageButtonStyle - * @see #AppCompatTheme_listChoiceBackgroundIndicator - * @see #AppCompatTheme_listDividerAlertDialog - * @see #AppCompatTheme_listMenuViewStyle - * @see #AppCompatTheme_listPopupWindowStyle - * @see #AppCompatTheme_listPreferredItemHeight - * @see #AppCompatTheme_listPreferredItemHeightLarge - * @see #AppCompatTheme_listPreferredItemHeightSmall - * @see #AppCompatTheme_listPreferredItemPaddingLeft - * @see #AppCompatTheme_listPreferredItemPaddingRight - * @see #AppCompatTheme_panelBackground - * @see #AppCompatTheme_panelMenuListTheme - * @see #AppCompatTheme_panelMenuListWidth - * @see #AppCompatTheme_popupMenuStyle - * @see #AppCompatTheme_popupWindowStyle - * @see #AppCompatTheme_radioButtonStyle - * @see #AppCompatTheme_ratingBarStyle - * @see #AppCompatTheme_ratingBarStyleIndicator - * @see #AppCompatTheme_ratingBarStyleSmall - * @see #AppCompatTheme_searchViewStyle - * @see #AppCompatTheme_seekBarStyle - * @see #AppCompatTheme_selectableItemBackground - * @see #AppCompatTheme_selectableItemBackgroundBorderless - * @see #AppCompatTheme_spinnerDropDownItemStyle - * @see #AppCompatTheme_spinnerStyle - * @see #AppCompatTheme_switchStyle - * @see #AppCompatTheme_textAppearanceLargePopupMenu - * @see #AppCompatTheme_textAppearanceListItem - * @see #AppCompatTheme_textAppearanceListItemSecondary - * @see #AppCompatTheme_textAppearanceListItemSmall - * @see #AppCompatTheme_textAppearancePopupMenuHeader - * @see #AppCompatTheme_textAppearanceSearchResultSubtitle - * @see #AppCompatTheme_textAppearanceSearchResultTitle - * @see #AppCompatTheme_textAppearanceSmallPopupMenu - * @see #AppCompatTheme_textColorAlertDialogListItem - * @see #AppCompatTheme_textColorSearchUrl - * @see #AppCompatTheme_toolbarNavigationButtonStyle - * @see #AppCompatTheme_toolbarStyle - * @see #AppCompatTheme_tooltipForegroundColor - * @see #AppCompatTheme_tooltipFrameBackground - * @see #AppCompatTheme_windowActionBar - * @see #AppCompatTheme_windowActionBarOverlay - * @see #AppCompatTheme_windowActionModeOverlay - * @see #AppCompatTheme_windowFixedHeightMajor - * @see #AppCompatTheme_windowFixedHeightMinor - * @see #AppCompatTheme_windowFixedWidthMajor - * @see #AppCompatTheme_windowFixedWidthMinor - * @see #AppCompatTheme_windowMinWidthMajor - * @see #AppCompatTheme_windowMinWidthMinor - * @see #AppCompatTheme_windowNoTitle - */ - public static final int[] AppCompatTheme={ - 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, - 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, - 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, - 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, - 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, - 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, - 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, - 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, - 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, - 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, - 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, - 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, - 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, - 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, - 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, - 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, - 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, - 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, - 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, - 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, - 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, - 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, - 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, - 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, - 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, - 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, - 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, - 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, - 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, - 0x7f020135, 0x7f020136, 0x7f020137 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarDivider} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarDivider - */ - public static final int AppCompatTheme_actionBarDivider=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarItemBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarItemBackground - */ - public static final int AppCompatTheme_actionBarItemBackground=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarPopupTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarPopupTheme - */ - public static final int AppCompatTheme_actionBarPopupTheme=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarSize} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrap_content0
- * - * @attr name com.gaolei.retrofitdemo.test:actionBarSize - */ - public static final int AppCompatTheme_actionBarSize=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarSplitStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarSplitStyle - */ - public static final int AppCompatTheme_actionBarSplitStyle=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarStyle - */ - public static final int AppCompatTheme_actionBarStyle=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarTabBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarTabBarStyle - */ - public static final int AppCompatTheme_actionBarTabBarStyle=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarTabStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarTabStyle - */ - public static final int AppCompatTheme_actionBarTabStyle=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarTabTextStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarTabTextStyle - */ - public static final int AppCompatTheme_actionBarTabTextStyle=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarTheme - */ - public static final int AppCompatTheme_actionBarTheme=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionBarWidgetTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionBarWidgetTheme - */ - public static final int AppCompatTheme_actionBarWidgetTheme=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionButtonStyle - */ - public static final int AppCompatTheme_actionButtonStyle=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionDropDownStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionDropDownStyle - */ - public static final int AppCompatTheme_actionDropDownStyle=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionMenuTextAppearance} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionMenuTextAppearance - */ - public static final int AppCompatTheme_actionMenuTextAppearance=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionMenuTextColor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:actionMenuTextColor - */ - public static final int AppCompatTheme_actionMenuTextColor=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeBackground - */ - public static final int AppCompatTheme_actionModeBackground=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeCloseButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeCloseButtonStyle - */ - public static final int AppCompatTheme_actionModeCloseButtonStyle=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeCloseDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeCloseDrawable - */ - public static final int AppCompatTheme_actionModeCloseDrawable=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeCopyDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeCopyDrawable - */ - public static final int AppCompatTheme_actionModeCopyDrawable=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeCutDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeCutDrawable - */ - public static final int AppCompatTheme_actionModeCutDrawable=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeFindDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeFindDrawable - */ - public static final int AppCompatTheme_actionModeFindDrawable=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModePasteDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModePasteDrawable - */ - public static final int AppCompatTheme_actionModePasteDrawable=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModePopupWindowStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModePopupWindowStyle - */ - public static final int AppCompatTheme_actionModePopupWindowStyle=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeSelectAllDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeSelectAllDrawable - */ - public static final int AppCompatTheme_actionModeSelectAllDrawable=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeShareDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeShareDrawable - */ - public static final int AppCompatTheme_actionModeShareDrawable=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeSplitBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeSplitBackground - */ - public static final int AppCompatTheme_actionModeSplitBackground=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeStyle - */ - public static final int AppCompatTheme_actionModeStyle=28; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionModeWebSearchDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionModeWebSearchDrawable - */ - public static final int AppCompatTheme_actionModeWebSearchDrawable=29; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionOverflowButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionOverflowButtonStyle - */ - public static final int AppCompatTheme_actionOverflowButtonStyle=30; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionOverflowMenuStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionOverflowMenuStyle - */ - public static final int AppCompatTheme_actionOverflowMenuStyle=31; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#activityChooserViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:activityChooserViewStyle - */ - public static final int AppCompatTheme_activityChooserViewStyle=32; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#alertDialogButtonGroupStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:alertDialogButtonGroupStyle - */ - public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#alertDialogCenterButtons} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:alertDialogCenterButtons - */ - public static final int AppCompatTheme_alertDialogCenterButtons=34; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#alertDialogStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:alertDialogStyle - */ - public static final int AppCompatTheme_alertDialogStyle=35; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#alertDialogTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:alertDialogTheme - */ - public static final int AppCompatTheme_alertDialogTheme=36; - /** - *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:windowAnimationStyle - */ - public static final int AppCompatTheme_android_windowAnimationStyle=1; - /** - *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:windowIsFloating - */ - public static final int AppCompatTheme_android_windowIsFloating=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#autoCompleteTextViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:autoCompleteTextViewStyle - */ - public static final int AppCompatTheme_autoCompleteTextViewStyle=37; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#borderlessButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:borderlessButtonStyle - */ - public static final int AppCompatTheme_borderlessButtonStyle=38; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonBarButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonBarButtonStyle - */ - public static final int AppCompatTheme_buttonBarButtonStyle=39; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonBarNegativeButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonBarNegativeButtonStyle - */ - public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonBarNeutralButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonBarNeutralButtonStyle - */ - public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonBarPositiveButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonBarPositiveButtonStyle - */ - public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonBarStyle - */ - public static final int AppCompatTheme_buttonBarStyle=43; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonStyle - */ - public static final int AppCompatTheme_buttonStyle=44; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonStyleSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:buttonStyleSmall - */ - public static final int AppCompatTheme_buttonStyleSmall=45; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#checkboxStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:checkboxStyle - */ - public static final int AppCompatTheme_checkboxStyle=46; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#checkedTextViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:checkedTextViewStyle - */ - public static final int AppCompatTheme_checkedTextViewStyle=47; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorAccent} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorAccent - */ - public static final int AppCompatTheme_colorAccent=48; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorBackgroundFloating} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorBackgroundFloating - */ - public static final int AppCompatTheme_colorBackgroundFloating=49; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorButtonNormal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorButtonNormal - */ - public static final int AppCompatTheme_colorButtonNormal=50; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorControlActivated} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorControlActivated - */ - public static final int AppCompatTheme_colorControlActivated=51; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorControlHighlight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorControlHighlight - */ - public static final int AppCompatTheme_colorControlHighlight=52; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorControlNormal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorControlNormal - */ - public static final int AppCompatTheme_colorControlNormal=53; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorError} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorError - */ - public static final int AppCompatTheme_colorError=54; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorPrimary} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorPrimary - */ - public static final int AppCompatTheme_colorPrimary=55; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorPrimaryDark} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorPrimaryDark - */ - public static final int AppCompatTheme_colorPrimaryDark=56; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#colorSwitchThumbNormal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:colorSwitchThumbNormal - */ - public static final int AppCompatTheme_colorSwitchThumbNormal=57; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#controlBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:controlBackground - */ - public static final int AppCompatTheme_controlBackground=58; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dialogPreferredPadding} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:dialogPreferredPadding - */ - public static final int AppCompatTheme_dialogPreferredPadding=59; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dialogTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:dialogTheme - */ - public static final int AppCompatTheme_dialogTheme=60; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dividerHorizontal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:dividerHorizontal - */ - public static final int AppCompatTheme_dividerHorizontal=61; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dividerVertical} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:dividerVertical - */ - public static final int AppCompatTheme_dividerVertical=62; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dropDownListViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:dropDownListViewStyle - */ - public static final int AppCompatTheme_dropDownListViewStyle=63; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dropdownListPreferredItemHeight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:dropdownListPreferredItemHeight - */ - public static final int AppCompatTheme_dropdownListPreferredItemHeight=64; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#editTextBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:editTextBackground - */ - public static final int AppCompatTheme_editTextBackground=65; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#editTextColor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:editTextColor - */ - public static final int AppCompatTheme_editTextColor=66; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#editTextStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:editTextStyle - */ - public static final int AppCompatTheme_editTextStyle=67; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#homeAsUpIndicator} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:homeAsUpIndicator - */ - public static final int AppCompatTheme_homeAsUpIndicator=68; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#imageButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:imageButtonStyle - */ - public static final int AppCompatTheme_imageButtonStyle=69; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listChoiceBackgroundIndicator} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:listChoiceBackgroundIndicator - */ - public static final int AppCompatTheme_listChoiceBackgroundIndicator=70; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listDividerAlertDialog} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:listDividerAlertDialog - */ - public static final int AppCompatTheme_listDividerAlertDialog=71; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listMenuViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:listMenuViewStyle - */ - public static final int AppCompatTheme_listMenuViewStyle=72; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listPopupWindowStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:listPopupWindowStyle - */ - public static final int AppCompatTheme_listPopupWindowStyle=73; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listPreferredItemHeight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:listPreferredItemHeight - */ - public static final int AppCompatTheme_listPreferredItemHeight=74; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listPreferredItemHeightLarge} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:listPreferredItemHeightLarge - */ - public static final int AppCompatTheme_listPreferredItemHeightLarge=75; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listPreferredItemHeightSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:listPreferredItemHeightSmall - */ - public static final int AppCompatTheme_listPreferredItemHeightSmall=76; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listPreferredItemPaddingLeft} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:listPreferredItemPaddingLeft - */ - public static final int AppCompatTheme_listPreferredItemPaddingLeft=77; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#listPreferredItemPaddingRight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:listPreferredItemPaddingRight - */ - public static final int AppCompatTheme_listPreferredItemPaddingRight=78; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#panelBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:panelBackground - */ - public static final int AppCompatTheme_panelBackground=79; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#panelMenuListTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:panelMenuListTheme - */ - public static final int AppCompatTheme_panelMenuListTheme=80; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#panelMenuListWidth} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:panelMenuListWidth - */ - public static final int AppCompatTheme_panelMenuListWidth=81; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#popupMenuStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:popupMenuStyle - */ - public static final int AppCompatTheme_popupMenuStyle=82; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#popupWindowStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:popupWindowStyle - */ - public static final int AppCompatTheme_popupWindowStyle=83; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#radioButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:radioButtonStyle - */ - public static final int AppCompatTheme_radioButtonStyle=84; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#ratingBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:ratingBarStyle - */ - public static final int AppCompatTheme_ratingBarStyle=85; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#ratingBarStyleIndicator} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:ratingBarStyleIndicator - */ - public static final int AppCompatTheme_ratingBarStyleIndicator=86; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#ratingBarStyleSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:ratingBarStyleSmall - */ - public static final int AppCompatTheme_ratingBarStyleSmall=87; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#searchViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:searchViewStyle - */ - public static final int AppCompatTheme_searchViewStyle=88; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#seekBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:seekBarStyle - */ - public static final int AppCompatTheme_seekBarStyle=89; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#selectableItemBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:selectableItemBackground - */ - public static final int AppCompatTheme_selectableItemBackground=90; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#selectableItemBackgroundBorderless} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:selectableItemBackgroundBorderless - */ - public static final int AppCompatTheme_selectableItemBackgroundBorderless=91; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#spinnerDropDownItemStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:spinnerDropDownItemStyle - */ - public static final int AppCompatTheme_spinnerDropDownItemStyle=92; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#spinnerStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:spinnerStyle - */ - public static final int AppCompatTheme_spinnerStyle=93; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#switchStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:switchStyle - */ - public static final int AppCompatTheme_switchStyle=94; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceLargePopupMenu} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceLargePopupMenu - */ - public static final int AppCompatTheme_textAppearanceLargePopupMenu=95; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceListItem} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceListItem - */ - public static final int AppCompatTheme_textAppearanceListItem=96; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceListItemSecondary} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceListItemSecondary - */ - public static final int AppCompatTheme_textAppearanceListItemSecondary=97; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceListItemSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceListItemSmall - */ - public static final int AppCompatTheme_textAppearanceListItemSmall=98; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearancePopupMenuHeader} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearancePopupMenuHeader - */ - public static final int AppCompatTheme_textAppearancePopupMenuHeader=99; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceSearchResultSubtitle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceSearchResultSubtitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceSearchResultTitle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceSearchResultTitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultTitle=101; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAppearanceSmallPopupMenu} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:textAppearanceSmallPopupMenu - */ - public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textColorAlertDialogListItem} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:textColorAlertDialogListItem - */ - public static final int AppCompatTheme_textColorAlertDialogListItem=103; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textColorSearchUrl} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:textColorSearchUrl - */ - public static final int AppCompatTheme_textColorSearchUrl=104; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#toolbarNavigationButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:toolbarNavigationButtonStyle - */ - public static final int AppCompatTheme_toolbarNavigationButtonStyle=105; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#toolbarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:toolbarStyle - */ - public static final int AppCompatTheme_toolbarStyle=106; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tooltipForegroundColor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:tooltipForegroundColor - */ - public static final int AppCompatTheme_tooltipForegroundColor=107; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tooltipFrameBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:tooltipFrameBackground - */ - public static final int AppCompatTheme_tooltipFrameBackground=108; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowActionBar} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:windowActionBar - */ - public static final int AppCompatTheme_windowActionBar=109; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowActionBarOverlay} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:windowActionBarOverlay - */ - public static final int AppCompatTheme_windowActionBarOverlay=110; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowActionModeOverlay} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:windowActionModeOverlay - */ - public static final int AppCompatTheme_windowActionModeOverlay=111; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowFixedHeightMajor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo.test:windowFixedHeightMajor - */ - public static final int AppCompatTheme_windowFixedHeightMajor=112; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowFixedHeightMinor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo.test:windowFixedHeightMinor - */ - public static final int AppCompatTheme_windowFixedHeightMinor=113; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowFixedWidthMajor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo.test:windowFixedWidthMajor - */ - public static final int AppCompatTheme_windowFixedWidthMajor=114; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowFixedWidthMinor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo.test:windowFixedWidthMinor - */ - public static final int AppCompatTheme_windowFixedWidthMinor=115; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowMinWidthMajor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo.test:windowMinWidthMajor - */ - public static final int AppCompatTheme_windowMinWidthMajor=116; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowMinWidthMinor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo.test:windowMinWidthMinor - */ - public static final int AppCompatTheme_windowMinWidthMinor=117; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#windowNoTitle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:windowNoTitle - */ - public static final int AppCompatTheme_windowNoTitle=118; - /** - * Attributes that can be used with a ButtonBarLayout. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.gaolei.retrofitdemo.test:allowStacking}
- * @see #ButtonBarLayout_allowStacking - */ - public static final int[] ButtonBarLayout={ - 0x7f020026 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#allowStacking} - * attribute's value can be found in the {@link #ButtonBarLayout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:allowStacking - */ - public static final int ButtonBarLayout_allowStacking=0; - /** - * Attributes that can be used with a ColorStateListItem. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_alpha com.gaolei.retrofitdemo.test:alpha}
- * @see #ColorStateListItem_android_color - * @see #ColorStateListItem_android_alpha - * @see #ColorStateListItem_alpha - */ - public static final int[] ColorStateListItem={ - 0x010101a5, 0x0101031f, 0x7f020027 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#alpha} - * attribute's value can be found in the {@link #ColorStateListItem} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:alpha - */ - public static final int ColorStateListItem_alpha=2; - /** - *

This symbol is the offset where the {@link android.R.attr#alpha} - * attribute's value can be found in the {@link #ColorStateListItem} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:alpha - */ - public static final int ColorStateListItem_android_alpha=1; - /** - *

This symbol is the offset where the {@link android.R.attr#color} - * attribute's value can be found in the {@link #ColorStateListItem} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:color - */ - public static final int ColorStateListItem_android_color=0; - /** - * Attributes that can be used with a CompoundButton. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.gaolei.retrofitdemo.test:buttonTint}
{@link #CompoundButton_buttonTintMode com.gaolei.retrofitdemo.test:buttonTintMode}
- * @see #CompoundButton_android_button - * @see #CompoundButton_buttonTint - * @see #CompoundButton_buttonTintMode - */ - public static final int[] CompoundButton={ - 0x01010107, 0x7f020043, 0x7f020044 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#button} - * attribute's value can be found in the {@link #CompoundButton} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:button - */ - public static final int CompoundButton_android_button=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonTint} - * attribute's value can be found in the {@link #CompoundButton} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:buttonTint - */ - public static final int CompoundButton_buttonTint=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonTintMode} - * attribute's value can be found in the {@link #CompoundButton} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:buttonTintMode - */ - public static final int CompoundButton_buttonTintMode=2; - /** - * Attributes that can be used with a ConstraintLayout_Layout. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ConstraintLayout_Layout_android_orientation android:orientation}
{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}
{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}
{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}
{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}
{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.gaolei.retrofitdemo.test:barrierAllowsGoneWidgets}
{@link #ConstraintLayout_Layout_barrierDirection com.gaolei.retrofitdemo.test:barrierDirection}
{@link #ConstraintLayout_Layout_chainUseRtl com.gaolei.retrofitdemo.test:chainUseRtl}
{@link #ConstraintLayout_Layout_constraintSet com.gaolei.retrofitdemo.test:constraintSet}
{@link #ConstraintLayout_Layout_constraint_referenced_ids com.gaolei.retrofitdemo.test:constraint_referenced_ids}
{@link #ConstraintLayout_Layout_layout_constrainedHeight com.gaolei.retrofitdemo.test:layout_constrainedHeight}
{@link #ConstraintLayout_Layout_layout_constrainedWidth com.gaolei.retrofitdemo.test:layout_constrainedWidth}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.gaolei.retrofitdemo.test:layout_constraintBaseline_creator}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.gaolei.retrofitdemo.test:layout_constraintBaseline_toBaselineOf}
{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.gaolei.retrofitdemo.test:layout_constraintBottom_creator}
{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.gaolei.retrofitdemo.test:layout_constraintBottom_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.gaolei.retrofitdemo.test:layout_constraintBottom_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintCircle com.gaolei.retrofitdemo.test:layout_constraintCircle}
{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.gaolei.retrofitdemo.test:layout_constraintCircleAngle}
{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.gaolei.retrofitdemo.test:layout_constraintCircleRadius}
{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.gaolei.retrofitdemo.test:layout_constraintDimensionRatio}
{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.gaolei.retrofitdemo.test:layout_constraintEnd_toEndOf}
{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.gaolei.retrofitdemo.test:layout_constraintEnd_toStartOf}
{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.gaolei.retrofitdemo.test:layout_constraintGuide_begin}
{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.gaolei.retrofitdemo.test:layout_constraintGuide_end}
{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.gaolei.retrofitdemo.test:layout_constraintGuide_percent}
{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.gaolei.retrofitdemo.test:layout_constraintHeight_default}
{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.gaolei.retrofitdemo.test:layout_constraintHeight_max}
{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.gaolei.retrofitdemo.test:layout_constraintHeight_min}
{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.gaolei.retrofitdemo.test:layout_constraintHeight_percent}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.gaolei.retrofitdemo.test:layout_constraintHorizontal_bias}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.gaolei.retrofitdemo.test:layout_constraintHorizontal_chainStyle}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.gaolei.retrofitdemo.test:layout_constraintHorizontal_weight}
{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.gaolei.retrofitdemo.test:layout_constraintLeft_creator}
{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.gaolei.retrofitdemo.test:layout_constraintLeft_toLeftOf}
{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.gaolei.retrofitdemo.test:layout_constraintLeft_toRightOf}
{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.gaolei.retrofitdemo.test:layout_constraintRight_creator}
{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.gaolei.retrofitdemo.test:layout_constraintRight_toLeftOf}
{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.gaolei.retrofitdemo.test:layout_constraintRight_toRightOf}
{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.gaolei.retrofitdemo.test:layout_constraintStart_toEndOf}
{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.gaolei.retrofitdemo.test:layout_constraintStart_toStartOf}
{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.gaolei.retrofitdemo.test:layout_constraintTop_creator}
{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.gaolei.retrofitdemo.test:layout_constraintTop_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.gaolei.retrofitdemo.test:layout_constraintTop_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.gaolei.retrofitdemo.test:layout_constraintVertical_bias}
{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.gaolei.retrofitdemo.test:layout_constraintVertical_chainStyle}
{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.gaolei.retrofitdemo.test:layout_constraintVertical_weight}
{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.gaolei.retrofitdemo.test:layout_constraintWidth_default}
{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.gaolei.retrofitdemo.test:layout_constraintWidth_max}
{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.gaolei.retrofitdemo.test:layout_constraintWidth_min}
{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.gaolei.retrofitdemo.test:layout_constraintWidth_percent}
{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.gaolei.retrofitdemo.test:layout_editor_absoluteX}
{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.gaolei.retrofitdemo.test:layout_editor_absoluteY}
{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.gaolei.retrofitdemo.test:layout_goneMarginBottom}
{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.gaolei.retrofitdemo.test:layout_goneMarginEnd}
{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.gaolei.retrofitdemo.test:layout_goneMarginLeft}
{@link #ConstraintLayout_Layout_layout_goneMarginRight com.gaolei.retrofitdemo.test:layout_goneMarginRight}
{@link #ConstraintLayout_Layout_layout_goneMarginStart com.gaolei.retrofitdemo.test:layout_goneMarginStart}
{@link #ConstraintLayout_Layout_layout_goneMarginTop com.gaolei.retrofitdemo.test:layout_goneMarginTop}
{@link #ConstraintLayout_Layout_layout_optimizationLevel com.gaolei.retrofitdemo.test:layout_optimizationLevel}
- * @see #ConstraintLayout_Layout_android_orientation - * @see #ConstraintLayout_Layout_android_maxWidth - * @see #ConstraintLayout_Layout_android_maxHeight - * @see #ConstraintLayout_Layout_android_minWidth - * @see #ConstraintLayout_Layout_android_minHeight - * @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets - * @see #ConstraintLayout_Layout_barrierDirection - * @see #ConstraintLayout_Layout_chainUseRtl - * @see #ConstraintLayout_Layout_constraintSet - * @see #ConstraintLayout_Layout_constraint_referenced_ids - * @see #ConstraintLayout_Layout_layout_constrainedHeight - * @see #ConstraintLayout_Layout_layout_constrainedWidth - * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator - * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf - * @see #ConstraintLayout_Layout_layout_constraintBottom_creator - * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf - * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf - * @see #ConstraintLayout_Layout_layout_constraintCircle - * @see #ConstraintLayout_Layout_layout_constraintCircleAngle - * @see #ConstraintLayout_Layout_layout_constraintCircleRadius - * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio - * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf - * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf - * @see #ConstraintLayout_Layout_layout_constraintGuide_begin - * @see #ConstraintLayout_Layout_layout_constraintGuide_end - * @see #ConstraintLayout_Layout_layout_constraintGuide_percent - * @see #ConstraintLayout_Layout_layout_constraintHeight_default - * @see #ConstraintLayout_Layout_layout_constraintHeight_max - * @see #ConstraintLayout_Layout_layout_constraintHeight_min - * @see #ConstraintLayout_Layout_layout_constraintHeight_percent - * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias - * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle - * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight - * @see #ConstraintLayout_Layout_layout_constraintLeft_creator - * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf - * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf - * @see #ConstraintLayout_Layout_layout_constraintRight_creator - * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf - * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf - * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf - * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf - * @see #ConstraintLayout_Layout_layout_constraintTop_creator - * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf - * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf - * @see #ConstraintLayout_Layout_layout_constraintVertical_bias - * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle - * @see #ConstraintLayout_Layout_layout_constraintVertical_weight - * @see #ConstraintLayout_Layout_layout_constraintWidth_default - * @see #ConstraintLayout_Layout_layout_constraintWidth_max - * @see #ConstraintLayout_Layout_layout_constraintWidth_min - * @see #ConstraintLayout_Layout_layout_constraintWidth_percent - * @see #ConstraintLayout_Layout_layout_editor_absoluteX - * @see #ConstraintLayout_Layout_layout_editor_absoluteY - * @see #ConstraintLayout_Layout_layout_goneMarginBottom - * @see #ConstraintLayout_Layout_layout_goneMarginEnd - * @see #ConstraintLayout_Layout_layout_goneMarginLeft - * @see #ConstraintLayout_Layout_layout_goneMarginRight - * @see #ConstraintLayout_Layout_layout_goneMarginStart - * @see #ConstraintLayout_Layout_layout_goneMarginTop - * @see #ConstraintLayout_Layout_layout_optimizationLevel - */ - public static final int[] ConstraintLayout_Layout={ - 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, - 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, - 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, - 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, - 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, - 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, - 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, - 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, - 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, - 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, - 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, - 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, - 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, - 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, - 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#maxHeight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:maxHeight - */ - public static final int ConstraintLayout_Layout_android_maxHeight=2; - /** - *

This symbol is the offset where the {@link android.R.attr#maxWidth} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:maxWidth - */ - public static final int ConstraintLayout_Layout_android_maxWidth=1; - /** - *

This symbol is the offset where the {@link android.R.attr#minHeight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minHeight - */ - public static final int ConstraintLayout_Layout_android_minHeight=4; - /** - *

This symbol is the offset where the {@link android.R.attr#minWidth} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minWidth - */ - public static final int ConstraintLayout_Layout_android_minWidth=3; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int ConstraintLayout_Layout_android_orientation=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#barrierAllowsGoneWidgets} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:barrierAllowsGoneWidgets - */ - public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#barrierDirection} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
- * - * @attr name com.gaolei.retrofitdemo.test:barrierDirection - */ - public static final int ConstraintLayout_Layout_barrierDirection=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#chainUseRtl} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:chainUseRtl - */ - public static final int ConstraintLayout_Layout_chainUseRtl=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#constraintSet} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:constraintSet - */ - public static final int ConstraintLayout_Layout_constraintSet=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#constraint_referenced_ids} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:constraint_referenced_ids - */ - public static final int ConstraintLayout_Layout_constraint_referenced_ids=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constrainedHeight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constrainedHeight - */ - public static final int ConstraintLayout_Layout_layout_constrainedHeight=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constrainedWidth} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constrainedWidth - */ - public static final int ConstraintLayout_Layout_layout_constrainedWidth=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBaseline_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBaseline_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBaseline_toBaselineOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBaseline_toBaselineOf - */ - public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBottom_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBottom_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBottom_toBottomOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBottom_toBottomOf - */ - public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBottom_toTopOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBottom_toTopOf - */ - public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintCircle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintCircle - */ - public static final int ConstraintLayout_Layout_layout_constraintCircle=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintCircleAngle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintCircleAngle - */ - public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintCircleRadius} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintCircleRadius - */ - public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintDimensionRatio} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintDimensionRatio - */ - public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintEnd_toEndOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintEnd_toEndOf - */ - public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintEnd_toStartOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintEnd_toStartOf - */ - public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintGuide_begin} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintGuide_begin - */ - public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintGuide_end} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintGuide_end - */ - public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintGuide_percent} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintGuide_percent - */ - public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_default} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_default - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_max} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_max - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_min} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_min - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_percent} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_percent - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHorizontal_bias} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHorizontal_bias - */ - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHorizontal_chainStyle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHorizontal_chainStyle - */ - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHorizontal_weight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHorizontal_weight - */ - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintLeft_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintLeft_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintLeft_toLeftOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintLeft_toLeftOf - */ - public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintLeft_toRightOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintLeft_toRightOf - */ - public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintRight_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintRight_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintRight_toLeftOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintRight_toLeftOf - */ - public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintRight_toRightOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintRight_toRightOf - */ - public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintStart_toEndOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintStart_toEndOf - */ - public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintStart_toStartOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintStart_toStartOf - */ - public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintTop_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintTop_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintTop_toBottomOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintTop_toBottomOf - */ - public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintTop_toTopOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintTop_toTopOf - */ - public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintVertical_bias} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintVertical_bias - */ - public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintVertical_chainStyle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintVertical_chainStyle - */ - public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintVertical_weight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintVertical_weight - */ - public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_default} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_default - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_max} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_max - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_min} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_min - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_percent} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_percent - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_editor_absoluteX} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_editor_absoluteX - */ - public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_editor_absoluteY} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_editor_absoluteY - */ - public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginBottom} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginBottom - */ - public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginEnd} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginEnd - */ - public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginLeft} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginLeft - */ - public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginRight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginRight - */ - public static final int ConstraintLayout_Layout_layout_goneMarginRight=56; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginStart} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginStart - */ - public static final int ConstraintLayout_Layout_layout_goneMarginStart=57; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginTop} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginTop - */ - public static final int ConstraintLayout_Layout_layout_goneMarginTop=58; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_optimizationLevel} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
barrier2
chains4
dimensions8
direct1for now only direct & barriers
none0
standard3
- * - * @attr name com.gaolei.retrofitdemo.test:layout_optimizationLevel - */ - public static final int ConstraintLayout_Layout_layout_optimizationLevel=59; - /** - * Attributes that can be used with a ConstraintLayout_placeholder. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #ConstraintLayout_placeholder_content com.gaolei.retrofitdemo.test:content}
{@link #ConstraintLayout_placeholder_emptyVisibility com.gaolei.retrofitdemo.test:emptyVisibility}
- * @see #ConstraintLayout_placeholder_content - * @see #ConstraintLayout_placeholder_emptyVisibility - */ - public static final int[] ConstraintLayout_placeholder={ - 0x7f02005a, 0x7f020074 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#content} - * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:content - */ - public static final int ConstraintLayout_placeholder_content=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#emptyVisibility} - * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
gone0
invisible1
- * - * @attr name com.gaolei.retrofitdemo.test:emptyVisibility - */ - public static final int ConstraintLayout_placeholder_emptyVisibility=1; - /** - * Attributes that can be used with a ConstraintSet. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ConstraintSet_android_orientation android:orientation}
{@link #ConstraintSet_android_id android:id}
{@link #ConstraintSet_android_visibility android:visibility}
{@link #ConstraintSet_android_layout_width android:layout_width}
{@link #ConstraintSet_android_layout_height android:layout_height}
{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}
{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}
{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}
{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}
{@link #ConstraintSet_android_alpha android:alpha}
{@link #ConstraintSet_android_transformPivotX android:transformPivotX}
{@link #ConstraintSet_android_transformPivotY android:transformPivotY}
{@link #ConstraintSet_android_translationX android:translationX}
{@link #ConstraintSet_android_translationY android:translationY}
{@link #ConstraintSet_android_scaleX android:scaleX}
{@link #ConstraintSet_android_scaleY android:scaleY}
{@link #ConstraintSet_android_rotation android:rotation}
{@link #ConstraintSet_android_rotationX android:rotationX}
{@link #ConstraintSet_android_rotationY android:rotationY}
{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}
{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}
{@link #ConstraintSet_android_translationZ android:translationZ}
{@link #ConstraintSet_android_elevation android:elevation}
{@link #ConstraintSet_layout_constrainedHeight com.gaolei.retrofitdemo.test:layout_constrainedHeight}
{@link #ConstraintSet_layout_constrainedWidth com.gaolei.retrofitdemo.test:layout_constrainedWidth}
{@link #ConstraintSet_layout_constraintBaseline_creator com.gaolei.retrofitdemo.test:layout_constraintBaseline_creator}
{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.gaolei.retrofitdemo.test:layout_constraintBaseline_toBaselineOf}
{@link #ConstraintSet_layout_constraintBottom_creator com.gaolei.retrofitdemo.test:layout_constraintBottom_creator}
{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.gaolei.retrofitdemo.test:layout_constraintBottom_toBottomOf}
{@link #ConstraintSet_layout_constraintBottom_toTopOf com.gaolei.retrofitdemo.test:layout_constraintBottom_toTopOf}
{@link #ConstraintSet_layout_constraintCircle com.gaolei.retrofitdemo.test:layout_constraintCircle}
{@link #ConstraintSet_layout_constraintCircleAngle com.gaolei.retrofitdemo.test:layout_constraintCircleAngle}
{@link #ConstraintSet_layout_constraintCircleRadius com.gaolei.retrofitdemo.test:layout_constraintCircleRadius}
{@link #ConstraintSet_layout_constraintDimensionRatio com.gaolei.retrofitdemo.test:layout_constraintDimensionRatio}
{@link #ConstraintSet_layout_constraintEnd_toEndOf com.gaolei.retrofitdemo.test:layout_constraintEnd_toEndOf}
{@link #ConstraintSet_layout_constraintEnd_toStartOf com.gaolei.retrofitdemo.test:layout_constraintEnd_toStartOf}
{@link #ConstraintSet_layout_constraintGuide_begin com.gaolei.retrofitdemo.test:layout_constraintGuide_begin}
{@link #ConstraintSet_layout_constraintGuide_end com.gaolei.retrofitdemo.test:layout_constraintGuide_end}
{@link #ConstraintSet_layout_constraintGuide_percent com.gaolei.retrofitdemo.test:layout_constraintGuide_percent}
{@link #ConstraintSet_layout_constraintHeight_default com.gaolei.retrofitdemo.test:layout_constraintHeight_default}
{@link #ConstraintSet_layout_constraintHeight_max com.gaolei.retrofitdemo.test:layout_constraintHeight_max}
{@link #ConstraintSet_layout_constraintHeight_min com.gaolei.retrofitdemo.test:layout_constraintHeight_min}
{@link #ConstraintSet_layout_constraintHeight_percent com.gaolei.retrofitdemo.test:layout_constraintHeight_percent}
{@link #ConstraintSet_layout_constraintHorizontal_bias com.gaolei.retrofitdemo.test:layout_constraintHorizontal_bias}
{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.gaolei.retrofitdemo.test:layout_constraintHorizontal_chainStyle}
{@link #ConstraintSet_layout_constraintHorizontal_weight com.gaolei.retrofitdemo.test:layout_constraintHorizontal_weight}
{@link #ConstraintSet_layout_constraintLeft_creator com.gaolei.retrofitdemo.test:layout_constraintLeft_creator}
{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.gaolei.retrofitdemo.test:layout_constraintLeft_toLeftOf}
{@link #ConstraintSet_layout_constraintLeft_toRightOf com.gaolei.retrofitdemo.test:layout_constraintLeft_toRightOf}
{@link #ConstraintSet_layout_constraintRight_creator com.gaolei.retrofitdemo.test:layout_constraintRight_creator}
{@link #ConstraintSet_layout_constraintRight_toLeftOf com.gaolei.retrofitdemo.test:layout_constraintRight_toLeftOf}
{@link #ConstraintSet_layout_constraintRight_toRightOf com.gaolei.retrofitdemo.test:layout_constraintRight_toRightOf}
{@link #ConstraintSet_layout_constraintStart_toEndOf com.gaolei.retrofitdemo.test:layout_constraintStart_toEndOf}
{@link #ConstraintSet_layout_constraintStart_toStartOf com.gaolei.retrofitdemo.test:layout_constraintStart_toStartOf}
{@link #ConstraintSet_layout_constraintTop_creator com.gaolei.retrofitdemo.test:layout_constraintTop_creator}
{@link #ConstraintSet_layout_constraintTop_toBottomOf com.gaolei.retrofitdemo.test:layout_constraintTop_toBottomOf}
{@link #ConstraintSet_layout_constraintTop_toTopOf com.gaolei.retrofitdemo.test:layout_constraintTop_toTopOf}
{@link #ConstraintSet_layout_constraintVertical_bias com.gaolei.retrofitdemo.test:layout_constraintVertical_bias}
{@link #ConstraintSet_layout_constraintVertical_chainStyle com.gaolei.retrofitdemo.test:layout_constraintVertical_chainStyle}
{@link #ConstraintSet_layout_constraintVertical_weight com.gaolei.retrofitdemo.test:layout_constraintVertical_weight}
{@link #ConstraintSet_layout_constraintWidth_default com.gaolei.retrofitdemo.test:layout_constraintWidth_default}
{@link #ConstraintSet_layout_constraintWidth_max com.gaolei.retrofitdemo.test:layout_constraintWidth_max}
{@link #ConstraintSet_layout_constraintWidth_min com.gaolei.retrofitdemo.test:layout_constraintWidth_min}
{@link #ConstraintSet_layout_constraintWidth_percent com.gaolei.retrofitdemo.test:layout_constraintWidth_percent}
{@link #ConstraintSet_layout_editor_absoluteX com.gaolei.retrofitdemo.test:layout_editor_absoluteX}
{@link #ConstraintSet_layout_editor_absoluteY com.gaolei.retrofitdemo.test:layout_editor_absoluteY}
{@link #ConstraintSet_layout_goneMarginBottom com.gaolei.retrofitdemo.test:layout_goneMarginBottom}
{@link #ConstraintSet_layout_goneMarginEnd com.gaolei.retrofitdemo.test:layout_goneMarginEnd}
{@link #ConstraintSet_layout_goneMarginLeft com.gaolei.retrofitdemo.test:layout_goneMarginLeft}
{@link #ConstraintSet_layout_goneMarginRight com.gaolei.retrofitdemo.test:layout_goneMarginRight}
{@link #ConstraintSet_layout_goneMarginStart com.gaolei.retrofitdemo.test:layout_goneMarginStart}
{@link #ConstraintSet_layout_goneMarginTop com.gaolei.retrofitdemo.test:layout_goneMarginTop}
- * @see #ConstraintSet_android_orientation - * @see #ConstraintSet_android_id - * @see #ConstraintSet_android_visibility - * @see #ConstraintSet_android_layout_width - * @see #ConstraintSet_android_layout_height - * @see #ConstraintSet_android_layout_marginLeft - * @see #ConstraintSet_android_layout_marginTop - * @see #ConstraintSet_android_layout_marginRight - * @see #ConstraintSet_android_layout_marginBottom - * @see #ConstraintSet_android_alpha - * @see #ConstraintSet_android_transformPivotX - * @see #ConstraintSet_android_transformPivotY - * @see #ConstraintSet_android_translationX - * @see #ConstraintSet_android_translationY - * @see #ConstraintSet_android_scaleX - * @see #ConstraintSet_android_scaleY - * @see #ConstraintSet_android_rotation - * @see #ConstraintSet_android_rotationX - * @see #ConstraintSet_android_rotationY - * @see #ConstraintSet_android_layout_marginStart - * @see #ConstraintSet_android_layout_marginEnd - * @see #ConstraintSet_android_translationZ - * @see #ConstraintSet_android_elevation - * @see #ConstraintSet_layout_constrainedHeight - * @see #ConstraintSet_layout_constrainedWidth - * @see #ConstraintSet_layout_constraintBaseline_creator - * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf - * @see #ConstraintSet_layout_constraintBottom_creator - * @see #ConstraintSet_layout_constraintBottom_toBottomOf - * @see #ConstraintSet_layout_constraintBottom_toTopOf - * @see #ConstraintSet_layout_constraintCircle - * @see #ConstraintSet_layout_constraintCircleAngle - * @see #ConstraintSet_layout_constraintCircleRadius - * @see #ConstraintSet_layout_constraintDimensionRatio - * @see #ConstraintSet_layout_constraintEnd_toEndOf - * @see #ConstraintSet_layout_constraintEnd_toStartOf - * @see #ConstraintSet_layout_constraintGuide_begin - * @see #ConstraintSet_layout_constraintGuide_end - * @see #ConstraintSet_layout_constraintGuide_percent - * @see #ConstraintSet_layout_constraintHeight_default - * @see #ConstraintSet_layout_constraintHeight_max - * @see #ConstraintSet_layout_constraintHeight_min - * @see #ConstraintSet_layout_constraintHeight_percent - * @see #ConstraintSet_layout_constraintHorizontal_bias - * @see #ConstraintSet_layout_constraintHorizontal_chainStyle - * @see #ConstraintSet_layout_constraintHorizontal_weight - * @see #ConstraintSet_layout_constraintLeft_creator - * @see #ConstraintSet_layout_constraintLeft_toLeftOf - * @see #ConstraintSet_layout_constraintLeft_toRightOf - * @see #ConstraintSet_layout_constraintRight_creator - * @see #ConstraintSet_layout_constraintRight_toLeftOf - * @see #ConstraintSet_layout_constraintRight_toRightOf - * @see #ConstraintSet_layout_constraintStart_toEndOf - * @see #ConstraintSet_layout_constraintStart_toStartOf - * @see #ConstraintSet_layout_constraintTop_creator - * @see #ConstraintSet_layout_constraintTop_toBottomOf - * @see #ConstraintSet_layout_constraintTop_toTopOf - * @see #ConstraintSet_layout_constraintVertical_bias - * @see #ConstraintSet_layout_constraintVertical_chainStyle - * @see #ConstraintSet_layout_constraintVertical_weight - * @see #ConstraintSet_layout_constraintWidth_default - * @see #ConstraintSet_layout_constraintWidth_max - * @see #ConstraintSet_layout_constraintWidth_min - * @see #ConstraintSet_layout_constraintWidth_percent - * @see #ConstraintSet_layout_editor_absoluteX - * @see #ConstraintSet_layout_editor_absoluteY - * @see #ConstraintSet_layout_goneMarginBottom - * @see #ConstraintSet_layout_goneMarginEnd - * @see #ConstraintSet_layout_goneMarginLeft - * @see #ConstraintSet_layout_goneMarginRight - * @see #ConstraintSet_layout_goneMarginStart - * @see #ConstraintSet_layout_goneMarginTop - */ - public static final int[] ConstraintSet={ - 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, - 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, - 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, - 0x01010322, 0x01010323, 0x01010324, 0x01010325, - 0x01010326, 0x01010327, 0x01010328, 0x010103b5, - 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, - 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, - 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, - 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, - 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, - 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, - 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, - 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, - 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, - 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, - 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, - 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, - 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#alpha} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:alpha - */ - public static final int ConstraintSet_android_alpha=9; - /** - *

This symbol is the offset where the {@link android.R.attr#elevation} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:elevation - */ - public static final int ConstraintSet_android_elevation=22; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int ConstraintSet_android_id=1; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_height} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_height - */ - public static final int ConstraintSet_android_layout_height=4; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginBottom - */ - public static final int ConstraintSet_android_layout_marginBottom=8; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginEnd - */ - public static final int ConstraintSet_android_layout_marginEnd=20; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginLeft - */ - public static final int ConstraintSet_android_layout_marginLeft=5; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginRight - */ - public static final int ConstraintSet_android_layout_marginRight=7; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginStart - */ - public static final int ConstraintSet_android_layout_marginStart=19; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginTop - */ - public static final int ConstraintSet_android_layout_marginTop=6; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_width} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_width - */ - public static final int ConstraintSet_android_layout_width=3; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int ConstraintSet_android_orientation=0; - /** - *

This symbol is the offset where the {@link android.R.attr#rotation} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:rotation - */ - public static final int ConstraintSet_android_rotation=16; - /** - *

This symbol is the offset where the {@link android.R.attr#rotationX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:rotationX - */ - public static final int ConstraintSet_android_rotationX=17; - /** - *

This symbol is the offset where the {@link android.R.attr#rotationY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:rotationY - */ - public static final int ConstraintSet_android_rotationY=18; - /** - *

This symbol is the offset where the {@link android.R.attr#scaleX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:scaleX - */ - public static final int ConstraintSet_android_scaleX=14; - /** - *

This symbol is the offset where the {@link android.R.attr#scaleY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:scaleY - */ - public static final int ConstraintSet_android_scaleY=15; - /** - *

This symbol is the offset where the {@link android.R.attr#transformPivotX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:transformPivotX - */ - public static final int ConstraintSet_android_transformPivotX=10; - /** - *

This symbol is the offset where the {@link android.R.attr#transformPivotY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:transformPivotY - */ - public static final int ConstraintSet_android_transformPivotY=11; - /** - *

This symbol is the offset where the {@link android.R.attr#translationX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:translationX - */ - public static final int ConstraintSet_android_translationX=12; - /** - *

This symbol is the offset where the {@link android.R.attr#translationY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:translationY - */ - public static final int ConstraintSet_android_translationY=13; - /** - *

This symbol is the offset where the {@link android.R.attr#translationZ} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:translationZ - */ - public static final int ConstraintSet_android_translationZ=21; - /** - *

This symbol is the offset where the {@link android.R.attr#visibility} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
gone2
invisible1
visible0
- * - * @attr name android:visibility - */ - public static final int ConstraintSet_android_visibility=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constrainedHeight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constrainedHeight - */ - public static final int ConstraintSet_layout_constrainedHeight=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constrainedWidth} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constrainedWidth - */ - public static final int ConstraintSet_layout_constrainedWidth=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBaseline_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBaseline_creator - */ - public static final int ConstraintSet_layout_constraintBaseline_creator=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBaseline_toBaselineOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBaseline_toBaselineOf - */ - public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBottom_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBottom_creator - */ - public static final int ConstraintSet_layout_constraintBottom_creator=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBottom_toBottomOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBottom_toBottomOf - */ - public static final int ConstraintSet_layout_constraintBottom_toBottomOf=28; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintBottom_toTopOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintBottom_toTopOf - */ - public static final int ConstraintSet_layout_constraintBottom_toTopOf=29; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintCircle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintCircle - */ - public static final int ConstraintSet_layout_constraintCircle=30; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintCircleAngle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintCircleAngle - */ - public static final int ConstraintSet_layout_constraintCircleAngle=31; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintCircleRadius} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintCircleRadius - */ - public static final int ConstraintSet_layout_constraintCircleRadius=32; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintDimensionRatio} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintDimensionRatio - */ - public static final int ConstraintSet_layout_constraintDimensionRatio=33; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintEnd_toEndOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintEnd_toEndOf - */ - public static final int ConstraintSet_layout_constraintEnd_toEndOf=34; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintEnd_toStartOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintEnd_toStartOf - */ - public static final int ConstraintSet_layout_constraintEnd_toStartOf=35; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintGuide_begin} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintGuide_begin - */ - public static final int ConstraintSet_layout_constraintGuide_begin=36; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintGuide_end} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintGuide_end - */ - public static final int ConstraintSet_layout_constraintGuide_end=37; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintGuide_percent} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintGuide_percent - */ - public static final int ConstraintSet_layout_constraintGuide_percent=38; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_default} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_default - */ - public static final int ConstraintSet_layout_constraintHeight_default=39; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_max} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_max - */ - public static final int ConstraintSet_layout_constraintHeight_max=40; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_min} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_min - */ - public static final int ConstraintSet_layout_constraintHeight_min=41; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHeight_percent} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHeight_percent - */ - public static final int ConstraintSet_layout_constraintHeight_percent=42; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHorizontal_bias} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHorizontal_bias - */ - public static final int ConstraintSet_layout_constraintHorizontal_bias=43; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHorizontal_chainStyle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHorizontal_chainStyle - */ - public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=44; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintHorizontal_weight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintHorizontal_weight - */ - public static final int ConstraintSet_layout_constraintHorizontal_weight=45; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintLeft_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintLeft_creator - */ - public static final int ConstraintSet_layout_constraintLeft_creator=46; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintLeft_toLeftOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintLeft_toLeftOf - */ - public static final int ConstraintSet_layout_constraintLeft_toLeftOf=47; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintLeft_toRightOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintLeft_toRightOf - */ - public static final int ConstraintSet_layout_constraintLeft_toRightOf=48; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintRight_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintRight_creator - */ - public static final int ConstraintSet_layout_constraintRight_creator=49; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintRight_toLeftOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintRight_toLeftOf - */ - public static final int ConstraintSet_layout_constraintRight_toLeftOf=50; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintRight_toRightOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintRight_toRightOf - */ - public static final int ConstraintSet_layout_constraintRight_toRightOf=51; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintStart_toEndOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintStart_toEndOf - */ - public static final int ConstraintSet_layout_constraintStart_toEndOf=52; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintStart_toStartOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintStart_toStartOf - */ - public static final int ConstraintSet_layout_constraintStart_toStartOf=53; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintTop_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintTop_creator - */ - public static final int ConstraintSet_layout_constraintTop_creator=54; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintTop_toBottomOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintTop_toBottomOf - */ - public static final int ConstraintSet_layout_constraintTop_toBottomOf=55; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintTop_toTopOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintTop_toTopOf - */ - public static final int ConstraintSet_layout_constraintTop_toTopOf=56; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintVertical_bias} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintVertical_bias - */ - public static final int ConstraintSet_layout_constraintVertical_bias=57; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintVertical_chainStyle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintVertical_chainStyle - */ - public static final int ConstraintSet_layout_constraintVertical_chainStyle=58; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintVertical_weight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintVertical_weight - */ - public static final int ConstraintSet_layout_constraintVertical_weight=59; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_default} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_default - */ - public static final int ConstraintSet_layout_constraintWidth_default=60; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_max} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_max - */ - public static final int ConstraintSet_layout_constraintWidth_max=61; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_min} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_min - */ - public static final int ConstraintSet_layout_constraintWidth_min=62; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_constraintWidth_percent} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo.test:layout_constraintWidth_percent - */ - public static final int ConstraintSet_layout_constraintWidth_percent=63; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_editor_absoluteX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_editor_absoluteX - */ - public static final int ConstraintSet_layout_editor_absoluteX=64; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_editor_absoluteY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_editor_absoluteY - */ - public static final int ConstraintSet_layout_editor_absoluteY=65; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginBottom} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginBottom - */ - public static final int ConstraintSet_layout_goneMarginBottom=66; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginEnd} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginEnd - */ - public static final int ConstraintSet_layout_goneMarginEnd=67; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginLeft} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginLeft - */ - public static final int ConstraintSet_layout_goneMarginLeft=68; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginRight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginRight - */ - public static final int ConstraintSet_layout_goneMarginRight=69; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginStart} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginStart - */ - public static final int ConstraintSet_layout_goneMarginStart=70; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout_goneMarginTop} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:layout_goneMarginTop - */ - public static final int ConstraintSet_layout_goneMarginTop=71; - /** - * Attributes that can be used with a DrawerArrowToggle. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.gaolei.retrofitdemo.test:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.gaolei.retrofitdemo.test:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.gaolei.retrofitdemo.test:barLength}
{@link #DrawerArrowToggle_color com.gaolei.retrofitdemo.test:color}
{@link #DrawerArrowToggle_drawableSize com.gaolei.retrofitdemo.test:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.gaolei.retrofitdemo.test:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.gaolei.retrofitdemo.test:spinBars}
{@link #DrawerArrowToggle_thickness com.gaolei.retrofitdemo.test:thickness}
- * @see #DrawerArrowToggle_arrowHeadLength - * @see #DrawerArrowToggle_arrowShaftLength - * @see #DrawerArrowToggle_barLength - * @see #DrawerArrowToggle_color - * @see #DrawerArrowToggle_drawableSize - * @see #DrawerArrowToggle_gapBetweenBars - * @see #DrawerArrowToggle_spinBars - * @see #DrawerArrowToggle_thickness - */ - public static final int[] DrawerArrowToggle={ - 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, - 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#arrowHeadLength} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:arrowHeadLength - */ - public static final int DrawerArrowToggle_arrowHeadLength=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#arrowShaftLength} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:arrowShaftLength - */ - public static final int DrawerArrowToggle_arrowShaftLength=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#barLength} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:barLength - */ - public static final int DrawerArrowToggle_barLength=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#color} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:color - */ - public static final int DrawerArrowToggle_color=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#drawableSize} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:drawableSize - */ - public static final int DrawerArrowToggle_drawableSize=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#gapBetweenBars} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:gapBetweenBars - */ - public static final int DrawerArrowToggle_gapBetweenBars=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#spinBars} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:spinBars - */ - public static final int DrawerArrowToggle_spinBars=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#thickness} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:thickness - */ - public static final int DrawerArrowToggle_thickness=7; - /** - * Attributes that can be used with a FontFamily. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #FontFamily_fontProviderAuthority com.gaolei.retrofitdemo.test:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts com.gaolei.retrofitdemo.test:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy com.gaolei.retrofitdemo.test:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout com.gaolei.retrofitdemo.test:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage com.gaolei.retrofitdemo.test:fontProviderPackage}
{@link #FontFamily_fontProviderQuery com.gaolei.retrofitdemo.test:fontProviderQuery}
- * @see #FontFamily_fontProviderAuthority - * @see #FontFamily_fontProviderCerts - * @see #FontFamily_fontProviderFetchStrategy - * @see #FontFamily_fontProviderFetchTimeout - * @see #FontFamily_fontProviderPackage - * @see #FontFamily_fontProviderQuery - */ - public static final int[] FontFamily={ - 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, - 0x7f02007c, 0x7f02007d - }; - /** - * Attributes that can be used with a FontFamilyFont. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #FontFamilyFont_font com.gaolei.retrofitdemo.test:font}
{@link #FontFamilyFont_fontStyle com.gaolei.retrofitdemo.test:fontStyle}
{@link #FontFamilyFont_fontWeight com.gaolei.retrofitdemo.test:fontWeight}
- * @see #FontFamilyFont_font - * @see #FontFamilyFont_fontStyle - * @see #FontFamilyFont_fontWeight - */ - public static final int[] FontFamilyFont={ - 0x7f020076, 0x7f02007e, 0x7f02007f - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#font} - * attribute's value can be found in the {@link #FontFamilyFont} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:font - */ - public static final int FontFamilyFont_font=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontStyle} - * attribute's value can be found in the {@link #FontFamilyFont} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
italic1
normal0
- * - * @attr name com.gaolei.retrofitdemo.test:fontStyle - */ - public static final int FontFamilyFont_fontStyle=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontWeight} - * attribute's value can be found in the {@link #FontFamilyFont} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo.test:fontWeight - */ - public static final int FontFamilyFont_fontWeight=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontProviderAuthority} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:fontProviderAuthority - */ - public static final int FontFamily_fontProviderAuthority=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontProviderCerts} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:fontProviderCerts - */ - public static final int FontFamily_fontProviderCerts=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontProviderFetchStrategy} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
async1
blocking0
- * - * @attr name com.gaolei.retrofitdemo.test:fontProviderFetchStrategy - */ - public static final int FontFamily_fontProviderFetchStrategy=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontProviderFetchTimeout} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be an integer value, such as "100". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
foreverffffffff
- * - * @attr name com.gaolei.retrofitdemo.test:fontProviderFetchTimeout - */ - public static final int FontFamily_fontProviderFetchTimeout=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontProviderPackage} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:fontProviderPackage - */ - public static final int FontFamily_fontProviderPackage=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontProviderQuery} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:fontProviderQuery - */ - public static final int FontFamily_fontProviderQuery=5; - /** - * Attributes that can be used with a LinearConstraintLayout. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #LinearConstraintLayout_android_orientation android:orientation}
- * @see #LinearConstraintLayout_android_orientation - */ - public static final int[] LinearConstraintLayout={ - 0x010100c4 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #LinearConstraintLayout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int LinearConstraintLayout_android_orientation=0; - /** - * Attributes that can be used with a LinearLayoutCompat. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.gaolei.retrofitdemo.test:divider}
{@link #LinearLayoutCompat_dividerPadding com.gaolei.retrofitdemo.test:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.gaolei.retrofitdemo.test:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.gaolei.retrofitdemo.test:showDividers}
- * @see #LinearLayoutCompat_android_gravity - * @see #LinearLayoutCompat_android_orientation - * @see #LinearLayoutCompat_android_baselineAligned - * @see #LinearLayoutCompat_android_baselineAlignedChildIndex - * @see #LinearLayoutCompat_android_weightSum - * @see #LinearLayoutCompat_divider - * @see #LinearLayoutCompat_dividerPadding - * @see #LinearLayoutCompat_measureWithLargestChild - * @see #LinearLayoutCompat_showDividers - */ - public static final int[] LinearLayoutCompat={ - 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, - 0x7f0200f1 - }; - /** - * Attributes that can be used with a LinearLayoutCompat_Layout. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
- * @see #LinearLayoutCompat_Layout_android_layout_gravity - * @see #LinearLayoutCompat_Layout_android_layout_width - * @see #LinearLayoutCompat_Layout_android_layout_height - * @see #LinearLayoutCompat_Layout_android_layout_weight - */ - public static final int[] LinearLayoutCompat_Layout={ - 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_gravity} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:layout_gravity - */ - public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_height} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_height - */ - public static final int LinearLayoutCompat_Layout_android_layout_height=2; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_weight} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:layout_weight - */ - public static final int LinearLayoutCompat_Layout_android_layout_weight=3; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_width} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_width - */ - public static final int LinearLayoutCompat_Layout_android_layout_width=1; - /** - *

This symbol is the offset where the {@link android.R.attr#baselineAligned} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:baselineAligned - */ - public static final int LinearLayoutCompat_android_baselineAligned=2; - /** - *

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be an integer value, such as "100". - * - * @attr name android:baselineAlignedChildIndex - */ - public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; - /** - *

This symbol is the offset where the {@link android.R.attr#gravity} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:gravity - */ - public static final int LinearLayoutCompat_android_gravity=0; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int LinearLayoutCompat_android_orientation=1; - /** - *

This symbol is the offset where the {@link android.R.attr#weightSum} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:weightSum - */ - public static final int LinearLayoutCompat_android_weightSum=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#divider} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:divider - */ - public static final int LinearLayoutCompat_divider=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#dividerPadding} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:dividerPadding - */ - public static final int LinearLayoutCompat_dividerPadding=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#measureWithLargestChild} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:measureWithLargestChild - */ - public static final int LinearLayoutCompat_measureWithLargestChild=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#showDividers} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
beginning1
end4
middle2
none0
- * - * @attr name com.gaolei.retrofitdemo.test:showDividers - */ - public static final int LinearLayoutCompat_showDividers=8; - /** - * Attributes that can be used with a ListPopupWindow. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
- * @see #ListPopupWindow_android_dropDownHorizontalOffset - * @see #ListPopupWindow_android_dropDownVerticalOffset - */ - public static final int[] ListPopupWindow={ - 0x010102ac, 0x010102ad - }; - /** - *

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} - * attribute's value can be found in the {@link #ListPopupWindow} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:dropDownHorizontalOffset - */ - public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; - /** - *

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} - * attribute's value can be found in the {@link #ListPopupWindow} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:dropDownVerticalOffset - */ - public static final int ListPopupWindow_android_dropDownVerticalOffset=1; - /** - * Attributes that can be used with a MenuGroup. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
- * @see #MenuGroup_android_enabled - * @see #MenuGroup_android_id - * @see #MenuGroup_android_visible - * @see #MenuGroup_android_menuCategory - * @see #MenuGroup_android_orderInCategory - * @see #MenuGroup_android_checkableBehavior - */ - public static final int[] MenuGroup={ - 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, - 0x010101df, 0x010101e0 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#checkableBehavior} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
all1
none0
single2
- * - * @attr name android:checkableBehavior - */ - public static final int MenuGroup_android_checkableBehavior=5; - /** - *

This symbol is the offset where the {@link android.R.attr#enabled} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:enabled - */ - public static final int MenuGroup_android_enabled=0; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int MenuGroup_android_id=1; - /** - *

This symbol is the offset where the {@link android.R.attr#menuCategory} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
- * - * @attr name android:menuCategory - */ - public static final int MenuGroup_android_menuCategory=3; - /** - *

This symbol is the offset where the {@link android.R.attr#orderInCategory} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be an integer value, such as "100". - * - * @attr name android:orderInCategory - */ - public static final int MenuGroup_android_orderInCategory=4; - /** - *

This symbol is the offset where the {@link android.R.attr#visible} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:visible - */ - public static final int MenuGroup_android_visible=2; - /** - * Attributes that can be used with a MenuItem. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout com.gaolei.retrofitdemo.test:actionLayout}
{@link #MenuItem_actionProviderClass com.gaolei.retrofitdemo.test:actionProviderClass}
{@link #MenuItem_actionViewClass com.gaolei.retrofitdemo.test:actionViewClass}
{@link #MenuItem_alphabeticModifiers com.gaolei.retrofitdemo.test:alphabeticModifiers}
{@link #MenuItem_contentDescription com.gaolei.retrofitdemo.test:contentDescription}
{@link #MenuItem_iconTint com.gaolei.retrofitdemo.test:iconTint}
{@link #MenuItem_iconTintMode com.gaolei.retrofitdemo.test:iconTintMode}
{@link #MenuItem_numericModifiers com.gaolei.retrofitdemo.test:numericModifiers}
{@link #MenuItem_showAsAction com.gaolei.retrofitdemo.test:showAsAction}
{@link #MenuItem_tooltipText com.gaolei.retrofitdemo.test:tooltipText}
- * @see #MenuItem_android_icon - * @see #MenuItem_android_enabled - * @see #MenuItem_android_id - * @see #MenuItem_android_checked - * @see #MenuItem_android_visible - * @see #MenuItem_android_menuCategory - * @see #MenuItem_android_orderInCategory - * @see #MenuItem_android_title - * @see #MenuItem_android_titleCondensed - * @see #MenuItem_android_alphabeticShortcut - * @see #MenuItem_android_numericShortcut - * @see #MenuItem_android_checkable - * @see #MenuItem_android_onClick - * @see #MenuItem_actionLayout - * @see #MenuItem_actionProviderClass - * @see #MenuItem_actionViewClass - * @see #MenuItem_alphabeticModifiers - * @see #MenuItem_contentDescription - * @see #MenuItem_iconTint - * @see #MenuItem_iconTintMode - * @see #MenuItem_numericModifiers - * @see #MenuItem_showAsAction - * @see #MenuItem_tooltipText - */ - public static final int[] MenuItem={ - 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, - 0x01010194, 0x010101de, 0x010101df, 0x010101e1, - 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, - 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, - 0x7f0200d5, 0x7f0200f0, 0x7f020129 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionLayout} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:actionLayout - */ - public static final int MenuItem_actionLayout=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionProviderClass} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:actionProviderClass - */ - public static final int MenuItem_actionProviderClass=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#actionViewClass} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:actionViewClass - */ - public static final int MenuItem_actionViewClass=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#alphabeticModifiers} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- * - * @attr name com.gaolei.retrofitdemo.test:alphabeticModifiers - */ - public static final int MenuItem_alphabeticModifiers=16; - /** - *

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:alphabeticShortcut - */ - public static final int MenuItem_android_alphabeticShortcut=9; - /** - *

This symbol is the offset where the {@link android.R.attr#checkable} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:checkable - */ - public static final int MenuItem_android_checkable=11; - /** - *

This symbol is the offset where the {@link android.R.attr#checked} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:checked - */ - public static final int MenuItem_android_checked=3; - /** - *

This symbol is the offset where the {@link android.R.attr#enabled} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:enabled - */ - public static final int MenuItem_android_enabled=1; - /** - *

This symbol is the offset where the {@link android.R.attr#icon} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:icon - */ - public static final int MenuItem_android_icon=0; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int MenuItem_android_id=2; - /** - *

This symbol is the offset where the {@link android.R.attr#menuCategory} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
- * - * @attr name android:menuCategory - */ - public static final int MenuItem_android_menuCategory=5; - /** - *

This symbol is the offset where the {@link android.R.attr#numericShortcut} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:numericShortcut - */ - public static final int MenuItem_android_numericShortcut=10; - /** - *

This symbol is the offset where the {@link android.R.attr#onClick} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:onClick - */ - public static final int MenuItem_android_onClick=12; - /** - *

This symbol is the offset where the {@link android.R.attr#orderInCategory} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be an integer value, such as "100". - * - * @attr name android:orderInCategory - */ - public static final int MenuItem_android_orderInCategory=6; - /** - *

This symbol is the offset where the {@link android.R.attr#title} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:title - */ - public static final int MenuItem_android_title=7; - /** - *

This symbol is the offset where the {@link android.R.attr#titleCondensed} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:titleCondensed - */ - public static final int MenuItem_android_titleCondensed=8; - /** - *

This symbol is the offset where the {@link android.R.attr#visible} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:visible - */ - public static final int MenuItem_android_visible=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentDescription} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:contentDescription - */ - public static final int MenuItem_contentDescription=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#iconTint} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:iconTint - */ - public static final int MenuItem_iconTint=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#iconTintMode} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:iconTintMode - */ - public static final int MenuItem_iconTintMode=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#numericModifiers} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- * - * @attr name com.gaolei.retrofitdemo.test:numericModifiers - */ - public static final int MenuItem_numericModifiers=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#showAsAction} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
always2
collapseActionView8
ifRoom1
never0
withText4
- * - * @attr name com.gaolei.retrofitdemo.test:showAsAction - */ - public static final int MenuItem_showAsAction=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#tooltipText} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:tooltipText - */ - public static final int MenuItem_tooltipText=22; - /** - * Attributes that can be used with a MenuView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing com.gaolei.retrofitdemo.test:preserveIconSpacing}
{@link #MenuView_subMenuArrow com.gaolei.retrofitdemo.test:subMenuArrow}
- * @see #MenuView_android_windowAnimationStyle - * @see #MenuView_android_itemTextAppearance - * @see #MenuView_android_horizontalDivider - * @see #MenuView_android_verticalDivider - * @see #MenuView_android_headerBackground - * @see #MenuView_android_itemBackground - * @see #MenuView_android_itemIconDisabledAlpha - * @see #MenuView_preserveIconSpacing - * @see #MenuView_subMenuArrow - */ - public static final int[] MenuView={ - 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, - 0x7f0200fb - }; - /** - *

This symbol is the offset where the {@link android.R.attr#headerBackground} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:headerBackground - */ - public static final int MenuView_android_headerBackground=4; - /** - *

This symbol is the offset where the {@link android.R.attr#horizontalDivider} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:horizontalDivider - */ - public static final int MenuView_android_horizontalDivider=2; - /** - *

This symbol is the offset where the {@link android.R.attr#itemBackground} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:itemBackground - */ - public static final int MenuView_android_itemBackground=5; - /** - *

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_android_itemIconDisabledAlpha=6; - /** - *

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:itemTextAppearance - */ - public static final int MenuView_android_itemTextAppearance=1; - /** - *

This symbol is the offset where the {@link android.R.attr#verticalDivider} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:verticalDivider - */ - public static final int MenuView_android_verticalDivider=3; - /** - *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#preserveIconSpacing} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:preserveIconSpacing - */ - public static final int MenuView_preserveIconSpacing=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subMenuArrow} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:subMenuArrow - */ - public static final int MenuView_subMenuArrow=8; - /** - * Attributes that can be used with a PopupWindow. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor com.gaolei.retrofitdemo.test:overlapAnchor}
- * @see #PopupWindow_android_popupBackground - * @see #PopupWindow_android_popupAnimationStyle - * @see #PopupWindow_overlapAnchor - */ - public static final int[] PopupWindow={ - 0x01010176, 0x010102c9, 0x7f0200d6 - }; - /** - * Attributes that can be used with a PopupWindowBackgroundState. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.gaolei.retrofitdemo.test:state_above_anchor}
- * @see #PopupWindowBackgroundState_state_above_anchor - */ - public static final int[] PopupWindowBackgroundState={ - 0x7f0200fa - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#state_above_anchor} - * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:state_above_anchor - */ - public static final int PopupWindowBackgroundState_state_above_anchor=0; - /** - *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} - * attribute's value can be found in the {@link #PopupWindow} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:popupAnimationStyle - */ - public static final int PopupWindow_android_popupAnimationStyle=1; - /** - *

This symbol is the offset where the {@link android.R.attr#popupBackground} - * attribute's value can be found in the {@link #PopupWindow} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:popupBackground - */ - public static final int PopupWindow_android_popupBackground=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#overlapAnchor} - * attribute's value can be found in the {@link #PopupWindow} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:overlapAnchor - */ - public static final int PopupWindow_overlapAnchor=2; - /** - * Attributes that can be used with a RecycleListView. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons com.gaolei.retrofitdemo.test:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle com.gaolei.retrofitdemo.test:paddingTopNoTitle}
- * @see #RecycleListView_paddingBottomNoButtons - * @see #RecycleListView_paddingTopNoTitle - */ - public static final int[] RecycleListView={ - 0x7f0200d7, 0x7f0200da - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#paddingBottomNoButtons} - * attribute's value can be found in the {@link #RecycleListView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:paddingBottomNoButtons - */ - public static final int RecycleListView_paddingBottomNoButtons=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#paddingTopNoTitle} - * attribute's value can be found in the {@link #RecycleListView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:paddingTopNoTitle - */ - public static final int RecycleListView_paddingTopNoTitle=1; - /** - * Attributes that can be used with a SearchView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_closeIcon com.gaolei.retrofitdemo.test:closeIcon}
{@link #SearchView_commitIcon com.gaolei.retrofitdemo.test:commitIcon}
{@link #SearchView_defaultQueryHint com.gaolei.retrofitdemo.test:defaultQueryHint}
{@link #SearchView_goIcon com.gaolei.retrofitdemo.test:goIcon}
{@link #SearchView_iconifiedByDefault com.gaolei.retrofitdemo.test:iconifiedByDefault}
{@link #SearchView_layout com.gaolei.retrofitdemo.test:layout}
{@link #SearchView_queryBackground com.gaolei.retrofitdemo.test:queryBackground}
{@link #SearchView_queryHint com.gaolei.retrofitdemo.test:queryHint}
{@link #SearchView_searchHintIcon com.gaolei.retrofitdemo.test:searchHintIcon}
{@link #SearchView_searchIcon com.gaolei.retrofitdemo.test:searchIcon}
{@link #SearchView_submitBackground com.gaolei.retrofitdemo.test:submitBackground}
{@link #SearchView_suggestionRowLayout com.gaolei.retrofitdemo.test:suggestionRowLayout}
{@link #SearchView_voiceIcon com.gaolei.retrofitdemo.test:voiceIcon}
- * @see #SearchView_android_focusable - * @see #SearchView_android_maxWidth - * @see #SearchView_android_inputType - * @see #SearchView_android_imeOptions - * @see #SearchView_closeIcon - * @see #SearchView_commitIcon - * @see #SearchView_defaultQueryHint - * @see #SearchView_goIcon - * @see #SearchView_iconifiedByDefault - * @see #SearchView_layout - * @see #SearchView_queryBackground - * @see #SearchView_queryHint - * @see #SearchView_searchHintIcon - * @see #SearchView_searchIcon - * @see #SearchView_submitBackground - * @see #SearchView_suggestionRowLayout - * @see #SearchView_voiceIcon - */ - public static final int[] SearchView={ - 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, - 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, - 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, - 0x7f02012d - }; - /** - *

This symbol is the offset where the {@link android.R.attr#focusable} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a boolean value, such as "true" or - * "false". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
auto10
- * - * @attr name android:focusable - */ - public static final int SearchView_android_focusable=0; - /** - *

This symbol is the offset where the {@link android.R.attr#imeOptions} - * attribute's value can be found in the {@link #SearchView} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
- * - * @attr name android:imeOptions - */ - public static final int SearchView_android_imeOptions=3; - /** - *

This symbol is the offset where the {@link android.R.attr#inputType} - * attribute's value can be found in the {@link #SearchView} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
- * - * @attr name android:inputType - */ - public static final int SearchView_android_inputType=2; - /** - *

This symbol is the offset where the {@link android.R.attr#maxWidth} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:maxWidth - */ - public static final int SearchView_android_maxWidth=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#closeIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:closeIcon - */ - public static final int SearchView_closeIcon=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#commitIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:commitIcon - */ - public static final int SearchView_commitIcon=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#defaultQueryHint} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:defaultQueryHint - */ - public static final int SearchView_defaultQueryHint=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#goIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:goIcon - */ - public static final int SearchView_goIcon=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#iconifiedByDefault} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#layout} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:layout - */ - public static final int SearchView_layout=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#queryBackground} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:queryBackground - */ - public static final int SearchView_queryBackground=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#queryHint} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:queryHint - */ - public static final int SearchView_queryHint=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#searchHintIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:searchHintIcon - */ - public static final int SearchView_searchHintIcon=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#searchIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:searchIcon - */ - public static final int SearchView_searchIcon=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#submitBackground} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:submitBackground - */ - public static final int SearchView_submitBackground=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#suggestionRowLayout} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:suggestionRowLayout - */ - public static final int SearchView_suggestionRowLayout=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#voiceIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:voiceIcon - */ - public static final int SearchView_voiceIcon=16; - /** - * Attributes that can be used with a Spinner. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme com.gaolei.retrofitdemo.test:popupTheme}
- * @see #Spinner_android_entries - * @see #Spinner_android_popupBackground - * @see #Spinner_android_prompt - * @see #Spinner_android_dropDownWidth - * @see #Spinner_popupTheme - */ - public static final int[] Spinner={ - 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, - 0x7f0200df - }; - /** - *

This symbol is the offset where the {@link android.R.attr#dropDownWidth} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:dropDownWidth - */ - public static final int Spinner_android_dropDownWidth=3; - /** - *

This symbol is the offset where the {@link android.R.attr#entries} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:entries - */ - public static final int Spinner_android_entries=0; - /** - *

This symbol is the offset where the {@link android.R.attr#popupBackground} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:popupBackground - */ - public static final int Spinner_android_popupBackground=1; - /** - *

This symbol is the offset where the {@link android.R.attr#prompt} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:prompt - */ - public static final int Spinner_android_prompt=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#popupTheme} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:popupTheme - */ - public static final int Spinner_popupTheme=4; - /** - * Attributes that can be used with a SwitchCompat. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.gaolei.retrofitdemo.test:showText}
{@link #SwitchCompat_splitTrack com.gaolei.retrofitdemo.test:splitTrack}
{@link #SwitchCompat_switchMinWidth com.gaolei.retrofitdemo.test:switchMinWidth}
{@link #SwitchCompat_switchPadding com.gaolei.retrofitdemo.test:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.gaolei.retrofitdemo.test:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.gaolei.retrofitdemo.test:thumbTextPadding}
{@link #SwitchCompat_thumbTint com.gaolei.retrofitdemo.test:thumbTint}
{@link #SwitchCompat_thumbTintMode com.gaolei.retrofitdemo.test:thumbTintMode}
{@link #SwitchCompat_track com.gaolei.retrofitdemo.test:track}
{@link #SwitchCompat_trackTint com.gaolei.retrofitdemo.test:trackTint}
{@link #SwitchCompat_trackTintMode com.gaolei.retrofitdemo.test:trackTintMode}
- * @see #SwitchCompat_android_textOn - * @see #SwitchCompat_android_textOff - * @see #SwitchCompat_android_thumb - * @see #SwitchCompat_showText - * @see #SwitchCompat_splitTrack - * @see #SwitchCompat_switchMinWidth - * @see #SwitchCompat_switchPadding - * @see #SwitchCompat_switchTextAppearance - * @see #SwitchCompat_thumbTextPadding - * @see #SwitchCompat_thumbTint - * @see #SwitchCompat_thumbTintMode - * @see #SwitchCompat_track - * @see #SwitchCompat_trackTint - * @see #SwitchCompat_trackTintMode - */ - public static final int[] SwitchCompat={ - 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, - 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, - 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, - 0x7f02012b, 0x7f02012c - }; - /** - *

This symbol is the offset where the {@link android.R.attr#textOff} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:textOff - */ - public static final int SwitchCompat_android_textOff=1; - /** - *

This symbol is the offset where the {@link android.R.attr#textOn} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:textOn - */ - public static final int SwitchCompat_android_textOn=0; - /** - *

This symbol is the offset where the {@link android.R.attr#thumb} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:thumb - */ - public static final int SwitchCompat_android_thumb=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#showText} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:showText - */ - public static final int SwitchCompat_showText=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#splitTrack} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:splitTrack - */ - public static final int SwitchCompat_splitTrack=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#switchMinWidth} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:switchMinWidth - */ - public static final int SwitchCompat_switchMinWidth=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#switchPadding} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:switchPadding - */ - public static final int SwitchCompat_switchPadding=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#switchTextAppearance} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:switchTextAppearance - */ - public static final int SwitchCompat_switchTextAppearance=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#thumbTextPadding} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:thumbTextPadding - */ - public static final int SwitchCompat_thumbTextPadding=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#thumbTint} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:thumbTint - */ - public static final int SwitchCompat_thumbTint=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#thumbTintMode} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:thumbTintMode - */ - public static final int SwitchCompat_thumbTintMode=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#track} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:track - */ - public static final int SwitchCompat_track=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#trackTint} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:trackTint - */ - public static final int SwitchCompat_trackTint=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#trackTintMode} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:trackTintMode - */ - public static final int SwitchCompat_trackTintMode=13; - /** - * Attributes that can be used with a TextAppearance. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_fontFamily com.gaolei.retrofitdemo.test:fontFamily}
{@link #TextAppearance_textAllCaps com.gaolei.retrofitdemo.test:textAllCaps}
- * @see #TextAppearance_android_textSize - * @see #TextAppearance_android_typeface - * @see #TextAppearance_android_textStyle - * @see #TextAppearance_android_textColor - * @see #TextAppearance_android_textColorHint - * @see #TextAppearance_android_textColorLink - * @see #TextAppearance_android_shadowColor - * @see #TextAppearance_android_shadowDx - * @see #TextAppearance_android_shadowDy - * @see #TextAppearance_android_shadowRadius - * @see #TextAppearance_android_fontFamily - * @see #TextAppearance_fontFamily - * @see #TextAppearance_textAllCaps - */ - public static final int[] TextAppearance={ - 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, - 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, - 0x7f020106 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#fontFamily} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:fontFamily - */ - public static final int TextAppearance_android_fontFamily=10; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowColor} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:shadowColor - */ - public static final int TextAppearance_android_shadowColor=6; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowDx} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:shadowDx - */ - public static final int TextAppearance_android_shadowDx=7; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowDy} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:shadowDy - */ - public static final int TextAppearance_android_shadowDy=8; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowRadius} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:shadowRadius - */ - public static final int TextAppearance_android_shadowRadius=9; - /** - *

This symbol is the offset where the {@link android.R.attr#textColor} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:textColor - */ - public static final int TextAppearance_android_textColor=3; - /** - *

This symbol is the offset where the {@link android.R.attr#textColorHint} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:textColorHint - */ - public static final int TextAppearance_android_textColorHint=4; - /** - *

This symbol is the offset where the {@link android.R.attr#textColorLink} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:textColorLink - */ - public static final int TextAppearance_android_textColorLink=5; - /** - *

This symbol is the offset where the {@link android.R.attr#textSize} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:textSize - */ - public static final int TextAppearance_android_textSize=0; - /** - *

This symbol is the offset where the {@link android.R.attr#textStyle} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
bold1
italic2
normal0
- * - * @attr name android:textStyle - */ - public static final int TextAppearance_android_textStyle=2; - /** - *

This symbol is the offset where the {@link android.R.attr#typeface} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
monospace3
normal0
sans1
serif2
- * - * @attr name android:typeface - */ - public static final int TextAppearance_android_typeface=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#fontFamily} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:fontFamily - */ - public static final int TextAppearance_fontFamily=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#textAllCaps} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo.test:textAllCaps - */ - public static final int TextAppearance_textAllCaps=12; - /** - * Attributes that can be used with a Toolbar. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity com.gaolei.retrofitdemo.test:buttonGravity}
{@link #Toolbar_collapseContentDescription com.gaolei.retrofitdemo.test:collapseContentDescription}
{@link #Toolbar_collapseIcon com.gaolei.retrofitdemo.test:collapseIcon}
{@link #Toolbar_contentInsetEnd com.gaolei.retrofitdemo.test:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions com.gaolei.retrofitdemo.test:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft com.gaolei.retrofitdemo.test:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.gaolei.retrofitdemo.test:contentInsetRight}
{@link #Toolbar_contentInsetStart com.gaolei.retrofitdemo.test:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation com.gaolei.retrofitdemo.test:contentInsetStartWithNavigation}
{@link #Toolbar_logo com.gaolei.retrofitdemo.test:logo}
{@link #Toolbar_logoDescription com.gaolei.retrofitdemo.test:logoDescription}
{@link #Toolbar_maxButtonHeight com.gaolei.retrofitdemo.test:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.gaolei.retrofitdemo.test:navigationContentDescription}
{@link #Toolbar_navigationIcon com.gaolei.retrofitdemo.test:navigationIcon}
{@link #Toolbar_popupTheme com.gaolei.retrofitdemo.test:popupTheme}
{@link #Toolbar_subtitle com.gaolei.retrofitdemo.test:subtitle}
{@link #Toolbar_subtitleTextAppearance com.gaolei.retrofitdemo.test:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.gaolei.retrofitdemo.test:subtitleTextColor}
{@link #Toolbar_title com.gaolei.retrofitdemo.test:title}
{@link #Toolbar_titleMargin com.gaolei.retrofitdemo.test:titleMargin}
{@link #Toolbar_titleMarginBottom com.gaolei.retrofitdemo.test:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.gaolei.retrofitdemo.test:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.gaolei.retrofitdemo.test:titleMarginStart}
{@link #Toolbar_titleMarginTop com.gaolei.retrofitdemo.test:titleMarginTop}
{@link #Toolbar_titleMargins com.gaolei.retrofitdemo.test:titleMargins}
{@link #Toolbar_titleTextAppearance com.gaolei.retrofitdemo.test:titleTextAppearance}
{@link #Toolbar_titleTextColor com.gaolei.retrofitdemo.test:titleTextColor}
- * @see #Toolbar_android_gravity - * @see #Toolbar_android_minHeight - * @see #Toolbar_buttonGravity - * @see #Toolbar_collapseContentDescription - * @see #Toolbar_collapseIcon - * @see #Toolbar_contentInsetEnd - * @see #Toolbar_contentInsetEndWithActions - * @see #Toolbar_contentInsetLeft - * @see #Toolbar_contentInsetRight - * @see #Toolbar_contentInsetStart - * @see #Toolbar_contentInsetStartWithNavigation - * @see #Toolbar_logo - * @see #Toolbar_logoDescription - * @see #Toolbar_maxButtonHeight - * @see #Toolbar_navigationContentDescription - * @see #Toolbar_navigationIcon - * @see #Toolbar_popupTheme - * @see #Toolbar_subtitle - * @see #Toolbar_subtitleTextAppearance - * @see #Toolbar_subtitleTextColor - * @see #Toolbar_title - * @see #Toolbar_titleMargin - * @see #Toolbar_titleMarginBottom - * @see #Toolbar_titleMarginEnd - * @see #Toolbar_titleMarginStart - * @see #Toolbar_titleMarginTop - * @see #Toolbar_titleMargins - * @see #Toolbar_titleTextAppearance - * @see #Toolbar_titleTextColor - */ - public static final int[] Toolbar={ - 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, - 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, - 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, - 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, - 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, - 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, - 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, - 0x7f020123 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#gravity} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:gravity - */ - public static final int Toolbar_android_gravity=0; - /** - *

This symbol is the offset where the {@link android.R.attr#minHeight} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minHeight - */ - public static final int Toolbar_android_minHeight=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#buttonGravity} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
top30
- * - * @attr name com.gaolei.retrofitdemo.test:buttonGravity - */ - public static final int Toolbar_buttonGravity=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#collapseContentDescription} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:collapseContentDescription - */ - public static final int Toolbar_collapseContentDescription=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#collapseIcon} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:collapseIcon - */ - public static final int Toolbar_collapseIcon=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetEnd} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetEnd - */ - public static final int Toolbar_contentInsetEnd=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetEndWithActions} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetEndWithActions - */ - public static final int Toolbar_contentInsetEndWithActions=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetLeft} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetLeft - */ - public static final int Toolbar_contentInsetLeft=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetRight} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetRight - */ - public static final int Toolbar_contentInsetRight=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetStart} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetStart - */ - public static final int Toolbar_contentInsetStart=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#contentInsetStartWithNavigation} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:contentInsetStartWithNavigation - */ - public static final int Toolbar_contentInsetStartWithNavigation=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#logo} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:logo - */ - public static final int Toolbar_logo=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#logoDescription} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:logoDescription - */ - public static final int Toolbar_logoDescription=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#maxButtonHeight} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:maxButtonHeight - */ - public static final int Toolbar_maxButtonHeight=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#navigationContentDescription} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:navigationContentDescription - */ - public static final int Toolbar_navigationContentDescription=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#navigationIcon} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:navigationIcon - */ - public static final int Toolbar_navigationIcon=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#popupTheme} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:popupTheme - */ - public static final int Toolbar_popupTheme=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subtitle} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:subtitle - */ - public static final int Toolbar_subtitle=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subtitleTextAppearance} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:subtitleTextAppearance - */ - public static final int Toolbar_subtitleTextAppearance=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#subtitleTextColor} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:subtitleTextColor - */ - public static final int Toolbar_subtitleTextColor=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#title} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo.test:title - */ - public static final int Toolbar_title=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleMargin} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:titleMargin - */ - public static final int Toolbar_titleMargin=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleMarginBottom} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:titleMarginBottom - */ - public static final int Toolbar_titleMarginBottom=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleMarginEnd} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:titleMarginEnd - */ - public static final int Toolbar_titleMarginEnd=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleMarginStart} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:titleMarginStart - */ - public static final int Toolbar_titleMarginStart=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleMarginTop} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:titleMarginTop - */ - public static final int Toolbar_titleMarginTop=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleMargins} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:titleMargins - */ - public static final int Toolbar_titleMargins=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleTextAppearance} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:titleTextAppearance - */ - public static final int Toolbar_titleTextAppearance=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#titleTextColor} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:titleTextColor - */ - public static final int Toolbar_titleTextColor=28; - /** - * Attributes that can be used with a View. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd com.gaolei.retrofitdemo.test:paddingEnd}
{@link #View_paddingStart com.gaolei.retrofitdemo.test:paddingStart}
{@link #View_theme com.gaolei.retrofitdemo.test:theme}
- * @see #View_android_theme - * @see #View_android_focusable - * @see #View_paddingEnd - * @see #View_paddingStart - * @see #View_theme - */ - public static final int[] View={ - 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, - 0x7f020111 - }; - /** - * Attributes that can be used with a ViewBackgroundHelper. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.gaolei.retrofitdemo.test:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.gaolei.retrofitdemo.test:backgroundTintMode}
- * @see #ViewBackgroundHelper_android_background - * @see #ViewBackgroundHelper_backgroundTint - * @see #ViewBackgroundHelper_backgroundTintMode - */ - public static final int[] ViewBackgroundHelper={ - 0x010100d4, 0x7f020034, 0x7f020035 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#background} - * attribute's value can be found in the {@link #ViewBackgroundHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:background - */ - public static final int ViewBackgroundHelper_android_background=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#backgroundTint} - * attribute's value can be found in the {@link #ViewBackgroundHelper} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo.test:backgroundTint - */ - public static final int ViewBackgroundHelper_backgroundTint=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#backgroundTintMode} - * attribute's value can be found in the {@link #ViewBackgroundHelper} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo.test:backgroundTintMode - */ - public static final int ViewBackgroundHelper_backgroundTintMode=2; - /** - * Attributes that can be used with a ViewStubCompat. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
- * @see #ViewStubCompat_android_id - * @see #ViewStubCompat_android_layout - * @see #ViewStubCompat_android_inflatedId - */ - public static final int[] ViewStubCompat={ - 0x010100d0, 0x010100f2, 0x010100f3 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #ViewStubCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int ViewStubCompat_android_id=0; - /** - *

This symbol is the offset where the {@link android.R.attr#inflatedId} - * attribute's value can be found in the {@link #ViewStubCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:inflatedId - */ - public static final int ViewStubCompat_android_inflatedId=2; - /** - *

This symbol is the offset where the {@link android.R.attr#layout} - * attribute's value can be found in the {@link #ViewStubCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:layout - */ - public static final int ViewStubCompat_android_layout=1; - /** - *

This symbol is the offset where the {@link android.R.attr#focusable} - * attribute's value can be found in the {@link #View} array. - * - *

May be a boolean value, such as "true" or - * "false". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
auto10
- * - * @attr name android:focusable - */ - public static final int View_android_focusable=1; - /** - *

This symbol is the offset where the {@link android.R.attr#theme} - * attribute's value can be found in the {@link #View} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:theme - */ - public static final int View_android_theme=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#paddingEnd} - * attribute's value can be found in the {@link #View} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:paddingEnd - */ - public static final int View_paddingEnd=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#paddingStart} - * attribute's value can be found in the {@link #View} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo.test:paddingStart - */ - public static final int View_paddingStart=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.test.R.attr#theme} - * attribute's value can be found in the {@link #View} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo.test:theme - */ - public static final int View_theme=4; - } -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/arch/lifecycle/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/arch/lifecycle/R.java deleted file mode 100644 index b0be5d7..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/arch/lifecycle/R.java +++ /dev/null @@ -1,10 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.arch.lifecycle; - -public final class R { -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/compat/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/compat/R.java deleted file mode 100644 index b18480c..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/compat/R.java +++ /dev/null @@ -1,129 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.compat; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int chronometer = 0x7f070028; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/constraint/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/constraint/R.java deleted file mode 100644 index d6f7bf5..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/constraint/R.java +++ /dev/null @@ -1,232 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.constraint; - -public final class R { - public static final class attr { - public static final int barrierAllowsGoneWidgets = 0x7f020037; - public static final int barrierDirection = 0x7f020038; - public static final int chainUseRtl = 0x7f020045; - public static final int constraintSet = 0x7f020058; - public static final int constraint_referenced_ids = 0x7f020059; - public static final int content = 0x7f02005a; - public static final int emptyVisibility = 0x7f020074; - public static final int layout_constrainedHeight = 0x7f020090; - public static final int layout_constrainedWidth = 0x7f020091; - public static final int layout_constraintBaseline_creator = 0x7f020092; - public static final int layout_constraintBaseline_toBaselineOf = 0x7f020093; - public static final int layout_constraintBottom_creator = 0x7f020094; - public static final int layout_constraintBottom_toBottomOf = 0x7f020095; - public static final int layout_constraintBottom_toTopOf = 0x7f020096; - public static final int layout_constraintCircle = 0x7f020097; - public static final int layout_constraintCircleAngle = 0x7f020098; - public static final int layout_constraintCircleRadius = 0x7f020099; - public static final int layout_constraintDimensionRatio = 0x7f02009a; - public static final int layout_constraintEnd_toEndOf = 0x7f02009b; - public static final int layout_constraintEnd_toStartOf = 0x7f02009c; - public static final int layout_constraintGuide_begin = 0x7f02009d; - public static final int layout_constraintGuide_end = 0x7f02009e; - public static final int layout_constraintGuide_percent = 0x7f02009f; - public static final int layout_constraintHeight_default = 0x7f0200a0; - public static final int layout_constraintHeight_max = 0x7f0200a1; - public static final int layout_constraintHeight_min = 0x7f0200a2; - public static final int layout_constraintHeight_percent = 0x7f0200a3; - public static final int layout_constraintHorizontal_bias = 0x7f0200a4; - public static final int layout_constraintHorizontal_chainStyle = 0x7f0200a5; - public static final int layout_constraintHorizontal_weight = 0x7f0200a6; - public static final int layout_constraintLeft_creator = 0x7f0200a7; - public static final int layout_constraintLeft_toLeftOf = 0x7f0200a8; - public static final int layout_constraintLeft_toRightOf = 0x7f0200a9; - public static final int layout_constraintRight_creator = 0x7f0200aa; - public static final int layout_constraintRight_toLeftOf = 0x7f0200ab; - public static final int layout_constraintRight_toRightOf = 0x7f0200ac; - public static final int layout_constraintStart_toEndOf = 0x7f0200ad; - public static final int layout_constraintStart_toStartOf = 0x7f0200ae; - public static final int layout_constraintTop_creator = 0x7f0200af; - public static final int layout_constraintTop_toBottomOf = 0x7f0200b0; - public static final int layout_constraintTop_toTopOf = 0x7f0200b1; - public static final int layout_constraintVertical_bias = 0x7f0200b2; - public static final int layout_constraintVertical_chainStyle = 0x7f0200b3; - public static final int layout_constraintVertical_weight = 0x7f0200b4; - public static final int layout_constraintWidth_default = 0x7f0200b5; - public static final int layout_constraintWidth_max = 0x7f0200b6; - public static final int layout_constraintWidth_min = 0x7f0200b7; - public static final int layout_constraintWidth_percent = 0x7f0200b8; - public static final int layout_editor_absoluteX = 0x7f0200b9; - public static final int layout_editor_absoluteY = 0x7f0200ba; - public static final int layout_goneMarginBottom = 0x7f0200bb; - public static final int layout_goneMarginEnd = 0x7f0200bc; - public static final int layout_goneMarginLeft = 0x7f0200bd; - public static final int layout_goneMarginRight = 0x7f0200be; - public static final int layout_goneMarginStart = 0x7f0200bf; - public static final int layout_goneMarginTop = 0x7f0200c0; - public static final int layout_optimizationLevel = 0x7f0200c1; - } - public static final class id { - public static final int barrier = 0x7f07001f; - public static final int bottom = 0x7f070022; - public static final int chains = 0x7f070026; - public static final int dimensions = 0x7f07002f; - public static final int direct = 0x7f070030; - public static final int end = 0x7f070033; - public static final int gone = 0x7f070038; - public static final int invisible = 0x7f070040; - public static final int left = 0x7f070042; - public static final int none = 0x7f07004c; - public static final int packed = 0x7f070051; - public static final int parent = 0x7f070052; - public static final int percent = 0x7f070054; - public static final int right = 0x7f070058; - public static final int spread = 0x7f070070; - public static final int spread_inside = 0x7f070071; - public static final int standard = 0x7f070075; - public static final int start = 0x7f070076; - public static final int top = 0x7f070084; - public static final int wrap = 0x7f07008a; - } - public static final class styleable { - public static final int[] ConstraintLayout_Layout = { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 }; - public static final int ConstraintLayout_Layout_android_orientation = 0; - public static final int ConstraintLayout_Layout_android_maxWidth = 1; - public static final int ConstraintLayout_Layout_android_maxHeight = 2; - public static final int ConstraintLayout_Layout_android_minWidth = 3; - public static final int ConstraintLayout_Layout_android_minHeight = 4; - public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets = 5; - public static final int ConstraintLayout_Layout_barrierDirection = 6; - public static final int ConstraintLayout_Layout_chainUseRtl = 7; - public static final int ConstraintLayout_Layout_constraintSet = 8; - public static final int ConstraintLayout_Layout_constraint_referenced_ids = 9; - public static final int ConstraintLayout_Layout_layout_constrainedHeight = 10; - public static final int ConstraintLayout_Layout_layout_constrainedWidth = 11; - public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 12; - public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 13; - public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 14; - public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 15; - public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 16; - public static final int ConstraintLayout_Layout_layout_constraintCircle = 17; - public static final int ConstraintLayout_Layout_layout_constraintCircleAngle = 18; - public static final int ConstraintLayout_Layout_layout_constraintCircleRadius = 19; - public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 20; - public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 21; - public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 22; - public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 23; - public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 24; - public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 25; - public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 26; - public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 27; - public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 28; - public static final int ConstraintLayout_Layout_layout_constraintHeight_percent = 29; - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 30; - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 31; - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 32; - public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 33; - public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 34; - public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 35; - public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 36; - public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 37; - public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 38; - public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 39; - public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 40; - public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 41; - public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 42; - public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 43; - public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 44; - public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 45; - public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 46; - public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 47; - public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 48; - public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 49; - public static final int ConstraintLayout_Layout_layout_constraintWidth_percent = 50; - public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 51; - public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 52; - public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 53; - public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 54; - public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 55; - public static final int ConstraintLayout_Layout_layout_goneMarginRight = 56; - public static final int ConstraintLayout_Layout_layout_goneMarginStart = 57; - public static final int ConstraintLayout_Layout_layout_goneMarginTop = 58; - public static final int ConstraintLayout_Layout_layout_optimizationLevel = 59; - public static final int[] ConstraintLayout_placeholder = { 0x7f02005a, 0x7f020074 }; - public static final int ConstraintLayout_placeholder_content = 0; - public static final int ConstraintLayout_placeholder_emptyVisibility = 1; - public static final int[] ConstraintSet = { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 }; - public static final int ConstraintSet_android_orientation = 0; - public static final int ConstraintSet_android_id = 1; - public static final int ConstraintSet_android_visibility = 2; - public static final int ConstraintSet_android_layout_width = 3; - public static final int ConstraintSet_android_layout_height = 4; - public static final int ConstraintSet_android_layout_marginLeft = 5; - public static final int ConstraintSet_android_layout_marginTop = 6; - public static final int ConstraintSet_android_layout_marginRight = 7; - public static final int ConstraintSet_android_layout_marginBottom = 8; - public static final int ConstraintSet_android_alpha = 9; - public static final int ConstraintSet_android_transformPivotX = 10; - public static final int ConstraintSet_android_transformPivotY = 11; - public static final int ConstraintSet_android_translationX = 12; - public static final int ConstraintSet_android_translationY = 13; - public static final int ConstraintSet_android_scaleX = 14; - public static final int ConstraintSet_android_scaleY = 15; - public static final int ConstraintSet_android_rotation = 16; - public static final int ConstraintSet_android_rotationX = 17; - public static final int ConstraintSet_android_rotationY = 18; - public static final int ConstraintSet_android_layout_marginStart = 19; - public static final int ConstraintSet_android_layout_marginEnd = 20; - public static final int ConstraintSet_android_translationZ = 21; - public static final int ConstraintSet_android_elevation = 22; - public static final int ConstraintSet_layout_constrainedHeight = 23; - public static final int ConstraintSet_layout_constrainedWidth = 24; - public static final int ConstraintSet_layout_constraintBaseline_creator = 25; - public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 26; - public static final int ConstraintSet_layout_constraintBottom_creator = 27; - public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 28; - public static final int ConstraintSet_layout_constraintBottom_toTopOf = 29; - public static final int ConstraintSet_layout_constraintCircle = 30; - public static final int ConstraintSet_layout_constraintCircleAngle = 31; - public static final int ConstraintSet_layout_constraintCircleRadius = 32; - public static final int ConstraintSet_layout_constraintDimensionRatio = 33; - public static final int ConstraintSet_layout_constraintEnd_toEndOf = 34; - public static final int ConstraintSet_layout_constraintEnd_toStartOf = 35; - public static final int ConstraintSet_layout_constraintGuide_begin = 36; - public static final int ConstraintSet_layout_constraintGuide_end = 37; - public static final int ConstraintSet_layout_constraintGuide_percent = 38; - public static final int ConstraintSet_layout_constraintHeight_default = 39; - public static final int ConstraintSet_layout_constraintHeight_max = 40; - public static final int ConstraintSet_layout_constraintHeight_min = 41; - public static final int ConstraintSet_layout_constraintHeight_percent = 42; - public static final int ConstraintSet_layout_constraintHorizontal_bias = 43; - public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 44; - public static final int ConstraintSet_layout_constraintHorizontal_weight = 45; - public static final int ConstraintSet_layout_constraintLeft_creator = 46; - public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 47; - public static final int ConstraintSet_layout_constraintLeft_toRightOf = 48; - public static final int ConstraintSet_layout_constraintRight_creator = 49; - public static final int ConstraintSet_layout_constraintRight_toLeftOf = 50; - public static final int ConstraintSet_layout_constraintRight_toRightOf = 51; - public static final int ConstraintSet_layout_constraintStart_toEndOf = 52; - public static final int ConstraintSet_layout_constraintStart_toStartOf = 53; - public static final int ConstraintSet_layout_constraintTop_creator = 54; - public static final int ConstraintSet_layout_constraintTop_toBottomOf = 55; - public static final int ConstraintSet_layout_constraintTop_toTopOf = 56; - public static final int ConstraintSet_layout_constraintVertical_bias = 57; - public static final int ConstraintSet_layout_constraintVertical_chainStyle = 58; - public static final int ConstraintSet_layout_constraintVertical_weight = 59; - public static final int ConstraintSet_layout_constraintWidth_default = 60; - public static final int ConstraintSet_layout_constraintWidth_max = 61; - public static final int ConstraintSet_layout_constraintWidth_min = 62; - public static final int ConstraintSet_layout_constraintWidth_percent = 63; - public static final int ConstraintSet_layout_editor_absoluteX = 64; - public static final int ConstraintSet_layout_editor_absoluteY = 65; - public static final int ConstraintSet_layout_goneMarginBottom = 66; - public static final int ConstraintSet_layout_goneMarginEnd = 67; - public static final int ConstraintSet_layout_goneMarginLeft = 68; - public static final int ConstraintSet_layout_goneMarginRight = 69; - public static final int ConstraintSet_layout_goneMarginStart = 70; - public static final int ConstraintSet_layout_goneMarginTop = 71; - public static final int[] LinearConstraintLayout = { 0x010100c4 }; - public static final int LinearConstraintLayout_android_orientation = 0; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/coreui/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/coreui/R.java deleted file mode 100644 index 4f3eafc..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/coreui/R.java +++ /dev/null @@ -1,129 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.coreui; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int chronometer = 0x7f070028; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/coreutils/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/coreutils/R.java deleted file mode 100644 index efe476c..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/coreutils/R.java +++ /dev/null @@ -1,129 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.coreutils; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int chronometer = 0x7f070028; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/fragment/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/fragment/R.java deleted file mode 100644 index 33fd12a..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/fragment/R.java +++ /dev/null @@ -1,129 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.fragment; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int chronometer = 0x7f070028; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/graphics/drawable/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/graphics/drawable/R.java deleted file mode 100644 index 11eaa2a..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/graphics/drawable/R.java +++ /dev/null @@ -1,129 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.graphics.drawable; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int chronometer = 0x7f070028; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java deleted file mode 100644 index 0129808..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java +++ /dev/null @@ -1,129 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.graphics.drawable.animated; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int chronometer = 0x7f070028; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/mediacompat/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/mediacompat/R.java deleted file mode 100644 index 9c73d62..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/mediacompat/R.java +++ /dev/null @@ -1,152 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.mediacompat; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int notification_material_background_media_default_color = 0x7f040040; - public static final int primary_text_default_material_dark = 0x7f040045; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_dark = 0x7f04004b; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action0 = 0x7f070006; - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int cancel_action = 0x7f070025; - public static final int chronometer = 0x7f070028; - public static final int end_padder = 0x7f070034; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int media_actions = 0x7f070047; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int status_bar_latest_event_content = 0x7f070077; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int cancel_button_image_alpha = 0x7f080002; - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_media_action = 0x7f09001f; - public static final int notification_media_cancel_action = 0x7f090020; - public static final int notification_template_big_media = 0x7f090021; - public static final int notification_template_big_media_custom = 0x7f090022; - public static final int notification_template_big_media_narrow = 0x7f090023; - public static final int notification_template_big_media_narrow_custom = 0x7f090024; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_lines_media = 0x7f090027; - public static final int notification_template_media = 0x7f090028; - public static final int notification_template_media_custom = 0x7f090029; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0c00fc; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0c00fe; - public static final int TextAppearance_Compat_Notification_Media = 0x7f0c00ff; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0c0101; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0c0103; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/v4/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/v4/R.java deleted file mode 100644 index fbdde46..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/v4/R.java +++ /dev/null @@ -1,152 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.v4; - -public final class R { - public static final class attr { - public static final int font = 0x7f020076; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - } - public static final class color { - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int notification_material_background_media_default_color = 0x7f040040; - public static final int primary_text_default_material_dark = 0x7f040045; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_dark = 0x7f04004b; - public static final int secondary_text_default_material_light = 0x7f04004c; - } - public static final class dimen { - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - } - public static final class drawable { - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - } - public static final class id { - public static final int action0 = 0x7f070006; - public static final int action_container = 0x7f07000e; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int cancel_action = 0x7f070025; - public static final int chronometer = 0x7f070028; - public static final int end_padder = 0x7f070034; - public static final int forever = 0x7f070037; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int media_actions = 0x7f070047; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int status_bar_latest_event_content = 0x7f070077; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - } - public static final class integer { - public static final int cancel_button_image_alpha = 0x7f080002; - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_media_action = 0x7f09001f; - public static final int notification_media_cancel_action = 0x7f090020; - public static final int notification_template_big_media = 0x7f090021; - public static final int notification_template_big_media_custom = 0x7f090022; - public static final int notification_template_big_media_narrow = 0x7f090023; - public static final int notification_template_big_media_narrow_custom = 0x7f090024; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_lines_media = 0x7f090027; - public static final int notification_template_media = 0x7f090028; - public static final int notification_template_media_custom = 0x7f090029; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - } - public static final class string { - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0c00fc; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0c00fe; - public static final int TextAppearance_Compat_Notification_Media = 0x7f0c00ff; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0c0101; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0c0103; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/v7/appcompat/R.java deleted file mode 100644 index 25e21ee..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/android/support/v7/appcompat/R.java +++ /dev/null @@ -1,1540 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * gradle plugin from the resource data it found. It - * should not be modified by hand. - */ -package android.support.v7.appcompat; - -public final class R { - public static final class anim { - public static final int abc_fade_in = 0x7f010000; - public static final int abc_fade_out = 0x7f010001; - public static final int abc_grow_fade_in_from_bottom = 0x7f010002; - public static final int abc_popup_enter = 0x7f010003; - public static final int abc_popup_exit = 0x7f010004; - public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; - public static final int abc_slide_in_bottom = 0x7f010006; - public static final int abc_slide_in_top = 0x7f010007; - public static final int abc_slide_out_bottom = 0x7f010008; - public static final int abc_slide_out_top = 0x7f010009; - public static final int tooltip_enter = 0x7f01000a; - public static final int tooltip_exit = 0x7f01000b; - } - public static final class attr { - public static final int actionBarDivider = 0x7f020000; - public static final int actionBarItemBackground = 0x7f020001; - public static final int actionBarPopupTheme = 0x7f020002; - public static final int actionBarSize = 0x7f020003; - public static final int actionBarSplitStyle = 0x7f020004; - public static final int actionBarStyle = 0x7f020005; - public static final int actionBarTabBarStyle = 0x7f020006; - public static final int actionBarTabStyle = 0x7f020007; - public static final int actionBarTabTextStyle = 0x7f020008; - public static final int actionBarTheme = 0x7f020009; - public static final int actionBarWidgetTheme = 0x7f02000a; - public static final int actionButtonStyle = 0x7f02000b; - public static final int actionDropDownStyle = 0x7f02000c; - public static final int actionLayout = 0x7f02000d; - public static final int actionMenuTextAppearance = 0x7f02000e; - public static final int actionMenuTextColor = 0x7f02000f; - public static final int actionModeBackground = 0x7f020010; - public static final int actionModeCloseButtonStyle = 0x7f020011; - public static final int actionModeCloseDrawable = 0x7f020012; - public static final int actionModeCopyDrawable = 0x7f020013; - public static final int actionModeCutDrawable = 0x7f020014; - public static final int actionModeFindDrawable = 0x7f020015; - public static final int actionModePasteDrawable = 0x7f020016; - public static final int actionModePopupWindowStyle = 0x7f020017; - public static final int actionModeSelectAllDrawable = 0x7f020018; - public static final int actionModeShareDrawable = 0x7f020019; - public static final int actionModeSplitBackground = 0x7f02001a; - public static final int actionModeStyle = 0x7f02001b; - public static final int actionModeWebSearchDrawable = 0x7f02001c; - public static final int actionOverflowButtonStyle = 0x7f02001d; - public static final int actionOverflowMenuStyle = 0x7f02001e; - public static final int actionProviderClass = 0x7f02001f; - public static final int actionViewClass = 0x7f020020; - public static final int activityChooserViewStyle = 0x7f020021; - public static final int alertDialogButtonGroupStyle = 0x7f020022; - public static final int alertDialogCenterButtons = 0x7f020023; - public static final int alertDialogStyle = 0x7f020024; - public static final int alertDialogTheme = 0x7f020025; - public static final int allowStacking = 0x7f020026; - public static final int alpha = 0x7f020027; - public static final int alphabeticModifiers = 0x7f020028; - public static final int arrowHeadLength = 0x7f020029; - public static final int arrowShaftLength = 0x7f02002a; - public static final int autoCompleteTextViewStyle = 0x7f02002b; - public static final int autoSizeMaxTextSize = 0x7f02002c; - public static final int autoSizeMinTextSize = 0x7f02002d; - public static final int autoSizePresetSizes = 0x7f02002e; - public static final int autoSizeStepGranularity = 0x7f02002f; - public static final int autoSizeTextType = 0x7f020030; - public static final int background = 0x7f020031; - public static final int backgroundSplit = 0x7f020032; - public static final int backgroundStacked = 0x7f020033; - public static final int backgroundTint = 0x7f020034; - public static final int backgroundTintMode = 0x7f020035; - public static final int barLength = 0x7f020036; - public static final int borderlessButtonStyle = 0x7f020039; - public static final int buttonBarButtonStyle = 0x7f02003a; - public static final int buttonBarNegativeButtonStyle = 0x7f02003b; - public static final int buttonBarNeutralButtonStyle = 0x7f02003c; - public static final int buttonBarPositiveButtonStyle = 0x7f02003d; - public static final int buttonBarStyle = 0x7f02003e; - public static final int buttonGravity = 0x7f02003f; - public static final int buttonPanelSideLayout = 0x7f020040; - public static final int buttonStyle = 0x7f020041; - public static final int buttonStyleSmall = 0x7f020042; - public static final int buttonTint = 0x7f020043; - public static final int buttonTintMode = 0x7f020044; - public static final int checkboxStyle = 0x7f020046; - public static final int checkedTextViewStyle = 0x7f020047; - public static final int closeIcon = 0x7f020048; - public static final int closeItemLayout = 0x7f020049; - public static final int collapseContentDescription = 0x7f02004a; - public static final int collapseIcon = 0x7f02004b; - public static final int color = 0x7f02004c; - public static final int colorAccent = 0x7f02004d; - public static final int colorBackgroundFloating = 0x7f02004e; - public static final int colorButtonNormal = 0x7f02004f; - public static final int colorControlActivated = 0x7f020050; - public static final int colorControlHighlight = 0x7f020051; - public static final int colorControlNormal = 0x7f020052; - public static final int colorError = 0x7f020053; - public static final int colorPrimary = 0x7f020054; - public static final int colorPrimaryDark = 0x7f020055; - public static final int colorSwitchThumbNormal = 0x7f020056; - public static final int commitIcon = 0x7f020057; - public static final int contentDescription = 0x7f02005b; - public static final int contentInsetEnd = 0x7f02005c; - public static final int contentInsetEndWithActions = 0x7f02005d; - public static final int contentInsetLeft = 0x7f02005e; - public static final int contentInsetRight = 0x7f02005f; - public static final int contentInsetStart = 0x7f020060; - public static final int contentInsetStartWithNavigation = 0x7f020061; - public static final int controlBackground = 0x7f020062; - public static final int customNavigationLayout = 0x7f020063; - public static final int defaultQueryHint = 0x7f020064; - public static final int dialogPreferredPadding = 0x7f020065; - public static final int dialogTheme = 0x7f020066; - public static final int displayOptions = 0x7f020067; - public static final int divider = 0x7f020068; - public static final int dividerHorizontal = 0x7f020069; - public static final int dividerPadding = 0x7f02006a; - public static final int dividerVertical = 0x7f02006b; - public static final int drawableSize = 0x7f02006c; - public static final int drawerArrowStyle = 0x7f02006d; - public static final int dropDownListViewStyle = 0x7f02006e; - public static final int dropdownListPreferredItemHeight = 0x7f02006f; - public static final int editTextBackground = 0x7f020070; - public static final int editTextColor = 0x7f020071; - public static final int editTextStyle = 0x7f020072; - public static final int elevation = 0x7f020073; - public static final int expandActivityOverflowButtonDrawable = 0x7f020075; - public static final int font = 0x7f020076; - public static final int fontFamily = 0x7f020077; - public static final int fontProviderAuthority = 0x7f020078; - public static final int fontProviderCerts = 0x7f020079; - public static final int fontProviderFetchStrategy = 0x7f02007a; - public static final int fontProviderFetchTimeout = 0x7f02007b; - public static final int fontProviderPackage = 0x7f02007c; - public static final int fontProviderQuery = 0x7f02007d; - public static final int fontStyle = 0x7f02007e; - public static final int fontWeight = 0x7f02007f; - public static final int gapBetweenBars = 0x7f020080; - public static final int goIcon = 0x7f020081; - public static final int height = 0x7f020082; - public static final int hideOnContentScroll = 0x7f020083; - public static final int homeAsUpIndicator = 0x7f020084; - public static final int homeLayout = 0x7f020085; - public static final int icon = 0x7f020086; - public static final int iconTint = 0x7f020087; - public static final int iconTintMode = 0x7f020088; - public static final int iconifiedByDefault = 0x7f020089; - public static final int imageButtonStyle = 0x7f02008a; - public static final int indeterminateProgressStyle = 0x7f02008b; - public static final int initialActivityCount = 0x7f02008c; - public static final int isLightTheme = 0x7f02008d; - public static final int itemPadding = 0x7f02008e; - public static final int layout = 0x7f02008f; - public static final int listChoiceBackgroundIndicator = 0x7f0200c2; - public static final int listDividerAlertDialog = 0x7f0200c3; - public static final int listItemLayout = 0x7f0200c4; - public static final int listLayout = 0x7f0200c5; - public static final int listMenuViewStyle = 0x7f0200c6; - public static final int listPopupWindowStyle = 0x7f0200c7; - public static final int listPreferredItemHeight = 0x7f0200c8; - public static final int listPreferredItemHeightLarge = 0x7f0200c9; - public static final int listPreferredItemHeightSmall = 0x7f0200ca; - public static final int listPreferredItemPaddingLeft = 0x7f0200cb; - public static final int listPreferredItemPaddingRight = 0x7f0200cc; - public static final int logo = 0x7f0200cd; - public static final int logoDescription = 0x7f0200ce; - public static final int maxButtonHeight = 0x7f0200cf; - public static final int measureWithLargestChild = 0x7f0200d0; - public static final int multiChoiceItemLayout = 0x7f0200d1; - public static final int navigationContentDescription = 0x7f0200d2; - public static final int navigationIcon = 0x7f0200d3; - public static final int navigationMode = 0x7f0200d4; - public static final int numericModifiers = 0x7f0200d5; - public static final int overlapAnchor = 0x7f0200d6; - public static final int paddingBottomNoButtons = 0x7f0200d7; - public static final int paddingEnd = 0x7f0200d8; - public static final int paddingStart = 0x7f0200d9; - public static final int paddingTopNoTitle = 0x7f0200da; - public static final int panelBackground = 0x7f0200db; - public static final int panelMenuListTheme = 0x7f0200dc; - public static final int panelMenuListWidth = 0x7f0200dd; - public static final int popupMenuStyle = 0x7f0200de; - public static final int popupTheme = 0x7f0200df; - public static final int popupWindowStyle = 0x7f0200e0; - public static final int preserveIconSpacing = 0x7f0200e1; - public static final int progressBarPadding = 0x7f0200e2; - public static final int progressBarStyle = 0x7f0200e3; - public static final int queryBackground = 0x7f0200e4; - public static final int queryHint = 0x7f0200e5; - public static final int radioButtonStyle = 0x7f0200e6; - public static final int ratingBarStyle = 0x7f0200e7; - public static final int ratingBarStyleIndicator = 0x7f0200e8; - public static final int ratingBarStyleSmall = 0x7f0200e9; - public static final int searchHintIcon = 0x7f0200ea; - public static final int searchIcon = 0x7f0200eb; - public static final int searchViewStyle = 0x7f0200ec; - public static final int seekBarStyle = 0x7f0200ed; - public static final int selectableItemBackground = 0x7f0200ee; - public static final int selectableItemBackgroundBorderless = 0x7f0200ef; - public static final int showAsAction = 0x7f0200f0; - public static final int showDividers = 0x7f0200f1; - public static final int showText = 0x7f0200f2; - public static final int showTitle = 0x7f0200f3; - public static final int singleChoiceItemLayout = 0x7f0200f4; - public static final int spinBars = 0x7f0200f5; - public static final int spinnerDropDownItemStyle = 0x7f0200f6; - public static final int spinnerStyle = 0x7f0200f7; - public static final int splitTrack = 0x7f0200f8; - public static final int srcCompat = 0x7f0200f9; - public static final int state_above_anchor = 0x7f0200fa; - public static final int subMenuArrow = 0x7f0200fb; - public static final int submitBackground = 0x7f0200fc; - public static final int subtitle = 0x7f0200fd; - public static final int subtitleTextAppearance = 0x7f0200fe; - public static final int subtitleTextColor = 0x7f0200ff; - public static final int subtitleTextStyle = 0x7f020100; - public static final int suggestionRowLayout = 0x7f020101; - public static final int switchMinWidth = 0x7f020102; - public static final int switchPadding = 0x7f020103; - public static final int switchStyle = 0x7f020104; - public static final int switchTextAppearance = 0x7f020105; - public static final int textAllCaps = 0x7f020106; - public static final int textAppearanceLargePopupMenu = 0x7f020107; - public static final int textAppearanceListItem = 0x7f020108; - public static final int textAppearanceListItemSecondary = 0x7f020109; - public static final int textAppearanceListItemSmall = 0x7f02010a; - public static final int textAppearancePopupMenuHeader = 0x7f02010b; - public static final int textAppearanceSearchResultSubtitle = 0x7f02010c; - public static final int textAppearanceSearchResultTitle = 0x7f02010d; - public static final int textAppearanceSmallPopupMenu = 0x7f02010e; - public static final int textColorAlertDialogListItem = 0x7f02010f; - public static final int textColorSearchUrl = 0x7f020110; - public static final int theme = 0x7f020111; - public static final int thickness = 0x7f020112; - public static final int thumbTextPadding = 0x7f020113; - public static final int thumbTint = 0x7f020114; - public static final int thumbTintMode = 0x7f020115; - public static final int tickMark = 0x7f020116; - public static final int tickMarkTint = 0x7f020117; - public static final int tickMarkTintMode = 0x7f020118; - public static final int tint = 0x7f020119; - public static final int tintMode = 0x7f02011a; - public static final int title = 0x7f02011b; - public static final int titleMargin = 0x7f02011c; - public static final int titleMarginBottom = 0x7f02011d; - public static final int titleMarginEnd = 0x7f02011e; - public static final int titleMarginStart = 0x7f02011f; - public static final int titleMarginTop = 0x7f020120; - public static final int titleMargins = 0x7f020121; - public static final int titleTextAppearance = 0x7f020122; - public static final int titleTextColor = 0x7f020123; - public static final int titleTextStyle = 0x7f020124; - public static final int toolbarNavigationButtonStyle = 0x7f020125; - public static final int toolbarStyle = 0x7f020126; - public static final int tooltipForegroundColor = 0x7f020127; - public static final int tooltipFrameBackground = 0x7f020128; - public static final int tooltipText = 0x7f020129; - public static final int track = 0x7f02012a; - public static final int trackTint = 0x7f02012b; - public static final int trackTintMode = 0x7f02012c; - public static final int voiceIcon = 0x7f02012d; - public static final int windowActionBar = 0x7f02012e; - public static final int windowActionBarOverlay = 0x7f02012f; - public static final int windowActionModeOverlay = 0x7f020130; - public static final int windowFixedHeightMajor = 0x7f020131; - public static final int windowFixedHeightMinor = 0x7f020132; - public static final int windowFixedWidthMajor = 0x7f020133; - public static final int windowFixedWidthMinor = 0x7f020134; - public static final int windowMinWidthMajor = 0x7f020135; - public static final int windowMinWidthMinor = 0x7f020136; - public static final int windowNoTitle = 0x7f020137; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs = 0x7f030000; - public static final int abc_allow_stacked_button_bar = 0x7f030001; - public static final int abc_config_actionMenuItemAllCaps = 0x7f030002; - public static final int abc_config_closeDialogWhenTouchOutside = 0x7f030003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f030004; - } - public static final class color { - public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000; - public static final int abc_background_cache_hint_selector_material_light = 0x7f040001; - public static final int abc_btn_colored_borderless_text_material = 0x7f040002; - public static final int abc_btn_colored_text_material = 0x7f040003; - public static final int abc_color_highlight_material = 0x7f040004; - public static final int abc_hint_foreground_material_dark = 0x7f040005; - public static final int abc_hint_foreground_material_light = 0x7f040006; - public static final int abc_input_method_navigation_guard = 0x7f040007; - public static final int abc_primary_text_disable_only_material_dark = 0x7f040008; - public static final int abc_primary_text_disable_only_material_light = 0x7f040009; - public static final int abc_primary_text_material_dark = 0x7f04000a; - public static final int abc_primary_text_material_light = 0x7f04000b; - public static final int abc_search_url_text = 0x7f04000c; - public static final int abc_search_url_text_normal = 0x7f04000d; - public static final int abc_search_url_text_pressed = 0x7f04000e; - public static final int abc_search_url_text_selected = 0x7f04000f; - public static final int abc_secondary_text_material_dark = 0x7f040010; - public static final int abc_secondary_text_material_light = 0x7f040011; - public static final int abc_tint_btn_checkable = 0x7f040012; - public static final int abc_tint_default = 0x7f040013; - public static final int abc_tint_edittext = 0x7f040014; - public static final int abc_tint_seek_thumb = 0x7f040015; - public static final int abc_tint_spinner = 0x7f040016; - public static final int abc_tint_switch_track = 0x7f040017; - public static final int accent_material_dark = 0x7f040018; - public static final int accent_material_light = 0x7f040019; - public static final int background_floating_material_dark = 0x7f04001a; - public static final int background_floating_material_light = 0x7f04001b; - public static final int background_material_dark = 0x7f04001c; - public static final int background_material_light = 0x7f04001d; - public static final int bright_foreground_disabled_material_dark = 0x7f04001e; - public static final int bright_foreground_disabled_material_light = 0x7f04001f; - public static final int bright_foreground_inverse_material_dark = 0x7f040020; - public static final int bright_foreground_inverse_material_light = 0x7f040021; - public static final int bright_foreground_material_dark = 0x7f040022; - public static final int bright_foreground_material_light = 0x7f040023; - public static final int button_material_dark = 0x7f040024; - public static final int button_material_light = 0x7f040025; - public static final int dim_foreground_disabled_material_dark = 0x7f040029; - public static final int dim_foreground_disabled_material_light = 0x7f04002a; - public static final int dim_foreground_material_dark = 0x7f04002b; - public static final int dim_foreground_material_light = 0x7f04002c; - public static final int error_color_material = 0x7f04002d; - public static final int foreground_material_dark = 0x7f04002e; - public static final int foreground_material_light = 0x7f04002f; - public static final int highlighted_text_material_dark = 0x7f040030; - public static final int highlighted_text_material_light = 0x7f040031; - public static final int material_blue_grey_800 = 0x7f040032; - public static final int material_blue_grey_900 = 0x7f040033; - public static final int material_blue_grey_950 = 0x7f040034; - public static final int material_deep_teal_200 = 0x7f040035; - public static final int material_deep_teal_500 = 0x7f040036; - public static final int material_grey_100 = 0x7f040037; - public static final int material_grey_300 = 0x7f040038; - public static final int material_grey_50 = 0x7f040039; - public static final int material_grey_600 = 0x7f04003a; - public static final int material_grey_800 = 0x7f04003b; - public static final int material_grey_850 = 0x7f04003c; - public static final int material_grey_900 = 0x7f04003d; - public static final int notification_action_color_filter = 0x7f04003e; - public static final int notification_icon_bg_color = 0x7f04003f; - public static final int notification_material_background_media_default_color = 0x7f040040; - public static final int primary_dark_material_dark = 0x7f040041; - public static final int primary_dark_material_light = 0x7f040042; - public static final int primary_material_dark = 0x7f040043; - public static final int primary_material_light = 0x7f040044; - public static final int primary_text_default_material_dark = 0x7f040045; - public static final int primary_text_default_material_light = 0x7f040046; - public static final int primary_text_disabled_material_dark = 0x7f040047; - public static final int primary_text_disabled_material_light = 0x7f040048; - public static final int ripple_material_dark = 0x7f040049; - public static final int ripple_material_light = 0x7f04004a; - public static final int secondary_text_default_material_dark = 0x7f04004b; - public static final int secondary_text_default_material_light = 0x7f04004c; - public static final int secondary_text_disabled_material_dark = 0x7f04004d; - public static final int secondary_text_disabled_material_light = 0x7f04004e; - public static final int switch_thumb_disabled_material_dark = 0x7f04004f; - public static final int switch_thumb_disabled_material_light = 0x7f040050; - public static final int switch_thumb_material_dark = 0x7f040051; - public static final int switch_thumb_material_light = 0x7f040052; - public static final int switch_thumb_normal_material_dark = 0x7f040053; - public static final int switch_thumb_normal_material_light = 0x7f040054; - public static final int tooltip_background_dark = 0x7f040055; - public static final int tooltip_background_light = 0x7f040056; - } - public static final class dimen { - public static final int abc_action_bar_content_inset_material = 0x7f050000; - public static final int abc_action_bar_content_inset_with_nav = 0x7f050001; - public static final int abc_action_bar_default_height_material = 0x7f050002; - public static final int abc_action_bar_default_padding_end_material = 0x7f050003; - public static final int abc_action_bar_default_padding_start_material = 0x7f050004; - public static final int abc_action_bar_elevation_material = 0x7f050005; - public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006; - public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007; - public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008; - public static final int abc_action_bar_progress_bar_size = 0x7f050009; - public static final int abc_action_bar_stacked_max_height = 0x7f05000a; - public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000b; - public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000c; - public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000d; - public static final int abc_action_button_min_height_material = 0x7f05000e; - public static final int abc_action_button_min_width_material = 0x7f05000f; - public static final int abc_action_button_min_width_overflow_material = 0x7f050010; - public static final int abc_alert_dialog_button_bar_height = 0x7f050011; - public static final int abc_button_inset_horizontal_material = 0x7f050012; - public static final int abc_button_inset_vertical_material = 0x7f050013; - public static final int abc_button_padding_horizontal_material = 0x7f050014; - public static final int abc_button_padding_vertical_material = 0x7f050015; - public static final int abc_cascading_menus_min_smallest_width = 0x7f050016; - public static final int abc_config_prefDialogWidth = 0x7f050017; - public static final int abc_control_corner_material = 0x7f050018; - public static final int abc_control_inset_material = 0x7f050019; - public static final int abc_control_padding_material = 0x7f05001a; - public static final int abc_dialog_fixed_height_major = 0x7f05001b; - public static final int abc_dialog_fixed_height_minor = 0x7f05001c; - public static final int abc_dialog_fixed_width_major = 0x7f05001d; - public static final int abc_dialog_fixed_width_minor = 0x7f05001e; - public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f05001f; - public static final int abc_dialog_list_padding_top_no_title = 0x7f050020; - public static final int abc_dialog_min_width_major = 0x7f050021; - public static final int abc_dialog_min_width_minor = 0x7f050022; - public static final int abc_dialog_padding_material = 0x7f050023; - public static final int abc_dialog_padding_top_material = 0x7f050024; - public static final int abc_dialog_title_divider_material = 0x7f050025; - public static final int abc_disabled_alpha_material_dark = 0x7f050026; - public static final int abc_disabled_alpha_material_light = 0x7f050027; - public static final int abc_dropdownitem_icon_width = 0x7f050028; - public static final int abc_dropdownitem_text_padding_left = 0x7f050029; - public static final int abc_dropdownitem_text_padding_right = 0x7f05002a; - public static final int abc_edit_text_inset_bottom_material = 0x7f05002b; - public static final int abc_edit_text_inset_horizontal_material = 0x7f05002c; - public static final int abc_edit_text_inset_top_material = 0x7f05002d; - public static final int abc_floating_window_z = 0x7f05002e; - public static final int abc_list_item_padding_horizontal_material = 0x7f05002f; - public static final int abc_panel_menu_list_width = 0x7f050030; - public static final int abc_progress_bar_height_material = 0x7f050031; - public static final int abc_search_view_preferred_height = 0x7f050032; - public static final int abc_search_view_preferred_width = 0x7f050033; - public static final int abc_seekbar_track_background_height_material = 0x7f050034; - public static final int abc_seekbar_track_progress_height_material = 0x7f050035; - public static final int abc_select_dialog_padding_start_material = 0x7f050036; - public static final int abc_switch_padding = 0x7f050037; - public static final int abc_text_size_body_1_material = 0x7f050038; - public static final int abc_text_size_body_2_material = 0x7f050039; - public static final int abc_text_size_button_material = 0x7f05003a; - public static final int abc_text_size_caption_material = 0x7f05003b; - public static final int abc_text_size_display_1_material = 0x7f05003c; - public static final int abc_text_size_display_2_material = 0x7f05003d; - public static final int abc_text_size_display_3_material = 0x7f05003e; - public static final int abc_text_size_display_4_material = 0x7f05003f; - public static final int abc_text_size_headline_material = 0x7f050040; - public static final int abc_text_size_large_material = 0x7f050041; - public static final int abc_text_size_medium_material = 0x7f050042; - public static final int abc_text_size_menu_header_material = 0x7f050043; - public static final int abc_text_size_menu_material = 0x7f050044; - public static final int abc_text_size_small_material = 0x7f050045; - public static final int abc_text_size_subhead_material = 0x7f050046; - public static final int abc_text_size_subtitle_material_toolbar = 0x7f050047; - public static final int abc_text_size_title_material = 0x7f050048; - public static final int abc_text_size_title_material_toolbar = 0x7f050049; - public static final int compat_button_inset_horizontal_material = 0x7f05004a; - public static final int compat_button_inset_vertical_material = 0x7f05004b; - public static final int compat_button_padding_horizontal_material = 0x7f05004c; - public static final int compat_button_padding_vertical_material = 0x7f05004d; - public static final int compat_control_corner_material = 0x7f05004e; - public static final int disabled_alpha_material_dark = 0x7f05004f; - public static final int disabled_alpha_material_light = 0x7f050050; - public static final int highlight_alpha_material_colored = 0x7f050051; - public static final int highlight_alpha_material_dark = 0x7f050052; - public static final int highlight_alpha_material_light = 0x7f050053; - public static final int hint_alpha_material_dark = 0x7f050054; - public static final int hint_alpha_material_light = 0x7f050055; - public static final int hint_pressed_alpha_material_dark = 0x7f050056; - public static final int hint_pressed_alpha_material_light = 0x7f050057; - public static final int notification_action_icon_size = 0x7f050058; - public static final int notification_action_text_size = 0x7f050059; - public static final int notification_big_circle_margin = 0x7f05005a; - public static final int notification_content_margin_start = 0x7f05005b; - public static final int notification_large_icon_height = 0x7f05005c; - public static final int notification_large_icon_width = 0x7f05005d; - public static final int notification_main_column_padding_top = 0x7f05005e; - public static final int notification_media_narrow_margin = 0x7f05005f; - public static final int notification_right_icon_size = 0x7f050060; - public static final int notification_right_side_padding_top = 0x7f050061; - public static final int notification_small_icon_background_padding = 0x7f050062; - public static final int notification_small_icon_size_as_large = 0x7f050063; - public static final int notification_subtext_size = 0x7f050064; - public static final int notification_top_pad = 0x7f050065; - public static final int notification_top_pad_large_text = 0x7f050066; - public static final int tooltip_corner_radius = 0x7f050067; - public static final int tooltip_horizontal_padding = 0x7f050068; - public static final int tooltip_margin = 0x7f050069; - public static final int tooltip_precise_anchor_extra_offset = 0x7f05006a; - public static final int tooltip_precise_anchor_threshold = 0x7f05006b; - public static final int tooltip_vertical_padding = 0x7f05006c; - public static final int tooltip_y_offset_non_touch = 0x7f05006d; - public static final int tooltip_y_offset_touch = 0x7f05006e; - } - public static final class drawable { - public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060001; - public static final int abc_action_bar_item_background_material = 0x7f060002; - public static final int abc_btn_borderless_material = 0x7f060003; - public static final int abc_btn_check_material = 0x7f060004; - public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060005; - public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060006; - public static final int abc_btn_colored_material = 0x7f060007; - public static final int abc_btn_default_mtrl_shape = 0x7f060008; - public static final int abc_btn_radio_material = 0x7f060009; - public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f06000a; - public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000b; - public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000c; - public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000d; - public static final int abc_cab_background_internal_bg = 0x7f06000e; - public static final int abc_cab_background_top_material = 0x7f06000f; - public static final int abc_cab_background_top_mtrl_alpha = 0x7f060010; - public static final int abc_control_background_material = 0x7f060011; - public static final int abc_dialog_material_background = 0x7f060012; - public static final int abc_edit_text_material = 0x7f060013; - public static final int abc_ic_ab_back_material = 0x7f060014; - public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060015; - public static final int abc_ic_clear_material = 0x7f060016; - public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060017; - public static final int abc_ic_go_search_api_material = 0x7f060018; - public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f060019; - public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f06001a; - public static final int abc_ic_menu_overflow_material = 0x7f06001b; - public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001c; - public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001d; - public static final int abc_ic_menu_share_mtrl_alpha = 0x7f06001e; - public static final int abc_ic_search_api_material = 0x7f06001f; - public static final int abc_ic_star_black_16dp = 0x7f060020; - public static final int abc_ic_star_black_36dp = 0x7f060021; - public static final int abc_ic_star_black_48dp = 0x7f060022; - public static final int abc_ic_star_half_black_16dp = 0x7f060023; - public static final int abc_ic_star_half_black_36dp = 0x7f060024; - public static final int abc_ic_star_half_black_48dp = 0x7f060025; - public static final int abc_ic_voice_search_api_material = 0x7f060026; - public static final int abc_item_background_holo_dark = 0x7f060027; - public static final int abc_item_background_holo_light = 0x7f060028; - public static final int abc_list_divider_mtrl_alpha = 0x7f060029; - public static final int abc_list_focused_holo = 0x7f06002a; - public static final int abc_list_longpressed_holo = 0x7f06002b; - public static final int abc_list_pressed_holo_dark = 0x7f06002c; - public static final int abc_list_pressed_holo_light = 0x7f06002d; - public static final int abc_list_selector_background_transition_holo_dark = 0x7f06002e; - public static final int abc_list_selector_background_transition_holo_light = 0x7f06002f; - public static final int abc_list_selector_disabled_holo_dark = 0x7f060030; - public static final int abc_list_selector_disabled_holo_light = 0x7f060031; - public static final int abc_list_selector_holo_dark = 0x7f060032; - public static final int abc_list_selector_holo_light = 0x7f060033; - public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060034; - public static final int abc_popup_background_mtrl_mult = 0x7f060035; - public static final int abc_ratingbar_indicator_material = 0x7f060036; - public static final int abc_ratingbar_material = 0x7f060037; - public static final int abc_ratingbar_small_material = 0x7f060038; - public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f060039; - public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f06003a; - public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003b; - public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003c; - public static final int abc_scrubber_track_mtrl_alpha = 0x7f06003d; - public static final int abc_seekbar_thumb_material = 0x7f06003e; - public static final int abc_seekbar_tick_mark_material = 0x7f06003f; - public static final int abc_seekbar_track_material = 0x7f060040; - public static final int abc_spinner_mtrl_am_alpha = 0x7f060041; - public static final int abc_spinner_textfield_background_material = 0x7f060042; - public static final int abc_switch_thumb_material = 0x7f060043; - public static final int abc_switch_track_mtrl_alpha = 0x7f060044; - public static final int abc_tab_indicator_material = 0x7f060045; - public static final int abc_tab_indicator_mtrl_alpha = 0x7f060046; - public static final int abc_text_cursor_material = 0x7f060047; - public static final int abc_text_select_handle_left_mtrl_dark = 0x7f060048; - public static final int abc_text_select_handle_left_mtrl_light = 0x7f060049; - public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f06004a; - public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004b; - public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004c; - public static final int abc_text_select_handle_right_mtrl_light = 0x7f06004d; - public static final int abc_textfield_activated_mtrl_alpha = 0x7f06004e; - public static final int abc_textfield_default_mtrl_alpha = 0x7f06004f; - public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f060050; - public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060051; - public static final int abc_textfield_search_material = 0x7f060052; - public static final int abc_vector_test = 0x7f060053; - public static final int notification_action_background = 0x7f060056; - public static final int notification_bg = 0x7f060057; - public static final int notification_bg_low = 0x7f060058; - public static final int notification_bg_low_normal = 0x7f060059; - public static final int notification_bg_low_pressed = 0x7f06005a; - public static final int notification_bg_normal = 0x7f06005b; - public static final int notification_bg_normal_pressed = 0x7f06005c; - public static final int notification_icon_background = 0x7f06005d; - public static final int notification_template_icon_bg = 0x7f06005e; - public static final int notification_template_icon_low_bg = 0x7f06005f; - public static final int notification_tile_bg = 0x7f060060; - public static final int notify_panel_notification_icon_bg = 0x7f060061; - public static final int tooltip_frame_dark = 0x7f060062; - public static final int tooltip_frame_light = 0x7f060063; - } - public static final class id { - public static final int action0 = 0x7f070006; - public static final int action_bar = 0x7f070007; - public static final int action_bar_activity_content = 0x7f070008; - public static final int action_bar_container = 0x7f070009; - public static final int action_bar_root = 0x7f07000a; - public static final int action_bar_spinner = 0x7f07000b; - public static final int action_bar_subtitle = 0x7f07000c; - public static final int action_bar_title = 0x7f07000d; - public static final int action_container = 0x7f07000e; - public static final int action_context_bar = 0x7f07000f; - public static final int action_divider = 0x7f070010; - public static final int action_image = 0x7f070011; - public static final int action_menu_divider = 0x7f070012; - public static final int action_menu_presenter = 0x7f070013; - public static final int action_mode_bar = 0x7f070014; - public static final int action_mode_bar_stub = 0x7f070015; - public static final int action_mode_close_button = 0x7f070016; - public static final int action_text = 0x7f070017; - public static final int actions = 0x7f070018; - public static final int activity_chooser_view_content = 0x7f070019; - public static final int add = 0x7f07001b; - public static final int alertTitle = 0x7f07001c; - public static final int async = 0x7f07001e; - public static final int blocking = 0x7f070021; - public static final int buttonPanel = 0x7f070024; - public static final int cancel_action = 0x7f070025; - public static final int checkbox = 0x7f070027; - public static final int chronometer = 0x7f070028; - public static final int contentPanel = 0x7f07002a; - public static final int custom = 0x7f07002b; - public static final int customPanel = 0x7f07002c; - public static final int decor_content_parent = 0x7f07002d; - public static final int default_activity_button = 0x7f07002e; - public static final int edit_query = 0x7f070032; - public static final int end_padder = 0x7f070034; - public static final int expand_activities_button = 0x7f070035; - public static final int expanded_menu = 0x7f070036; - public static final int forever = 0x7f070037; - public static final int home = 0x7f070039; - public static final int icon = 0x7f07003b; - public static final int icon_group = 0x7f07003c; - public static final int image = 0x7f07003e; - public static final int info = 0x7f07003f; - public static final int italic = 0x7f070041; - public static final int line1 = 0x7f070043; - public static final int line3 = 0x7f070044; - public static final int listMode = 0x7f070045; - public static final int list_item = 0x7f070046; - public static final int media_actions = 0x7f070047; - public static final int message = 0x7f070048; - public static final int multiply = 0x7f07004a; - public static final int none = 0x7f07004c; - public static final int normal = 0x7f07004d; - public static final int notification_background = 0x7f07004e; - public static final int notification_main_column = 0x7f07004f; - public static final int notification_main_column_container = 0x7f070050; - public static final int parentPanel = 0x7f070053; - public static final int progress_circular = 0x7f070055; - public static final int progress_horizontal = 0x7f070056; - public static final int radio = 0x7f070057; - public static final int right_icon = 0x7f070059; - public static final int right_side = 0x7f07005a; - public static final int screen = 0x7f07005b; - public static final int scrollIndicatorDown = 0x7f07005c; - public static final int scrollIndicatorUp = 0x7f07005d; - public static final int scrollView = 0x7f07005e; - public static final int search_badge = 0x7f07005f; - public static final int search_bar = 0x7f070060; - public static final int search_button = 0x7f070061; - public static final int search_close_btn = 0x7f070062; - public static final int search_edit_frame = 0x7f070063; - public static final int search_go_btn = 0x7f070064; - public static final int search_mag_icon = 0x7f070065; - public static final int search_plate = 0x7f070066; - public static final int search_src_text = 0x7f070067; - public static final int search_voice_btn = 0x7f070068; - public static final int select_dialog_listview = 0x7f070069; - public static final int shortcut = 0x7f07006a; - public static final int spacer = 0x7f07006e; - public static final int split_action_bar = 0x7f07006f; - public static final int src_atop = 0x7f070072; - public static final int src_in = 0x7f070073; - public static final int src_over = 0x7f070074; - public static final int status_bar_latest_event_content = 0x7f070077; - public static final int submenuarrow = 0x7f070078; - public static final int submit_area = 0x7f070079; - public static final int tabMode = 0x7f07007a; - public static final int text = 0x7f07007b; - public static final int text2 = 0x7f07007c; - public static final int textSpacerNoButtons = 0x7f07007d; - public static final int textSpacerNoTitle = 0x7f07007e; - public static final int time = 0x7f070080; - public static final int title = 0x7f070081; - public static final int titleDividerNoCustom = 0x7f070082; - public static final int title_template = 0x7f070083; - public static final int topPanel = 0x7f070085; - public static final int uniform = 0x7f070086; - public static final int up = 0x7f070087; - public static final int wrap_content = 0x7f07008b; - } - public static final class integer { - public static final int abc_config_activityDefaultDur = 0x7f080000; - public static final int abc_config_activityShortDur = 0x7f080001; - public static final int cancel_button_image_alpha = 0x7f080002; - public static final int config_tooltipAnimTime = 0x7f080003; - public static final int status_bar_notification_info_maxnum = 0x7f080004; - } - public static final class layout { - public static final int abc_action_bar_title_item = 0x7f090000; - public static final int abc_action_bar_up_container = 0x7f090001; - public static final int abc_action_bar_view_list_nav_layout = 0x7f090002; - public static final int abc_action_menu_item_layout = 0x7f090003; - public static final int abc_action_menu_layout = 0x7f090004; - public static final int abc_action_mode_bar = 0x7f090005; - public static final int abc_action_mode_close_item_material = 0x7f090006; - public static final int abc_activity_chooser_view = 0x7f090007; - public static final int abc_activity_chooser_view_list_item = 0x7f090008; - public static final int abc_alert_dialog_button_bar_material = 0x7f090009; - public static final int abc_alert_dialog_material = 0x7f09000a; - public static final int abc_alert_dialog_title_material = 0x7f09000b; - public static final int abc_dialog_title_material = 0x7f09000c; - public static final int abc_expanded_menu_layout = 0x7f09000d; - public static final int abc_list_menu_item_checkbox = 0x7f09000e; - public static final int abc_list_menu_item_icon = 0x7f09000f; - public static final int abc_list_menu_item_layout = 0x7f090010; - public static final int abc_list_menu_item_radio = 0x7f090011; - public static final int abc_popup_menu_header_item_layout = 0x7f090012; - public static final int abc_popup_menu_item_layout = 0x7f090013; - public static final int abc_screen_content_include = 0x7f090014; - public static final int abc_screen_simple = 0x7f090015; - public static final int abc_screen_simple_overlay_action_mode = 0x7f090016; - public static final int abc_screen_toolbar = 0x7f090017; - public static final int abc_search_dropdown_item_icons_2line = 0x7f090018; - public static final int abc_search_view = 0x7f090019; - public static final int abc_select_dialog_material = 0x7f09001a; - public static final int notification_action = 0x7f09001d; - public static final int notification_action_tombstone = 0x7f09001e; - public static final int notification_media_action = 0x7f09001f; - public static final int notification_media_cancel_action = 0x7f090020; - public static final int notification_template_big_media = 0x7f090021; - public static final int notification_template_big_media_custom = 0x7f090022; - public static final int notification_template_big_media_narrow = 0x7f090023; - public static final int notification_template_big_media_narrow_custom = 0x7f090024; - public static final int notification_template_custom_big = 0x7f090025; - public static final int notification_template_icon_group = 0x7f090026; - public static final int notification_template_lines_media = 0x7f090027; - public static final int notification_template_media = 0x7f090028; - public static final int notification_template_media_custom = 0x7f090029; - public static final int notification_template_part_chronometer = 0x7f09002a; - public static final int notification_template_part_time = 0x7f09002b; - public static final int select_dialog_item_material = 0x7f09002c; - public static final int select_dialog_multichoice_material = 0x7f09002d; - public static final int select_dialog_singlechoice_material = 0x7f09002e; - public static final int support_simple_spinner_dropdown_item = 0x7f09002f; - public static final int tooltip = 0x7f090030; - } - public static final class string { - public static final int abc_action_bar_home_description = 0x7f0b0000; - public static final int abc_action_bar_home_description_format = 0x7f0b0001; - public static final int abc_action_bar_home_subtitle_description_format = 0x7f0b0002; - public static final int abc_action_bar_up_description = 0x7f0b0003; - public static final int abc_action_menu_overflow_description = 0x7f0b0004; - public static final int abc_action_mode_done = 0x7f0b0005; - public static final int abc_activity_chooser_view_see_all = 0x7f0b0006; - public static final int abc_activitychooserview_choose_application = 0x7f0b0007; - public static final int abc_capital_off = 0x7f0b0008; - public static final int abc_capital_on = 0x7f0b0009; - public static final int abc_font_family_body_1_material = 0x7f0b000a; - public static final int abc_font_family_body_2_material = 0x7f0b000b; - public static final int abc_font_family_button_material = 0x7f0b000c; - public static final int abc_font_family_caption_material = 0x7f0b000d; - public static final int abc_font_family_display_1_material = 0x7f0b000e; - public static final int abc_font_family_display_2_material = 0x7f0b000f; - public static final int abc_font_family_display_3_material = 0x7f0b0010; - public static final int abc_font_family_display_4_material = 0x7f0b0011; - public static final int abc_font_family_headline_material = 0x7f0b0012; - public static final int abc_font_family_menu_material = 0x7f0b0013; - public static final int abc_font_family_subhead_material = 0x7f0b0014; - public static final int abc_font_family_title_material = 0x7f0b0015; - public static final int abc_search_hint = 0x7f0b0016; - public static final int abc_searchview_description_clear = 0x7f0b0017; - public static final int abc_searchview_description_query = 0x7f0b0018; - public static final int abc_searchview_description_search = 0x7f0b0019; - public static final int abc_searchview_description_submit = 0x7f0b001a; - public static final int abc_searchview_description_voice = 0x7f0b001b; - public static final int abc_shareactionprovider_share_with = 0x7f0b001c; - public static final int abc_shareactionprovider_share_with_application = 0x7f0b001d; - public static final int abc_toolbar_collapse_description = 0x7f0b001e; - public static final int search_menu_title = 0x7f0b0020; - public static final int status_bar_notification_info_overflow = 0x7f0b0021; - } - public static final class style { - public static final int AlertDialog_AppCompat = 0x7f0c0000; - public static final int AlertDialog_AppCompat_Light = 0x7f0c0001; - public static final int Animation_AppCompat_Dialog = 0x7f0c0002; - public static final int Animation_AppCompat_DropDownUp = 0x7f0c0003; - public static final int Animation_AppCompat_Tooltip = 0x7f0c0004; - public static final int Base_AlertDialog_AppCompat = 0x7f0c0006; - public static final int Base_AlertDialog_AppCompat_Light = 0x7f0c0007; - public static final int Base_Animation_AppCompat_Dialog = 0x7f0c0008; - public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0c0009; - public static final int Base_Animation_AppCompat_Tooltip = 0x7f0c000a; - public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0c000c; - public static final int Base_DialogWindowTitle_AppCompat = 0x7f0c000b; - public static final int Base_TextAppearance_AppCompat = 0x7f0c000d; - public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0c000e; - public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0c000f; - public static final int Base_TextAppearance_AppCompat_Button = 0x7f0c0010; - public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0c0011; - public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0c0012; - public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0c0013; - public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0c0014; - public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0c0015; - public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0c0016; - public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0c0017; - public static final int Base_TextAppearance_AppCompat_Large = 0x7f0c0018; - public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0c0019; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c001a; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c001b; - public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0c001c; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0c001d; - public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0c001e; - public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0c001f; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c0020; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0c0021; - public static final int Base_TextAppearance_AppCompat_Small = 0x7f0c0022; - public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0c0023; - public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0c0024; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c0025; - public static final int Base_TextAppearance_AppCompat_Title = 0x7f0c0026; - public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0c0027; - public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0c0028; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c0029; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c002a; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c002b; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c002c; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c002d; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c002e; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c002f; - public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0c0030; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0c0031; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0c0032; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0c0033; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c0034; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0c0035; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c0036; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c0037; - public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0c0038; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c0039; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c003a; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c003b; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c003c; - public static final int Base_ThemeOverlay_AppCompat = 0x7f0c004b; - public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0c004c; - public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0c004d; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c004e; - public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0c004f; - public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0c0050; - public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0c0051; - public static final int Base_Theme_AppCompat = 0x7f0c003d; - public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0c003e; - public static final int Base_Theme_AppCompat_Dialog = 0x7f0c003f; - public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0c0043; - public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0c0040; - public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0c0041; - public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0c0042; - public static final int Base_Theme_AppCompat_Light = 0x7f0c0044; - public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0c0045; - public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0c0046; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c004a; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0c0047; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0c0048; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0c0049; - public static final int Base_V11_ThemeOverlay_AppCompat_Dialog = 0x7f0c0054; - public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0c0052; - public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0c0053; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0055; - public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0c0056; - public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0c005b; - public static final int Base_V21_Theme_AppCompat = 0x7f0c0057; - public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0c0058; - public static final int Base_V21_Theme_AppCompat_Light = 0x7f0c0059; - public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0c005a; - public static final int Base_V22_Theme_AppCompat = 0x7f0c005c; - public static final int Base_V22_Theme_AppCompat_Light = 0x7f0c005d; - public static final int Base_V23_Theme_AppCompat = 0x7f0c005e; - public static final int Base_V23_Theme_AppCompat_Light = 0x7f0c005f; - public static final int Base_V26_Theme_AppCompat = 0x7f0c0060; - public static final int Base_V26_Theme_AppCompat_Light = 0x7f0c0061; - public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0c0062; - public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0c0067; - public static final int Base_V7_Theme_AppCompat = 0x7f0c0063; - public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0c0064; - public static final int Base_V7_Theme_AppCompat_Light = 0x7f0c0065; - public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0c0066; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0068; - public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0c0069; - public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0c006a; - public static final int Base_Widget_AppCompat_ActionBar = 0x7f0c006b; - public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0c006c; - public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0c006d; - public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0c006e; - public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0c006f; - public static final int Base_Widget_AppCompat_ActionButton = 0x7f0c0070; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0c0071; - public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0c0072; - public static final int Base_Widget_AppCompat_ActionMode = 0x7f0c0073; - public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0c0074; - public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0075; - public static final int Base_Widget_AppCompat_Button = 0x7f0c0076; - public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0c007c; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0c007d; - public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0c0077; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0c0078; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0c0079; - public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0c007a; - public static final int Base_Widget_AppCompat_Button_Small = 0x7f0c007b; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0c007e; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0c007f; - public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0c0080; - public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0c0081; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0c0082; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0c0083; - public static final int Base_Widget_AppCompat_EditText = 0x7f0c0084; - public static final int Base_Widget_AppCompat_ImageButton = 0x7f0c0085; - public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0c0086; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c0087; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c0088; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0089; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c008a; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c008b; - public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0c008c; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c008d; - public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0c008e; - public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0c008f; - public static final int Base_Widget_AppCompat_ListView = 0x7f0c0090; - public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0c0091; - public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0c0092; - public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0c0093; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0094; - public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0c0095; - public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0c0096; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c0097; - public static final int Base_Widget_AppCompat_RatingBar = 0x7f0c0098; - public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0c0099; - public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0c009a; - public static final int Base_Widget_AppCompat_SearchView = 0x7f0c009b; - public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0c009c; - public static final int Base_Widget_AppCompat_SeekBar = 0x7f0c009d; - public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0c009e; - public static final int Base_Widget_AppCompat_Spinner = 0x7f0c009f; - public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0c00a0; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0c00a1; - public static final int Base_Widget_AppCompat_Toolbar = 0x7f0c00a2; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c00a3; - public static final int Platform_AppCompat = 0x7f0c00a4; - public static final int Platform_AppCompat_Light = 0x7f0c00a5; - public static final int Platform_ThemeOverlay_AppCompat = 0x7f0c00a6; - public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0c00a7; - public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0c00a8; - public static final int Platform_V11_AppCompat = 0x7f0c00a9; - public static final int Platform_V11_AppCompat_Light = 0x7f0c00aa; - public static final int Platform_V14_AppCompat = 0x7f0c00ab; - public static final int Platform_V14_AppCompat_Light = 0x7f0c00ac; - public static final int Platform_V21_AppCompat = 0x7f0c00ad; - public static final int Platform_V21_AppCompat_Light = 0x7f0c00ae; - public static final int Platform_V25_AppCompat = 0x7f0c00af; - public static final int Platform_V25_AppCompat_Light = 0x7f0c00b0; - public static final int Platform_Widget_AppCompat_Spinner = 0x7f0c00b1; - public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0c00b2; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0c00b3; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0c00b4; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0c00b5; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0c00b6; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0c00b7; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0c00bd; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0c00b8; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0c00b9; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0c00ba; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0c00bb; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0c00bc; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0c00be; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0c00bf; - public static final int TextAppearance_AppCompat = 0x7f0c00c0; - public static final int TextAppearance_AppCompat_Body1 = 0x7f0c00c1; - public static final int TextAppearance_AppCompat_Body2 = 0x7f0c00c2; - public static final int TextAppearance_AppCompat_Button = 0x7f0c00c3; - public static final int TextAppearance_AppCompat_Caption = 0x7f0c00c4; - public static final int TextAppearance_AppCompat_Display1 = 0x7f0c00c5; - public static final int TextAppearance_AppCompat_Display2 = 0x7f0c00c6; - public static final int TextAppearance_AppCompat_Display3 = 0x7f0c00c7; - public static final int TextAppearance_AppCompat_Display4 = 0x7f0c00c8; - public static final int TextAppearance_AppCompat_Headline = 0x7f0c00c9; - public static final int TextAppearance_AppCompat_Inverse = 0x7f0c00ca; - public static final int TextAppearance_AppCompat_Large = 0x7f0c00cb; - public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0c00cc; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0c00cd; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0c00ce; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c00cf; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c00d0; - public static final int TextAppearance_AppCompat_Medium = 0x7f0c00d1; - public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0c00d2; - public static final int TextAppearance_AppCompat_Menu = 0x7f0c00d3; - public static final int TextAppearance_AppCompat_Notification = 0x7f0c00d4; - public static final int TextAppearance_AppCompat_Notification_Info = 0x7f0c00d5; - public static final int TextAppearance_AppCompat_Notification_Info_Media = 0x7f0c00d6; - public static final int TextAppearance_AppCompat_Notification_Line2 = 0x7f0c00d7; - public static final int TextAppearance_AppCompat_Notification_Line2_Media = 0x7f0c00d8; - public static final int TextAppearance_AppCompat_Notification_Media = 0x7f0c00d9; - public static final int TextAppearance_AppCompat_Notification_Time = 0x7f0c00da; - public static final int TextAppearance_AppCompat_Notification_Time_Media = 0x7f0c00db; - public static final int TextAppearance_AppCompat_Notification_Title = 0x7f0c00dc; - public static final int TextAppearance_AppCompat_Notification_Title_Media = 0x7f0c00dd; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c00de; - public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0c00df; - public static final int TextAppearance_AppCompat_Small = 0x7f0c00e0; - public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0c00e1; - public static final int TextAppearance_AppCompat_Subhead = 0x7f0c00e2; - public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c00e3; - public static final int TextAppearance_AppCompat_Title = 0x7f0c00e4; - public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0c00e5; - public static final int TextAppearance_AppCompat_Tooltip = 0x7f0c00e6; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c00e7; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c00e8; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c00e9; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c00ea; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c00eb; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c00ec; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0c00ed; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c00ee; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0c00ef; - public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0c00f0; - public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0c00f1; - public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0c00f2; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0c00f3; - public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c00f4; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0c00f5; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c00f6; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c00f7; - public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0c00f8; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c00f9; - public static final int TextAppearance_Compat_Notification = 0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0c00fc; - public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0c00fe; - public static final int TextAppearance_Compat_Notification_Media = 0x7f0c00ff; - public static final int TextAppearance_Compat_Notification_Time = 0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0c0101; - public static final int TextAppearance_Compat_Notification_Title = 0x7f0c0102; - public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0c0103; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c0104; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c0105; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c0106; - public static final int ThemeOverlay_AppCompat = 0x7f0c011c; - public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0c011d; - public static final int ThemeOverlay_AppCompat_Dark = 0x7f0c011e; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c011f; - public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0c0120; - public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0c0121; - public static final int ThemeOverlay_AppCompat_Light = 0x7f0c0122; - public static final int Theme_AppCompat = 0x7f0c0107; - public static final int Theme_AppCompat_CompactMenu = 0x7f0c0108; - public static final int Theme_AppCompat_DayNight = 0x7f0c0109; - public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0c010a; - public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0c010b; - public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0c010e; - public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0c010c; - public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0c010d; - public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0c010f; - public static final int Theme_AppCompat_Dialog = 0x7f0c0110; - public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0c0113; - public static final int Theme_AppCompat_Dialog_Alert = 0x7f0c0111; - public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0c0112; - public static final int Theme_AppCompat_Light = 0x7f0c0114; - public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0c0115; - public static final int Theme_AppCompat_Light_Dialog = 0x7f0c0116; - public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c0119; - public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0c0117; - public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0c0118; - public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0c011a; - public static final int Theme_AppCompat_NoActionBar = 0x7f0c011b; - public static final int Widget_AppCompat_ActionBar = 0x7f0c0123; - public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0c0124; - public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0c0125; - public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0c0126; - public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0c0127; - public static final int Widget_AppCompat_ActionButton = 0x7f0c0128; - public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0c0129; - public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0c012a; - public static final int Widget_AppCompat_ActionMode = 0x7f0c012b; - public static final int Widget_AppCompat_ActivityChooserView = 0x7f0c012c; - public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0c012d; - public static final int Widget_AppCompat_Button = 0x7f0c012e; - public static final int Widget_AppCompat_ButtonBar = 0x7f0c0134; - public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0c0135; - public static final int Widget_AppCompat_Button_Borderless = 0x7f0c012f; - public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0c0130; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0c0131; - public static final int Widget_AppCompat_Button_Colored = 0x7f0c0132; - public static final int Widget_AppCompat_Button_Small = 0x7f0c0133; - public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0c0136; - public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0c0137; - public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0c0138; - public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0c0139; - public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0c013a; - public static final int Widget_AppCompat_EditText = 0x7f0c013b; - public static final int Widget_AppCompat_ImageButton = 0x7f0c013c; - public static final int Widget_AppCompat_Light_ActionBar = 0x7f0c013d; - public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c013e; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0c013f; - public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c0140; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0c0141; - public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0142; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0143; - public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c0144; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0c0145; - public static final int Widget_AppCompat_Light_ActionButton = 0x7f0c0146; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0c0147; - public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0c0148; - public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0c0149; - public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0c014a; - public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0c014b; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0c014c; - public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0c014d; - public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0c014e; - public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0c014f; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c0150; - public static final int Widget_AppCompat_Light_SearchView = 0x7f0c0151; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0c0152; - public static final int Widget_AppCompat_ListMenuView = 0x7f0c0153; - public static final int Widget_AppCompat_ListPopupWindow = 0x7f0c0154; - public static final int Widget_AppCompat_ListView = 0x7f0c0155; - public static final int Widget_AppCompat_ListView_DropDown = 0x7f0c0156; - public static final int Widget_AppCompat_ListView_Menu = 0x7f0c0157; - public static final int Widget_AppCompat_PopupMenu = 0x7f0c0158; - public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0159; - public static final int Widget_AppCompat_PopupWindow = 0x7f0c015a; - public static final int Widget_AppCompat_ProgressBar = 0x7f0c015b; - public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c015c; - public static final int Widget_AppCompat_RatingBar = 0x7f0c015d; - public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0c015e; - public static final int Widget_AppCompat_RatingBar_Small = 0x7f0c015f; - public static final int Widget_AppCompat_SearchView = 0x7f0c0160; - public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0c0161; - public static final int Widget_AppCompat_SeekBar = 0x7f0c0162; - public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0c0163; - public static final int Widget_AppCompat_Spinner = 0x7f0c0164; - public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0c0165; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0c0166; - public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0c0167; - public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0c0168; - public static final int Widget_AppCompat_Toolbar = 0x7f0c0169; - public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c016a; - public static final int Widget_Compat_NotificationActionContainer = 0x7f0c016b; - public static final int Widget_Compat_NotificationActionText = 0x7f0c016c; - } - public static final class styleable { - public static final int[] ActionBar = { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 }; - public static final int ActionBar_background = 0; - public static final int ActionBar_backgroundSplit = 1; - public static final int ActionBar_backgroundStacked = 2; - public static final int ActionBar_contentInsetEnd = 3; - public static final int ActionBar_contentInsetEndWithActions = 4; - public static final int ActionBar_contentInsetLeft = 5; - public static final int ActionBar_contentInsetRight = 6; - public static final int ActionBar_contentInsetStart = 7; - public static final int ActionBar_contentInsetStartWithNavigation = 8; - public static final int ActionBar_customNavigationLayout = 9; - public static final int ActionBar_displayOptions = 10; - public static final int ActionBar_divider = 11; - public static final int ActionBar_elevation = 12; - public static final int ActionBar_height = 13; - public static final int ActionBar_hideOnContentScroll = 14; - public static final int ActionBar_homeAsUpIndicator = 15; - public static final int ActionBar_homeLayout = 16; - public static final int ActionBar_icon = 17; - public static final int ActionBar_indeterminateProgressStyle = 18; - public static final int ActionBar_itemPadding = 19; - public static final int ActionBar_logo = 20; - public static final int ActionBar_navigationMode = 21; - public static final int ActionBar_popupTheme = 22; - public static final int ActionBar_progressBarPadding = 23; - public static final int ActionBar_progressBarStyle = 24; - public static final int ActionBar_subtitle = 25; - public static final int ActionBar_subtitleTextStyle = 26; - public static final int ActionBar_title = 27; - public static final int ActionBar_titleTextStyle = 28; - public static final int[] ActionBarLayout = { 0x010100b3 }; - public static final int ActionBarLayout_android_layout_gravity = 0; - public static final int[] ActionMenuItemView = { 0x0101013f }; - public static final int ActionMenuItemView_android_minWidth = 0; - public static final int[] ActionMode = { 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 }; - public static final int ActionMode_background = 0; - public static final int ActionMode_backgroundSplit = 1; - public static final int ActionMode_closeItemLayout = 2; - public static final int ActionMode_height = 3; - public static final int ActionMode_subtitleTextStyle = 4; - public static final int ActionMode_titleTextStyle = 5; - public static final int[] ActivityChooserView = { 0x7f020075, 0x7f02008c }; - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; - public static final int ActivityChooserView_initialActivityCount = 1; - public static final int[] AlertDialog = { 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 }; - public static final int AlertDialog_android_layout = 0; - public static final int AlertDialog_buttonPanelSideLayout = 1; - public static final int AlertDialog_listItemLayout = 2; - public static final int AlertDialog_listLayout = 3; - public static final int AlertDialog_multiChoiceItemLayout = 4; - public static final int AlertDialog_showTitle = 5; - public static final int AlertDialog_singleChoiceItemLayout = 6; - public static final int[] AppCompatImageView = { 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a }; - public static final int AppCompatImageView_android_src = 0; - public static final int AppCompatImageView_srcCompat = 1; - public static final int AppCompatImageView_tint = 2; - public static final int AppCompatImageView_tintMode = 3; - public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 }; - public static final int AppCompatSeekBar_android_thumb = 0; - public static final int AppCompatSeekBar_tickMark = 1; - public static final int AppCompatSeekBar_tickMarkTint = 2; - public static final int AppCompatSeekBar_tickMarkTintMode = 3; - public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; - public static final int AppCompatTextHelper_android_textAppearance = 0; - public static final int AppCompatTextHelper_android_drawableTop = 1; - public static final int AppCompatTextHelper_android_drawableBottom = 2; - public static final int AppCompatTextHelper_android_drawableLeft = 3; - public static final int AppCompatTextHelper_android_drawableRight = 4; - public static final int AppCompatTextHelper_android_drawableStart = 5; - public static final int AppCompatTextHelper_android_drawableEnd = 6; - public static final int[] AppCompatTextView = { 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 }; - public static final int AppCompatTextView_android_textAppearance = 0; - public static final int AppCompatTextView_autoSizeMaxTextSize = 1; - public static final int AppCompatTextView_autoSizeMinTextSize = 2; - public static final int AppCompatTextView_autoSizePresetSizes = 3; - public static final int AppCompatTextView_autoSizeStepGranularity = 4; - public static final int AppCompatTextView_autoSizeTextType = 5; - public static final int AppCompatTextView_fontFamily = 6; - public static final int AppCompatTextView_textAllCaps = 7; - public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 }; - public static final int AppCompatTheme_android_windowIsFloating = 0; - public static final int AppCompatTheme_android_windowAnimationStyle = 1; - public static final int AppCompatTheme_actionBarDivider = 2; - public static final int AppCompatTheme_actionBarItemBackground = 3; - public static final int AppCompatTheme_actionBarPopupTheme = 4; - public static final int AppCompatTheme_actionBarSize = 5; - public static final int AppCompatTheme_actionBarSplitStyle = 6; - public static final int AppCompatTheme_actionBarStyle = 7; - public static final int AppCompatTheme_actionBarTabBarStyle = 8; - public static final int AppCompatTheme_actionBarTabStyle = 9; - public static final int AppCompatTheme_actionBarTabTextStyle = 10; - public static final int AppCompatTheme_actionBarTheme = 11; - public static final int AppCompatTheme_actionBarWidgetTheme = 12; - public static final int AppCompatTheme_actionButtonStyle = 13; - public static final int AppCompatTheme_actionDropDownStyle = 14; - public static final int AppCompatTheme_actionMenuTextAppearance = 15; - public static final int AppCompatTheme_actionMenuTextColor = 16; - public static final int AppCompatTheme_actionModeBackground = 17; - public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; - public static final int AppCompatTheme_actionModeCloseDrawable = 19; - public static final int AppCompatTheme_actionModeCopyDrawable = 20; - public static final int AppCompatTheme_actionModeCutDrawable = 21; - public static final int AppCompatTheme_actionModeFindDrawable = 22; - public static final int AppCompatTheme_actionModePasteDrawable = 23; - public static final int AppCompatTheme_actionModePopupWindowStyle = 24; - public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; - public static final int AppCompatTheme_actionModeShareDrawable = 26; - public static final int AppCompatTheme_actionModeSplitBackground = 27; - public static final int AppCompatTheme_actionModeStyle = 28; - public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; - public static final int AppCompatTheme_actionOverflowButtonStyle = 30; - public static final int AppCompatTheme_actionOverflowMenuStyle = 31; - public static final int AppCompatTheme_activityChooserViewStyle = 32; - public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; - public static final int AppCompatTheme_alertDialogCenterButtons = 34; - public static final int AppCompatTheme_alertDialogStyle = 35; - public static final int AppCompatTheme_alertDialogTheme = 36; - public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; - public static final int AppCompatTheme_borderlessButtonStyle = 38; - public static final int AppCompatTheme_buttonBarButtonStyle = 39; - public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; - public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; - public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; - public static final int AppCompatTheme_buttonBarStyle = 43; - public static final int AppCompatTheme_buttonStyle = 44; - public static final int AppCompatTheme_buttonStyleSmall = 45; - public static final int AppCompatTheme_checkboxStyle = 46; - public static final int AppCompatTheme_checkedTextViewStyle = 47; - public static final int AppCompatTheme_colorAccent = 48; - public static final int AppCompatTheme_colorBackgroundFloating = 49; - public static final int AppCompatTheme_colorButtonNormal = 50; - public static final int AppCompatTheme_colorControlActivated = 51; - public static final int AppCompatTheme_colorControlHighlight = 52; - public static final int AppCompatTheme_colorControlNormal = 53; - public static final int AppCompatTheme_colorError = 54; - public static final int AppCompatTheme_colorPrimary = 55; - public static final int AppCompatTheme_colorPrimaryDark = 56; - public static final int AppCompatTheme_colorSwitchThumbNormal = 57; - public static final int AppCompatTheme_controlBackground = 58; - public static final int AppCompatTheme_dialogPreferredPadding = 59; - public static final int AppCompatTheme_dialogTheme = 60; - public static final int AppCompatTheme_dividerHorizontal = 61; - public static final int AppCompatTheme_dividerVertical = 62; - public static final int AppCompatTheme_dropDownListViewStyle = 63; - public static final int AppCompatTheme_dropdownListPreferredItemHeight = 64; - public static final int AppCompatTheme_editTextBackground = 65; - public static final int AppCompatTheme_editTextColor = 66; - public static final int AppCompatTheme_editTextStyle = 67; - public static final int AppCompatTheme_homeAsUpIndicator = 68; - public static final int AppCompatTheme_imageButtonStyle = 69; - public static final int AppCompatTheme_listChoiceBackgroundIndicator = 70; - public static final int AppCompatTheme_listDividerAlertDialog = 71; - public static final int AppCompatTheme_listMenuViewStyle = 72; - public static final int AppCompatTheme_listPopupWindowStyle = 73; - public static final int AppCompatTheme_listPreferredItemHeight = 74; - public static final int AppCompatTheme_listPreferredItemHeightLarge = 75; - public static final int AppCompatTheme_listPreferredItemHeightSmall = 76; - public static final int AppCompatTheme_listPreferredItemPaddingLeft = 77; - public static final int AppCompatTheme_listPreferredItemPaddingRight = 78; - public static final int AppCompatTheme_panelBackground = 79; - public static final int AppCompatTheme_panelMenuListTheme = 80; - public static final int AppCompatTheme_panelMenuListWidth = 81; - public static final int AppCompatTheme_popupMenuStyle = 82; - public static final int AppCompatTheme_popupWindowStyle = 83; - public static final int AppCompatTheme_radioButtonStyle = 84; - public static final int AppCompatTheme_ratingBarStyle = 85; - public static final int AppCompatTheme_ratingBarStyleIndicator = 86; - public static final int AppCompatTheme_ratingBarStyleSmall = 87; - public static final int AppCompatTheme_searchViewStyle = 88; - public static final int AppCompatTheme_seekBarStyle = 89; - public static final int AppCompatTheme_selectableItemBackground = 90; - public static final int AppCompatTheme_selectableItemBackgroundBorderless = 91; - public static final int AppCompatTheme_spinnerDropDownItemStyle = 92; - public static final int AppCompatTheme_spinnerStyle = 93; - public static final int AppCompatTheme_switchStyle = 94; - public static final int AppCompatTheme_textAppearanceLargePopupMenu = 95; - public static final int AppCompatTheme_textAppearanceListItem = 96; - public static final int AppCompatTheme_textAppearanceListItemSecondary = 97; - public static final int AppCompatTheme_textAppearanceListItemSmall = 98; - public static final int AppCompatTheme_textAppearancePopupMenuHeader = 99; - public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 100; - public static final int AppCompatTheme_textAppearanceSearchResultTitle = 101; - public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 102; - public static final int AppCompatTheme_textColorAlertDialogListItem = 103; - public static final int AppCompatTheme_textColorSearchUrl = 104; - public static final int AppCompatTheme_toolbarNavigationButtonStyle = 105; - public static final int AppCompatTheme_toolbarStyle = 106; - public static final int AppCompatTheme_tooltipForegroundColor = 107; - public static final int AppCompatTheme_tooltipFrameBackground = 108; - public static final int AppCompatTheme_windowActionBar = 109; - public static final int AppCompatTheme_windowActionBarOverlay = 110; - public static final int AppCompatTheme_windowActionModeOverlay = 111; - public static final int AppCompatTheme_windowFixedHeightMajor = 112; - public static final int AppCompatTheme_windowFixedHeightMinor = 113; - public static final int AppCompatTheme_windowFixedWidthMajor = 114; - public static final int AppCompatTheme_windowFixedWidthMinor = 115; - public static final int AppCompatTheme_windowMinWidthMajor = 116; - public static final int AppCompatTheme_windowMinWidthMinor = 117; - public static final int AppCompatTheme_windowNoTitle = 118; - public static final int[] ButtonBarLayout = { 0x7f020026 }; - public static final int ButtonBarLayout_allowStacking = 0; - public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f020027 }; - public static final int ColorStateListItem_android_color = 0; - public static final int ColorStateListItem_android_alpha = 1; - public static final int ColorStateListItem_alpha = 2; - public static final int[] CompoundButton = { 0x01010107, 0x7f020043, 0x7f020044 }; - public static final int CompoundButton_android_button = 0; - public static final int CompoundButton_buttonTint = 1; - public static final int CompoundButton_buttonTintMode = 2; - public static final int[] DrawerArrowToggle = { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 }; - public static final int DrawerArrowToggle_arrowHeadLength = 0; - public static final int DrawerArrowToggle_arrowShaftLength = 1; - public static final int DrawerArrowToggle_barLength = 2; - public static final int DrawerArrowToggle_color = 3; - public static final int DrawerArrowToggle_drawableSize = 4; - public static final int DrawerArrowToggle_gapBetweenBars = 5; - public static final int DrawerArrowToggle_spinBars = 6; - public static final int DrawerArrowToggle_thickness = 7; - public static final int[] FontFamily = { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; - public static final int FontFamily_fontProviderAuthority = 0; - public static final int FontFamily_fontProviderCerts = 1; - public static final int FontFamily_fontProviderFetchStrategy = 2; - public static final int FontFamily_fontProviderFetchTimeout = 3; - public static final int FontFamily_fontProviderPackage = 4; - public static final int FontFamily_fontProviderQuery = 5; - public static final int[] FontFamilyFont = { 0x7f020076, 0x7f02007e, 0x7f02007f }; - public static final int FontFamilyFont_font = 0; - public static final int FontFamilyFont_fontStyle = 1; - public static final int FontFamilyFont_fontWeight = 2; - public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 }; - public static final int LinearLayoutCompat_android_gravity = 0; - public static final int LinearLayoutCompat_android_orientation = 1; - public static final int LinearLayoutCompat_android_baselineAligned = 2; - public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - public static final int LinearLayoutCompat_android_weightSum = 4; - public static final int LinearLayoutCompat_divider = 5; - public static final int LinearLayoutCompat_dividerPadding = 6; - public static final int LinearLayoutCompat_measureWithLargestChild = 7; - public static final int LinearLayoutCompat_showDividers = 8; - public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; - public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; - public static final int LinearLayoutCompat_Layout_android_layout_width = 1; - public static final int LinearLayoutCompat_Layout_android_layout_height = 2; - public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; - public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; - public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; - public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; - public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; - public static final int MenuGroup_android_enabled = 0; - public static final int MenuGroup_android_id = 1; - public static final int MenuGroup_android_visible = 2; - public static final int MenuGroup_android_menuCategory = 3; - public static final int MenuGroup_android_orderInCategory = 4; - public static final int MenuGroup_android_checkableBehavior = 5; - public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 }; - public static final int MenuItem_android_icon = 0; - public static final int MenuItem_android_enabled = 1; - public static final int MenuItem_android_id = 2; - public static final int MenuItem_android_checked = 3; - public static final int MenuItem_android_visible = 4; - public static final int MenuItem_android_menuCategory = 5; - public static final int MenuItem_android_orderInCategory = 6; - public static final int MenuItem_android_title = 7; - public static final int MenuItem_android_titleCondensed = 8; - public static final int MenuItem_android_alphabeticShortcut = 9; - public static final int MenuItem_android_numericShortcut = 10; - public static final int MenuItem_android_checkable = 11; - public static final int MenuItem_android_onClick = 12; - public static final int MenuItem_actionLayout = 13; - public static final int MenuItem_actionProviderClass = 14; - public static final int MenuItem_actionViewClass = 15; - public static final int MenuItem_alphabeticModifiers = 16; - public static final int MenuItem_contentDescription = 17; - public static final int MenuItem_iconTint = 18; - public static final int MenuItem_iconTintMode = 19; - public static final int MenuItem_numericModifiers = 20; - public static final int MenuItem_showAsAction = 21; - public static final int MenuItem_tooltipText = 22; - public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, 0x7f0200fb }; - public static final int MenuView_android_windowAnimationStyle = 0; - public static final int MenuView_android_itemTextAppearance = 1; - public static final int MenuView_android_horizontalDivider = 2; - public static final int MenuView_android_verticalDivider = 3; - public static final int MenuView_android_headerBackground = 4; - public static final int MenuView_android_itemBackground = 5; - public static final int MenuView_android_itemIconDisabledAlpha = 6; - public static final int MenuView_preserveIconSpacing = 7; - public static final int MenuView_subMenuArrow = 8; - public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0200d6 }; - public static final int PopupWindow_android_popupBackground = 0; - public static final int PopupWindow_android_popupAnimationStyle = 1; - public static final int PopupWindow_overlapAnchor = 2; - public static final int[] PopupWindowBackgroundState = { 0x7f0200fa }; - public static final int PopupWindowBackgroundState_state_above_anchor = 0; - public static final int[] RecycleListView = { 0x7f0200d7, 0x7f0200da }; - public static final int RecycleListView_paddingBottomNoButtons = 0; - public static final int RecycleListView_paddingTopNoTitle = 1; - public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d }; - public static final int SearchView_android_focusable = 0; - public static final int SearchView_android_maxWidth = 1; - public static final int SearchView_android_inputType = 2; - public static final int SearchView_android_imeOptions = 3; - public static final int SearchView_closeIcon = 4; - public static final int SearchView_commitIcon = 5; - public static final int SearchView_defaultQueryHint = 6; - public static final int SearchView_goIcon = 7; - public static final int SearchView_iconifiedByDefault = 8; - public static final int SearchView_layout = 9; - public static final int SearchView_queryBackground = 10; - public static final int SearchView_queryHint = 11; - public static final int SearchView_searchHintIcon = 12; - public static final int SearchView_searchIcon = 13; - public static final int SearchView_submitBackground = 14; - public static final int SearchView_suggestionRowLayout = 15; - public static final int SearchView_voiceIcon = 16; - public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200df }; - public static final int Spinner_android_entries = 0; - public static final int Spinner_android_popupBackground = 1; - public static final int Spinner_android_prompt = 2; - public static final int Spinner_android_dropDownWidth = 3; - public static final int Spinner_popupTheme = 4; - public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c }; - public static final int SwitchCompat_android_textOn = 0; - public static final int SwitchCompat_android_textOff = 1; - public static final int SwitchCompat_android_thumb = 2; - public static final int SwitchCompat_showText = 3; - public static final int SwitchCompat_splitTrack = 4; - public static final int SwitchCompat_switchMinWidth = 5; - public static final int SwitchCompat_switchPadding = 6; - public static final int SwitchCompat_switchTextAppearance = 7; - public static final int SwitchCompat_thumbTextPadding = 8; - public static final int SwitchCompat_thumbTint = 9; - public static final int SwitchCompat_thumbTintMode = 10; - public static final int SwitchCompat_track = 11; - public static final int SwitchCompat_trackTint = 12; - public static final int SwitchCompat_trackTintMode = 13; - public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, 0x7f020106 }; - public static final int TextAppearance_android_textSize = 0; - public static final int TextAppearance_android_typeface = 1; - public static final int TextAppearance_android_textStyle = 2; - public static final int TextAppearance_android_textColor = 3; - public static final int TextAppearance_android_textColorHint = 4; - public static final int TextAppearance_android_textColorLink = 5; - public static final int TextAppearance_android_shadowColor = 6; - public static final int TextAppearance_android_shadowDx = 7; - public static final int TextAppearance_android_shadowDy = 8; - public static final int TextAppearance_android_shadowRadius = 9; - public static final int TextAppearance_android_fontFamily = 10; - public static final int TextAppearance_fontFamily = 11; - public static final int TextAppearance_textAllCaps = 12; - public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 }; - public static final int Toolbar_android_gravity = 0; - public static final int Toolbar_android_minHeight = 1; - public static final int Toolbar_buttonGravity = 2; - public static final int Toolbar_collapseContentDescription = 3; - public static final int Toolbar_collapseIcon = 4; - public static final int Toolbar_contentInsetEnd = 5; - public static final int Toolbar_contentInsetEndWithActions = 6; - public static final int Toolbar_contentInsetLeft = 7; - public static final int Toolbar_contentInsetRight = 8; - public static final int Toolbar_contentInsetStart = 9; - public static final int Toolbar_contentInsetStartWithNavigation = 10; - public static final int Toolbar_logo = 11; - public static final int Toolbar_logoDescription = 12; - public static final int Toolbar_maxButtonHeight = 13; - public static final int Toolbar_navigationContentDescription = 14; - public static final int Toolbar_navigationIcon = 15; - public static final int Toolbar_popupTheme = 16; - public static final int Toolbar_subtitle = 17; - public static final int Toolbar_subtitleTextAppearance = 18; - public static final int Toolbar_subtitleTextColor = 19; - public static final int Toolbar_title = 20; - public static final int Toolbar_titleMargin = 21; - public static final int Toolbar_titleMarginBottom = 22; - public static final int Toolbar_titleMarginEnd = 23; - public static final int Toolbar_titleMarginStart = 24; - public static final int Toolbar_titleMarginTop = 25; - public static final int Toolbar_titleMargins = 26; - public static final int Toolbar_titleTextAppearance = 27; - public static final int Toolbar_titleTextColor = 28; - public static final int[] View = { 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, 0x7f020111 }; - public static final int View_android_theme = 0; - public static final int View_android_focusable = 1; - public static final int View_paddingEnd = 2; - public static final int View_paddingStart = 3; - public static final int View_theme = 4; - public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f020034, 0x7f020035 }; - public static final int ViewBackgroundHelper_android_background = 0; - public static final int ViewBackgroundHelper_backgroundTint = 1; - public static final int ViewBackgroundHelper_backgroundTintMode = 2; - public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; - public static final int ViewStubCompat_android_id = 0; - public static final int ViewStubCompat_android_layout = 1; - public static final int ViewStubCompat_android_inflatedId = 2; - } -} diff --git a/MVPModel/retrofitdemo/build/generated/source/r/debug/com/gaolei/retrofitdemo/R.java b/MVPModel/retrofitdemo/build/generated/source/r/debug/com/gaolei/retrofitdemo/R.java deleted file mode 100644 index 0566529..0000000 --- a/MVPModel/retrofitdemo/build/generated/source/r/debug/com/gaolei/retrofitdemo/R.java +++ /dev/null @@ -1,11586 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package com.gaolei.retrofitdemo; - -public final class R { - public static final class anim { - public static final int abc_fade_in=0x7f010000; - public static final int abc_fade_out=0x7f010001; - public static final int abc_grow_fade_in_from_bottom=0x7f010002; - public static final int abc_popup_enter=0x7f010003; - public static final int abc_popup_exit=0x7f010004; - public static final int abc_shrink_fade_out_from_bottom=0x7f010005; - public static final int abc_slide_in_bottom=0x7f010006; - public static final int abc_slide_in_top=0x7f010007; - public static final int abc_slide_out_bottom=0x7f010008; - public static final int abc_slide_out_top=0x7f010009; - public static final int tooltip_enter=0x7f01000a; - public static final int tooltip_exit=0x7f01000b; - } - public static final class attr { - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarDivider=0x7f020000; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarItemBackground=0x7f020001; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarPopupTheme=0x7f020002; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrap_content0
- */ - public static final int actionBarSize=0x7f020003; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarSplitStyle=0x7f020004; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarStyle=0x7f020005; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTabBarStyle=0x7f020006; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTabStyle=0x7f020007; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTabTextStyle=0x7f020008; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarTheme=0x7f020009; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionBarWidgetTheme=0x7f02000a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionButtonStyle=0x7f02000b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionDropDownStyle=0x7f02000c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionLayout=0x7f02000d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionMenuTextAppearance=0x7f02000e; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int actionMenuTextColor=0x7f02000f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeBackground=0x7f020010; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCloseButtonStyle=0x7f020011; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCloseDrawable=0x7f020012; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCopyDrawable=0x7f020013; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeCutDrawable=0x7f020014; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeFindDrawable=0x7f020015; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModePasteDrawable=0x7f020016; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModePopupWindowStyle=0x7f020017; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeSelectAllDrawable=0x7f020018; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeShareDrawable=0x7f020019; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeSplitBackground=0x7f02001a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeStyle=0x7f02001b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionModeWebSearchDrawable=0x7f02001c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionOverflowButtonStyle=0x7f02001d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int actionOverflowMenuStyle=0x7f02001e; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int actionProviderClass=0x7f02001f; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int actionViewClass=0x7f020020; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int activityChooserViewStyle=0x7f020021; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int alertDialogButtonGroupStyle=0x7f020022; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int alertDialogCenterButtons=0x7f020023; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int alertDialogStyle=0x7f020024; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int alertDialogTheme=0x7f020025; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int allowStacking=0x7f020026; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int alpha=0x7f020027; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- */ - public static final int alphabeticModifiers=0x7f020028; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int arrowHeadLength=0x7f020029; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int arrowShaftLength=0x7f02002a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int autoCompleteTextViewStyle=0x7f02002b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int autoSizeMaxTextSize=0x7f02002c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int autoSizeMinTextSize=0x7f02002d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int autoSizePresetSizes=0x7f02002e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int autoSizeStepGranularity=0x7f02002f; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
none0
uniform1
- */ - public static final int autoSizeTextType=0x7f020030; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int background=0x7f020031; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int backgroundSplit=0x7f020032; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int backgroundStacked=0x7f020033; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int backgroundTint=0x7f020034; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int backgroundTintMode=0x7f020035; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int barLength=0x7f020036; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int barrierAllowsGoneWidgets=0x7f020037; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
- */ - public static final int barrierDirection=0x7f020038; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int borderlessButtonStyle=0x7f020039; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarButtonStyle=0x7f02003a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarNegativeButtonStyle=0x7f02003b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarNeutralButtonStyle=0x7f02003c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarPositiveButtonStyle=0x7f02003d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonBarStyle=0x7f02003e; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
top30
- */ - public static final int buttonGravity=0x7f02003f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonPanelSideLayout=0x7f020040; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonStyle=0x7f020041; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int buttonStyleSmall=0x7f020042; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int buttonTint=0x7f020043; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int buttonTintMode=0x7f020044; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int chainUseRtl=0x7f020045; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int checkboxStyle=0x7f020046; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int checkedTextViewStyle=0x7f020047; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int closeIcon=0x7f020048; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int closeItemLayout=0x7f020049; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int collapseContentDescription=0x7f02004a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int collapseIcon=0x7f02004b; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int color=0x7f02004c; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorAccent=0x7f02004d; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorBackgroundFloating=0x7f02004e; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorButtonNormal=0x7f02004f; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorControlActivated=0x7f020050; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorControlHighlight=0x7f020051; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorControlNormal=0x7f020052; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorError=0x7f020053; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorPrimary=0x7f020054; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorPrimaryDark=0x7f020055; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int colorSwitchThumbNormal=0x7f020056; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int commitIcon=0x7f020057; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int constraintSet=0x7f020058; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int constraint_referenced_ids=0x7f020059; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int content=0x7f02005a; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int contentDescription=0x7f02005b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetEnd=0x7f02005c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetEndWithActions=0x7f02005d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetLeft=0x7f02005e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetRight=0x7f02005f; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetStart=0x7f020060; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int contentInsetStartWithNavigation=0x7f020061; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int controlBackground=0x7f020062; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int customNavigationLayout=0x7f020063; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int defaultQueryHint=0x7f020064; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int dialogPreferredPadding=0x7f020065; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dialogTheme=0x7f020066; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
- */ - public static final int displayOptions=0x7f020067; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int divider=0x7f020068; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dividerHorizontal=0x7f020069; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int dividerPadding=0x7f02006a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dividerVertical=0x7f02006b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int drawableSize=0x7f02006c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int drawerArrowStyle=0x7f02006d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int dropDownListViewStyle=0x7f02006e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int dropdownListPreferredItemHeight=0x7f02006f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int editTextBackground=0x7f020070; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int editTextColor=0x7f020071; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int editTextStyle=0x7f020072; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int elevation=0x7f020073; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
gone0
invisible1
- */ - public static final int emptyVisibility=0x7f020074; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int expandActivityOverflowButtonDrawable=0x7f020075; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int font=0x7f020076; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontFamily=0x7f020077; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontProviderAuthority=0x7f020078; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int fontProviderCerts=0x7f020079; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
async1
blocking0
- */ - public static final int fontProviderFetchStrategy=0x7f02007a; - /** - *

May be an integer value, such as "100". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
foreverffffffff
- */ - public static final int fontProviderFetchTimeout=0x7f02007b; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontProviderPackage=0x7f02007c; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int fontProviderQuery=0x7f02007d; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
italic1
normal0
- */ - public static final int fontStyle=0x7f02007e; - /** - *

May be an integer value, such as "100". - */ - public static final int fontWeight=0x7f02007f; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int gapBetweenBars=0x7f020080; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int goIcon=0x7f020081; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int height=0x7f020082; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int hideOnContentScroll=0x7f020083; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int homeAsUpIndicator=0x7f020084; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int homeLayout=0x7f020085; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int icon=0x7f020086; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int iconTint=0x7f020087; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int iconTintMode=0x7f020088; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int iconifiedByDefault=0x7f020089; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int imageButtonStyle=0x7f02008a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int indeterminateProgressStyle=0x7f02008b; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int initialActivityCount=0x7f02008c; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int isLightTheme=0x7f02008d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int itemPadding=0x7f02008e; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int layout=0x7f02008f; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int layout_constrainedHeight=0x7f020090; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int layout_constrainedWidth=0x7f020091; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintBaseline_creator=0x7f020092; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintBaseline_toBaselineOf=0x7f020093; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintBottom_creator=0x7f020094; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintBottom_toBottomOf=0x7f020095; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintBottom_toTopOf=0x7f020096; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int layout_constraintCircle=0x7f020097; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintCircleAngle=0x7f020098; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_constraintCircleRadius=0x7f020099; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int layout_constraintDimensionRatio=0x7f02009a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintEnd_toEndOf=0x7f02009b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintEnd_toStartOf=0x7f02009c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_constraintGuide_begin=0x7f02009d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_constraintGuide_end=0x7f02009e; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintGuide_percent=0x7f02009f; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- */ - public static final int layout_constraintHeight_default=0x7f0200a0; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintHeight_max=0x7f0200a1; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintHeight_min=0x7f0200a2; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintHeight_percent=0x7f0200a3; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintHorizontal_bias=0x7f0200a4; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- */ - public static final int layout_constraintHorizontal_chainStyle=0x7f0200a5; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintHorizontal_weight=0x7f0200a6; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintLeft_creator=0x7f0200a7; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintLeft_toLeftOf=0x7f0200a8; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintLeft_toRightOf=0x7f0200a9; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintRight_creator=0x7f0200aa; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintRight_toLeftOf=0x7f0200ab; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintRight_toRightOf=0x7f0200ac; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintStart_toEndOf=0x7f0200ad; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintStart_toStartOf=0x7f0200ae; - /** - *

May be an integer value, such as "100". - */ - public static final int layout_constraintTop_creator=0x7f0200af; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintTop_toBottomOf=0x7f0200b0; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- */ - public static final int layout_constraintTop_toTopOf=0x7f0200b1; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintVertical_bias=0x7f0200b2; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- */ - public static final int layout_constraintVertical_chainStyle=0x7f0200b3; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintVertical_weight=0x7f0200b4; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- */ - public static final int layout_constraintWidth_default=0x7f0200b5; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintWidth_max=0x7f0200b6; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- */ - public static final int layout_constraintWidth_min=0x7f0200b7; - /** - *

May be a floating point value, such as "1.2". - */ - public static final int layout_constraintWidth_percent=0x7f0200b8; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_editor_absoluteX=0x7f0200b9; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_editor_absoluteY=0x7f0200ba; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginBottom=0x7f0200bb; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginEnd=0x7f0200bc; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginLeft=0x7f0200bd; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginRight=0x7f0200be; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginStart=0x7f0200bf; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int layout_goneMarginTop=0x7f0200c0; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
barrier2
chains4
dimensions8
direct1for now only direct & barriers
none0
standard3
- */ - public static final int layout_optimizationLevel=0x7f0200c1; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listChoiceBackgroundIndicator=0x7f0200c2; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listDividerAlertDialog=0x7f0200c3; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listItemLayout=0x7f0200c4; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listLayout=0x7f0200c5; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listMenuViewStyle=0x7f0200c6; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int listPopupWindowStyle=0x7f0200c7; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemHeight=0x7f0200c8; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemHeightLarge=0x7f0200c9; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemHeightSmall=0x7f0200ca; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemPaddingLeft=0x7f0200cb; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int listPreferredItemPaddingRight=0x7f0200cc; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int logo=0x7f0200cd; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int logoDescription=0x7f0200ce; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int maxButtonHeight=0x7f0200cf; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int measureWithLargestChild=0x7f0200d0; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int multiChoiceItemLayout=0x7f0200d1; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int navigationContentDescription=0x7f0200d2; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int navigationIcon=0x7f0200d3; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
listMode1
normal0
tabMode2
- */ - public static final int navigationMode=0x7f0200d4; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- */ - public static final int numericModifiers=0x7f0200d5; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int overlapAnchor=0x7f0200d6; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingBottomNoButtons=0x7f0200d7; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingEnd=0x7f0200d8; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingStart=0x7f0200d9; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int paddingTopNoTitle=0x7f0200da; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int panelBackground=0x7f0200db; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int panelMenuListTheme=0x7f0200dc; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int panelMenuListWidth=0x7f0200dd; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int popupMenuStyle=0x7f0200de; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int popupTheme=0x7f0200df; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int popupWindowStyle=0x7f0200e0; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int preserveIconSpacing=0x7f0200e1; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int progressBarPadding=0x7f0200e2; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int progressBarStyle=0x7f0200e3; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int queryBackground=0x7f0200e4; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int queryHint=0x7f0200e5; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int radioButtonStyle=0x7f0200e6; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int ratingBarStyle=0x7f0200e7; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int ratingBarStyleIndicator=0x7f0200e8; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int ratingBarStyleSmall=0x7f0200e9; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int searchHintIcon=0x7f0200ea; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int searchIcon=0x7f0200eb; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int searchViewStyle=0x7f0200ec; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int seekBarStyle=0x7f0200ed; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int selectableItemBackground=0x7f0200ee; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int selectableItemBackgroundBorderless=0x7f0200ef; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
always2
collapseActionView8
ifRoom1
never0
withText4
- */ - public static final int showAsAction=0x7f0200f0; - /** - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
beginning1
end4
middle2
none0
- */ - public static final int showDividers=0x7f0200f1; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int showText=0x7f0200f2; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int showTitle=0x7f0200f3; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int singleChoiceItemLayout=0x7f0200f4; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int spinBars=0x7f0200f5; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int spinnerDropDownItemStyle=0x7f0200f6; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int spinnerStyle=0x7f0200f7; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int splitTrack=0x7f0200f8; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int srcCompat=0x7f0200f9; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int state_above_anchor=0x7f0200fa; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int subMenuArrow=0x7f0200fb; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int submitBackground=0x7f0200fc; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int subtitle=0x7f0200fd; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int subtitleTextAppearance=0x7f0200fe; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int subtitleTextColor=0x7f0200ff; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int subtitleTextStyle=0x7f020100; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int suggestionRowLayout=0x7f020101; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int switchMinWidth=0x7f020102; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int switchPadding=0x7f020103; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int switchStyle=0x7f020104; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int switchTextAppearance=0x7f020105; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int textAllCaps=0x7f020106; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceLargePopupMenu=0x7f020107; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceListItem=0x7f020108; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceListItemSecondary=0x7f020109; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceListItemSmall=0x7f02010a; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearancePopupMenuHeader=0x7f02010b; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceSearchResultSubtitle=0x7f02010c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceSearchResultTitle=0x7f02010d; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int textAppearanceSmallPopupMenu=0x7f02010e; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int textColorAlertDialogListItem=0x7f02010f; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int textColorSearchUrl=0x7f020110; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int theme=0x7f020111; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int thickness=0x7f020112; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int thumbTextPadding=0x7f020113; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int thumbTint=0x7f020114; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int thumbTintMode=0x7f020115; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int tickMark=0x7f020116; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int tickMarkTint=0x7f020117; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int tickMarkTintMode=0x7f020118; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int tint=0x7f020119; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int tintMode=0x7f02011a; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int title=0x7f02011b; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMargin=0x7f02011c; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginBottom=0x7f02011d; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginEnd=0x7f02011e; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginStart=0x7f02011f; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMarginTop=0x7f020120; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - */ - public static final int titleMargins=0x7f020121; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int titleTextAppearance=0x7f020122; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int titleTextColor=0x7f020123; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int titleTextStyle=0x7f020124; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int toolbarNavigationButtonStyle=0x7f020125; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int toolbarStyle=0x7f020126; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int tooltipForegroundColor=0x7f020127; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int tooltipFrameBackground=0x7f020128; - /** - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - */ - public static final int tooltipText=0x7f020129; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int track=0x7f02012a; - /** - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - */ - public static final int trackTint=0x7f02012b; - /** - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- */ - public static final int trackTintMode=0x7f02012c; - /** - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - */ - public static final int voiceIcon=0x7f02012d; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowActionBar=0x7f02012e; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowActionBarOverlay=0x7f02012f; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowActionModeOverlay=0x7f020130; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedHeightMajor=0x7f020131; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedHeightMinor=0x7f020132; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedWidthMajor=0x7f020133; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowFixedWidthMinor=0x7f020134; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowMinWidthMajor=0x7f020135; - /** - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - */ - public static final int windowMinWidthMinor=0x7f020136; - /** - *

May be a boolean value, such as "true" or - * "false". - */ - public static final int windowNoTitle=0x7f020137; - } - public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f030000; - public static final int abc_allow_stacked_button_bar=0x7f030001; - public static final int abc_config_actionMenuItemAllCaps=0x7f030002; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f030003; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f030004; - } - public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; - public static final int abc_background_cache_hint_selector_material_light=0x7f040001; - public static final int abc_btn_colored_borderless_text_material=0x7f040002; - public static final int abc_btn_colored_text_material=0x7f040003; - public static final int abc_color_highlight_material=0x7f040004; - public static final int abc_hint_foreground_material_dark=0x7f040005; - public static final int abc_hint_foreground_material_light=0x7f040006; - public static final int abc_input_method_navigation_guard=0x7f040007; - public static final int abc_primary_text_disable_only_material_dark=0x7f040008; - public static final int abc_primary_text_disable_only_material_light=0x7f040009; - public static final int abc_primary_text_material_dark=0x7f04000a; - public static final int abc_primary_text_material_light=0x7f04000b; - public static final int abc_search_url_text=0x7f04000c; - public static final int abc_search_url_text_normal=0x7f04000d; - public static final int abc_search_url_text_pressed=0x7f04000e; - public static final int abc_search_url_text_selected=0x7f04000f; - public static final int abc_secondary_text_material_dark=0x7f040010; - public static final int abc_secondary_text_material_light=0x7f040011; - public static final int abc_tint_btn_checkable=0x7f040012; - public static final int abc_tint_default=0x7f040013; - public static final int abc_tint_edittext=0x7f040014; - public static final int abc_tint_seek_thumb=0x7f040015; - public static final int abc_tint_spinner=0x7f040016; - public static final int abc_tint_switch_track=0x7f040017; - public static final int accent_material_dark=0x7f040018; - public static final int accent_material_light=0x7f040019; - public static final int background_floating_material_dark=0x7f04001a; - public static final int background_floating_material_light=0x7f04001b; - public static final int background_material_dark=0x7f04001c; - public static final int background_material_light=0x7f04001d; - public static final int bright_foreground_disabled_material_dark=0x7f04001e; - public static final int bright_foreground_disabled_material_light=0x7f04001f; - public static final int bright_foreground_inverse_material_dark=0x7f040020; - public static final int bright_foreground_inverse_material_light=0x7f040021; - public static final int bright_foreground_material_dark=0x7f040022; - public static final int bright_foreground_material_light=0x7f040023; - public static final int button_material_dark=0x7f040024; - public static final int button_material_light=0x7f040025; - public static final int colorAccent=0x7f040026; - public static final int colorPrimary=0x7f040027; - public static final int colorPrimaryDark=0x7f040028; - public static final int dim_foreground_disabled_material_dark=0x7f040029; - public static final int dim_foreground_disabled_material_light=0x7f04002a; - public static final int dim_foreground_material_dark=0x7f04002b; - public static final int dim_foreground_material_light=0x7f04002c; - public static final int error_color_material=0x7f04002d; - public static final int foreground_material_dark=0x7f04002e; - public static final int foreground_material_light=0x7f04002f; - public static final int highlighted_text_material_dark=0x7f040030; - public static final int highlighted_text_material_light=0x7f040031; - public static final int material_blue_grey_800=0x7f040032; - public static final int material_blue_grey_900=0x7f040033; - public static final int material_blue_grey_950=0x7f040034; - public static final int material_deep_teal_200=0x7f040035; - public static final int material_deep_teal_500=0x7f040036; - public static final int material_grey_100=0x7f040037; - public static final int material_grey_300=0x7f040038; - public static final int material_grey_50=0x7f040039; - public static final int material_grey_600=0x7f04003a; - public static final int material_grey_800=0x7f04003b; - public static final int material_grey_850=0x7f04003c; - public static final int material_grey_900=0x7f04003d; - public static final int notification_action_color_filter=0x7f04003e; - public static final int notification_icon_bg_color=0x7f04003f; - public static final int notification_material_background_media_default_color=0x7f040040; - public static final int primary_dark_material_dark=0x7f040041; - public static final int primary_dark_material_light=0x7f040042; - public static final int primary_material_dark=0x7f040043; - public static final int primary_material_light=0x7f040044; - public static final int primary_text_default_material_dark=0x7f040045; - public static final int primary_text_default_material_light=0x7f040046; - public static final int primary_text_disabled_material_dark=0x7f040047; - public static final int primary_text_disabled_material_light=0x7f040048; - public static final int ripple_material_dark=0x7f040049; - public static final int ripple_material_light=0x7f04004a; - public static final int secondary_text_default_material_dark=0x7f04004b; - public static final int secondary_text_default_material_light=0x7f04004c; - public static final int secondary_text_disabled_material_dark=0x7f04004d; - public static final int secondary_text_disabled_material_light=0x7f04004e; - public static final int switch_thumb_disabled_material_dark=0x7f04004f; - public static final int switch_thumb_disabled_material_light=0x7f040050; - public static final int switch_thumb_material_dark=0x7f040051; - public static final int switch_thumb_material_light=0x7f040052; - public static final int switch_thumb_normal_material_dark=0x7f040053; - public static final int switch_thumb_normal_material_light=0x7f040054; - public static final int tooltip_background_dark=0x7f040055; - public static final int tooltip_background_light=0x7f040056; - } - public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f050000; - public static final int abc_action_bar_content_inset_with_nav=0x7f050001; - public static final int abc_action_bar_default_height_material=0x7f050002; - public static final int abc_action_bar_default_padding_end_material=0x7f050003; - public static final int abc_action_bar_default_padding_start_material=0x7f050004; - public static final int abc_action_bar_elevation_material=0x7f050005; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; - public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; - public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; - public static final int abc_action_bar_progress_bar_size=0x7f050009; - public static final int abc_action_bar_stacked_max_height=0x7f05000a; - public static final int abc_action_bar_stacked_tab_max_width=0x7f05000b; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000c; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000d; - public static final int abc_action_button_min_height_material=0x7f05000e; - public static final int abc_action_button_min_width_material=0x7f05000f; - public static final int abc_action_button_min_width_overflow_material=0x7f050010; - public static final int abc_alert_dialog_button_bar_height=0x7f050011; - public static final int abc_button_inset_horizontal_material=0x7f050012; - public static final int abc_button_inset_vertical_material=0x7f050013; - public static final int abc_button_padding_horizontal_material=0x7f050014; - public static final int abc_button_padding_vertical_material=0x7f050015; - public static final int abc_cascading_menus_min_smallest_width=0x7f050016; - public static final int abc_config_prefDialogWidth=0x7f050017; - public static final int abc_control_corner_material=0x7f050018; - public static final int abc_control_inset_material=0x7f050019; - public static final int abc_control_padding_material=0x7f05001a; - public static final int abc_dialog_fixed_height_major=0x7f05001b; - public static final int abc_dialog_fixed_height_minor=0x7f05001c; - public static final int abc_dialog_fixed_width_major=0x7f05001d; - public static final int abc_dialog_fixed_width_minor=0x7f05001e; - public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f05001f; - public static final int abc_dialog_list_padding_top_no_title=0x7f050020; - public static final int abc_dialog_min_width_major=0x7f050021; - public static final int abc_dialog_min_width_minor=0x7f050022; - public static final int abc_dialog_padding_material=0x7f050023; - public static final int abc_dialog_padding_top_material=0x7f050024; - public static final int abc_dialog_title_divider_material=0x7f050025; - public static final int abc_disabled_alpha_material_dark=0x7f050026; - public static final int abc_disabled_alpha_material_light=0x7f050027; - public static final int abc_dropdownitem_icon_width=0x7f050028; - public static final int abc_dropdownitem_text_padding_left=0x7f050029; - public static final int abc_dropdownitem_text_padding_right=0x7f05002a; - public static final int abc_edit_text_inset_bottom_material=0x7f05002b; - public static final int abc_edit_text_inset_horizontal_material=0x7f05002c; - public static final int abc_edit_text_inset_top_material=0x7f05002d; - public static final int abc_floating_window_z=0x7f05002e; - public static final int abc_list_item_padding_horizontal_material=0x7f05002f; - public static final int abc_panel_menu_list_width=0x7f050030; - public static final int abc_progress_bar_height_material=0x7f050031; - public static final int abc_search_view_preferred_height=0x7f050032; - public static final int abc_search_view_preferred_width=0x7f050033; - public static final int abc_seekbar_track_background_height_material=0x7f050034; - public static final int abc_seekbar_track_progress_height_material=0x7f050035; - public static final int abc_select_dialog_padding_start_material=0x7f050036; - public static final int abc_switch_padding=0x7f050037; - public static final int abc_text_size_body_1_material=0x7f050038; - public static final int abc_text_size_body_2_material=0x7f050039; - public static final int abc_text_size_button_material=0x7f05003a; - public static final int abc_text_size_caption_material=0x7f05003b; - public static final int abc_text_size_display_1_material=0x7f05003c; - public static final int abc_text_size_display_2_material=0x7f05003d; - public static final int abc_text_size_display_3_material=0x7f05003e; - public static final int abc_text_size_display_4_material=0x7f05003f; - public static final int abc_text_size_headline_material=0x7f050040; - public static final int abc_text_size_large_material=0x7f050041; - public static final int abc_text_size_medium_material=0x7f050042; - public static final int abc_text_size_menu_header_material=0x7f050043; - public static final int abc_text_size_menu_material=0x7f050044; - public static final int abc_text_size_small_material=0x7f050045; - public static final int abc_text_size_subhead_material=0x7f050046; - public static final int abc_text_size_subtitle_material_toolbar=0x7f050047; - public static final int abc_text_size_title_material=0x7f050048; - public static final int abc_text_size_title_material_toolbar=0x7f050049; - public static final int compat_button_inset_horizontal_material=0x7f05004a; - public static final int compat_button_inset_vertical_material=0x7f05004b; - public static final int compat_button_padding_horizontal_material=0x7f05004c; - public static final int compat_button_padding_vertical_material=0x7f05004d; - public static final int compat_control_corner_material=0x7f05004e; - public static final int disabled_alpha_material_dark=0x7f05004f; - public static final int disabled_alpha_material_light=0x7f050050; - public static final int highlight_alpha_material_colored=0x7f050051; - public static final int highlight_alpha_material_dark=0x7f050052; - public static final int highlight_alpha_material_light=0x7f050053; - public static final int hint_alpha_material_dark=0x7f050054; - public static final int hint_alpha_material_light=0x7f050055; - public static final int hint_pressed_alpha_material_dark=0x7f050056; - public static final int hint_pressed_alpha_material_light=0x7f050057; - public static final int notification_action_icon_size=0x7f050058; - public static final int notification_action_text_size=0x7f050059; - public static final int notification_big_circle_margin=0x7f05005a; - public static final int notification_content_margin_start=0x7f05005b; - public static final int notification_large_icon_height=0x7f05005c; - public static final int notification_large_icon_width=0x7f05005d; - public static final int notification_main_column_padding_top=0x7f05005e; - public static final int notification_media_narrow_margin=0x7f05005f; - public static final int notification_right_icon_size=0x7f050060; - public static final int notification_right_side_padding_top=0x7f050061; - public static final int notification_small_icon_background_padding=0x7f050062; - public static final int notification_small_icon_size_as_large=0x7f050063; - public static final int notification_subtext_size=0x7f050064; - public static final int notification_top_pad=0x7f050065; - public static final int notification_top_pad_large_text=0x7f050066; - public static final int tooltip_corner_radius=0x7f050067; - public static final int tooltip_horizontal_padding=0x7f050068; - public static final int tooltip_margin=0x7f050069; - public static final int tooltip_precise_anchor_extra_offset=0x7f05006a; - public static final int tooltip_precise_anchor_threshold=0x7f05006b; - public static final int tooltip_vertical_padding=0x7f05006c; - public static final int tooltip_y_offset_non_touch=0x7f05006d; - public static final int tooltip_y_offset_touch=0x7f05006e; - } - public static final class drawable { - public static final int abc_ab_share_pack_mtrl_alpha=0x7f060001; - public static final int abc_action_bar_item_background_material=0x7f060002; - public static final int abc_btn_borderless_material=0x7f060003; - public static final int abc_btn_check_material=0x7f060004; - public static final int abc_btn_check_to_on_mtrl_000=0x7f060005; - public static final int abc_btn_check_to_on_mtrl_015=0x7f060006; - public static final int abc_btn_colored_material=0x7f060007; - public static final int abc_btn_default_mtrl_shape=0x7f060008; - public static final int abc_btn_radio_material=0x7f060009; - public static final int abc_btn_radio_to_on_mtrl_000=0x7f06000a; - public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000b; - public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000c; - public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000d; - public static final int abc_cab_background_internal_bg=0x7f06000e; - public static final int abc_cab_background_top_material=0x7f06000f; - public static final int abc_cab_background_top_mtrl_alpha=0x7f060010; - public static final int abc_control_background_material=0x7f060011; - public static final int abc_dialog_material_background=0x7f060012; - public static final int abc_edit_text_material=0x7f060013; - public static final int abc_ic_ab_back_material=0x7f060014; - public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060015; - public static final int abc_ic_clear_material=0x7f060016; - public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060017; - public static final int abc_ic_go_search_api_material=0x7f060018; - public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060019; - public static final int abc_ic_menu_cut_mtrl_alpha=0x7f06001a; - public static final int abc_ic_menu_overflow_material=0x7f06001b; - public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001c; - public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001d; - public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001e; - public static final int abc_ic_search_api_material=0x7f06001f; - public static final int abc_ic_star_black_16dp=0x7f060020; - public static final int abc_ic_star_black_36dp=0x7f060021; - public static final int abc_ic_star_black_48dp=0x7f060022; - public static final int abc_ic_star_half_black_16dp=0x7f060023; - public static final int abc_ic_star_half_black_36dp=0x7f060024; - public static final int abc_ic_star_half_black_48dp=0x7f060025; - public static final int abc_ic_voice_search_api_material=0x7f060026; - public static final int abc_item_background_holo_dark=0x7f060027; - public static final int abc_item_background_holo_light=0x7f060028; - public static final int abc_list_divider_mtrl_alpha=0x7f060029; - public static final int abc_list_focused_holo=0x7f06002a; - public static final int abc_list_longpressed_holo=0x7f06002b; - public static final int abc_list_pressed_holo_dark=0x7f06002c; - public static final int abc_list_pressed_holo_light=0x7f06002d; - public static final int abc_list_selector_background_transition_holo_dark=0x7f06002e; - public static final int abc_list_selector_background_transition_holo_light=0x7f06002f; - public static final int abc_list_selector_disabled_holo_dark=0x7f060030; - public static final int abc_list_selector_disabled_holo_light=0x7f060031; - public static final int abc_list_selector_holo_dark=0x7f060032; - public static final int abc_list_selector_holo_light=0x7f060033; - public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060034; - public static final int abc_popup_background_mtrl_mult=0x7f060035; - public static final int abc_ratingbar_indicator_material=0x7f060036; - public static final int abc_ratingbar_material=0x7f060037; - public static final int abc_ratingbar_small_material=0x7f060038; - public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060039; - public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f06003a; - public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003b; - public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003c; - public static final int abc_scrubber_track_mtrl_alpha=0x7f06003d; - public static final int abc_seekbar_thumb_material=0x7f06003e; - public static final int abc_seekbar_tick_mark_material=0x7f06003f; - public static final int abc_seekbar_track_material=0x7f060040; - public static final int abc_spinner_mtrl_am_alpha=0x7f060041; - public static final int abc_spinner_textfield_background_material=0x7f060042; - public static final int abc_switch_thumb_material=0x7f060043; - public static final int abc_switch_track_mtrl_alpha=0x7f060044; - public static final int abc_tab_indicator_material=0x7f060045; - public static final int abc_tab_indicator_mtrl_alpha=0x7f060046; - public static final int abc_text_cursor_material=0x7f060047; - public static final int abc_text_select_handle_left_mtrl_dark=0x7f060048; - public static final int abc_text_select_handle_left_mtrl_light=0x7f060049; - public static final int abc_text_select_handle_middle_mtrl_dark=0x7f06004a; - public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004b; - public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004c; - public static final int abc_text_select_handle_right_mtrl_light=0x7f06004d; - public static final int abc_textfield_activated_mtrl_alpha=0x7f06004e; - public static final int abc_textfield_default_mtrl_alpha=0x7f06004f; - public static final int abc_textfield_search_activated_mtrl_alpha=0x7f060050; - public static final int abc_textfield_search_default_mtrl_alpha=0x7f060051; - public static final int abc_textfield_search_material=0x7f060052; - public static final int abc_vector_test=0x7f060053; - public static final int ic_launcher_background=0x7f060054; - public static final int ic_launcher_foreground=0x7f060055; - public static final int notification_action_background=0x7f060056; - public static final int notification_bg=0x7f060057; - public static final int notification_bg_low=0x7f060058; - public static final int notification_bg_low_normal=0x7f060059; - public static final int notification_bg_low_pressed=0x7f06005a; - public static final int notification_bg_normal=0x7f06005b; - public static final int notification_bg_normal_pressed=0x7f06005c; - public static final int notification_icon_background=0x7f06005d; - public static final int notification_template_icon_bg=0x7f06005e; - public static final int notification_template_icon_low_bg=0x7f06005f; - public static final int notification_tile_bg=0x7f060060; - public static final int notify_panel_notification_icon_bg=0x7f060061; - public static final int tooltip_frame_dark=0x7f060062; - public static final int tooltip_frame_light=0x7f060063; - } - public static final class id { - public static final int ALT=0x7f070000; - public static final int CTRL=0x7f070001; - public static final int FUNCTION=0x7f070002; - public static final int META=0x7f070003; - public static final int SHIFT=0x7f070004; - public static final int SYM=0x7f070005; - public static final int action0=0x7f070006; - public static final int action_bar=0x7f070007; - public static final int action_bar_activity_content=0x7f070008; - public static final int action_bar_container=0x7f070009; - public static final int action_bar_root=0x7f07000a; - public static final int action_bar_spinner=0x7f07000b; - public static final int action_bar_subtitle=0x7f07000c; - public static final int action_bar_title=0x7f07000d; - public static final int action_container=0x7f07000e; - public static final int action_context_bar=0x7f07000f; - public static final int action_divider=0x7f070010; - public static final int action_image=0x7f070011; - public static final int action_menu_divider=0x7f070012; - public static final int action_menu_presenter=0x7f070013; - public static final int action_mode_bar=0x7f070014; - public static final int action_mode_bar_stub=0x7f070015; - public static final int action_mode_close_button=0x7f070016; - public static final int action_text=0x7f070017; - public static final int actions=0x7f070018; - public static final int activity_chooser_view_content=0x7f070019; - public static final int activity_main=0x7f07001a; - public static final int add=0x7f07001b; - public static final int alertTitle=0x7f07001c; - public static final int always=0x7f07001d; - public static final int async=0x7f07001e; - public static final int barrier=0x7f07001f; - public static final int beginning=0x7f070020; - public static final int blocking=0x7f070021; - public static final int bottom=0x7f070022; - public static final int button=0x7f070023; - public static final int buttonPanel=0x7f070024; - public static final int cancel_action=0x7f070025; - public static final int chains=0x7f070026; - public static final int checkbox=0x7f070027; - public static final int chronometer=0x7f070028; - public static final int collapseActionView=0x7f070029; - public static final int contentPanel=0x7f07002a; - public static final int custom=0x7f07002b; - public static final int customPanel=0x7f07002c; - public static final int decor_content_parent=0x7f07002d; - public static final int default_activity_button=0x7f07002e; - public static final int dimensions=0x7f07002f; - public static final int direct=0x7f070030; - public static final int disableHome=0x7f070031; - public static final int edit_query=0x7f070032; - public static final int end=0x7f070033; - public static final int end_padder=0x7f070034; - public static final int expand_activities_button=0x7f070035; - public static final int expanded_menu=0x7f070036; - public static final int forever=0x7f070037; - public static final int gone=0x7f070038; - public static final int home=0x7f070039; - public static final int homeAsUp=0x7f07003a; - public static final int icon=0x7f07003b; - public static final int icon_group=0x7f07003c; - public static final int ifRoom=0x7f07003d; - public static final int image=0x7f07003e; - public static final int info=0x7f07003f; - public static final int invisible=0x7f070040; - public static final int italic=0x7f070041; - public static final int left=0x7f070042; - public static final int line1=0x7f070043; - public static final int line3=0x7f070044; - public static final int listMode=0x7f070045; - public static final int list_item=0x7f070046; - public static final int media_actions=0x7f070047; - public static final int message=0x7f070048; - public static final int middle=0x7f070049; - public static final int multiply=0x7f07004a; - public static final int never=0x7f07004b; - public static final int none=0x7f07004c; - public static final int normal=0x7f07004d; - public static final int notification_background=0x7f07004e; - public static final int notification_main_column=0x7f07004f; - public static final int notification_main_column_container=0x7f070050; - public static final int packed=0x7f070051; - public static final int parent=0x7f070052; - public static final int parentPanel=0x7f070053; - public static final int percent=0x7f070054; - public static final int progress_circular=0x7f070055; - public static final int progress_horizontal=0x7f070056; - public static final int radio=0x7f070057; - public static final int right=0x7f070058; - public static final int right_icon=0x7f070059; - public static final int right_side=0x7f07005a; - public static final int screen=0x7f07005b; - public static final int scrollIndicatorDown=0x7f07005c; - public static final int scrollIndicatorUp=0x7f07005d; - public static final int scrollView=0x7f07005e; - public static final int search_badge=0x7f07005f; - public static final int search_bar=0x7f070060; - public static final int search_button=0x7f070061; - public static final int search_close_btn=0x7f070062; - public static final int search_edit_frame=0x7f070063; - public static final int search_go_btn=0x7f070064; - public static final int search_mag_icon=0x7f070065; - public static final int search_plate=0x7f070066; - public static final int search_src_text=0x7f070067; - public static final int search_voice_btn=0x7f070068; - public static final int select_dialog_listview=0x7f070069; - public static final int shortcut=0x7f07006a; - public static final int showCustom=0x7f07006b; - public static final int showHome=0x7f07006c; - public static final int showTitle=0x7f07006d; - public static final int spacer=0x7f07006e; - public static final int split_action_bar=0x7f07006f; - public static final int spread=0x7f070070; - public static final int spread_inside=0x7f070071; - public static final int src_atop=0x7f070072; - public static final int src_in=0x7f070073; - public static final int src_over=0x7f070074; - public static final int standard=0x7f070075; - public static final int start=0x7f070076; - public static final int status_bar_latest_event_content=0x7f070077; - public static final int submenuarrow=0x7f070078; - public static final int submit_area=0x7f070079; - public static final int tabMode=0x7f07007a; - public static final int text=0x7f07007b; - public static final int text2=0x7f07007c; - public static final int textSpacerNoButtons=0x7f07007d; - public static final int textSpacerNoTitle=0x7f07007e; - public static final int textView=0x7f07007f; - public static final int time=0x7f070080; - public static final int title=0x7f070081; - public static final int titleDividerNoCustom=0x7f070082; - public static final int title_template=0x7f070083; - public static final int top=0x7f070084; - public static final int topPanel=0x7f070085; - public static final int uniform=0x7f070086; - public static final int up=0x7f070087; - public static final int useLogo=0x7f070088; - public static final int withText=0x7f070089; - public static final int wrap=0x7f07008a; - public static final int wrap_content=0x7f07008b; - } - public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f080000; - public static final int abc_config_activityShortDur=0x7f080001; - public static final int cancel_button_image_alpha=0x7f080002; - public static final int config_tooltipAnimTime=0x7f080003; - public static final int status_bar_notification_info_maxnum=0x7f080004; - } - public static final class layout { - public static final int abc_action_bar_title_item=0x7f090000; - public static final int abc_action_bar_up_container=0x7f090001; - public static final int abc_action_bar_view_list_nav_layout=0x7f090002; - public static final int abc_action_menu_item_layout=0x7f090003; - public static final int abc_action_menu_layout=0x7f090004; - public static final int abc_action_mode_bar=0x7f090005; - public static final int abc_action_mode_close_item_material=0x7f090006; - public static final int abc_activity_chooser_view=0x7f090007; - public static final int abc_activity_chooser_view_list_item=0x7f090008; - public static final int abc_alert_dialog_button_bar_material=0x7f090009; - public static final int abc_alert_dialog_material=0x7f09000a; - public static final int abc_alert_dialog_title_material=0x7f09000b; - public static final int abc_dialog_title_material=0x7f09000c; - public static final int abc_expanded_menu_layout=0x7f09000d; - public static final int abc_list_menu_item_checkbox=0x7f09000e; - public static final int abc_list_menu_item_icon=0x7f09000f; - public static final int abc_list_menu_item_layout=0x7f090010; - public static final int abc_list_menu_item_radio=0x7f090011; - public static final int abc_popup_menu_header_item_layout=0x7f090012; - public static final int abc_popup_menu_item_layout=0x7f090013; - public static final int abc_screen_content_include=0x7f090014; - public static final int abc_screen_simple=0x7f090015; - public static final int abc_screen_simple_overlay_action_mode=0x7f090016; - public static final int abc_screen_toolbar=0x7f090017; - public static final int abc_search_dropdown_item_icons_2line=0x7f090018; - public static final int abc_search_view=0x7f090019; - public static final int abc_select_dialog_material=0x7f09001a; - public static final int activity_home=0x7f09001b; - public static final int activity_main=0x7f09001c; - public static final int notification_action=0x7f09001d; - public static final int notification_action_tombstone=0x7f09001e; - public static final int notification_media_action=0x7f09001f; - public static final int notification_media_cancel_action=0x7f090020; - public static final int notification_template_big_media=0x7f090021; - public static final int notification_template_big_media_custom=0x7f090022; - public static final int notification_template_big_media_narrow=0x7f090023; - public static final int notification_template_big_media_narrow_custom=0x7f090024; - public static final int notification_template_custom_big=0x7f090025; - public static final int notification_template_icon_group=0x7f090026; - public static final int notification_template_lines_media=0x7f090027; - public static final int notification_template_media=0x7f090028; - public static final int notification_template_media_custom=0x7f090029; - public static final int notification_template_part_chronometer=0x7f09002a; - public static final int notification_template_part_time=0x7f09002b; - public static final int select_dialog_item_material=0x7f09002c; - public static final int select_dialog_multichoice_material=0x7f09002d; - public static final int select_dialog_singlechoice_material=0x7f09002e; - public static final int support_simple_spinner_dropdown_item=0x7f09002f; - public static final int tooltip=0x7f090030; - } - public static final class mipmap { - public static final int ic_launcher=0x7f0a0000; - public static final int ic_launcher_round=0x7f0a0001; - } - public static final class string { - public static final int abc_action_bar_home_description=0x7f0b0000; - public static final int abc_action_bar_home_description_format=0x7f0b0001; - public static final int abc_action_bar_home_subtitle_description_format=0x7f0b0002; - public static final int abc_action_bar_up_description=0x7f0b0003; - public static final int abc_action_menu_overflow_description=0x7f0b0004; - public static final int abc_action_mode_done=0x7f0b0005; - public static final int abc_activity_chooser_view_see_all=0x7f0b0006; - public static final int abc_activitychooserview_choose_application=0x7f0b0007; - public static final int abc_capital_off=0x7f0b0008; - public static final int abc_capital_on=0x7f0b0009; - public static final int abc_font_family_body_1_material=0x7f0b000a; - public static final int abc_font_family_body_2_material=0x7f0b000b; - public static final int abc_font_family_button_material=0x7f0b000c; - public static final int abc_font_family_caption_material=0x7f0b000d; - public static final int abc_font_family_display_1_material=0x7f0b000e; - public static final int abc_font_family_display_2_material=0x7f0b000f; - public static final int abc_font_family_display_3_material=0x7f0b0010; - public static final int abc_font_family_display_4_material=0x7f0b0011; - public static final int abc_font_family_headline_material=0x7f0b0012; - public static final int abc_font_family_menu_material=0x7f0b0013; - public static final int abc_font_family_subhead_material=0x7f0b0014; - public static final int abc_font_family_title_material=0x7f0b0015; - public static final int abc_search_hint=0x7f0b0016; - public static final int abc_searchview_description_clear=0x7f0b0017; - public static final int abc_searchview_description_query=0x7f0b0018; - public static final int abc_searchview_description_search=0x7f0b0019; - public static final int abc_searchview_description_submit=0x7f0b001a; - public static final int abc_searchview_description_voice=0x7f0b001b; - public static final int abc_shareactionprovider_share_with=0x7f0b001c; - public static final int abc_shareactionprovider_share_with_application=0x7f0b001d; - public static final int abc_toolbar_collapse_description=0x7f0b001e; - public static final int app_name=0x7f0b001f; - public static final int search_menu_title=0x7f0b0020; - public static final int status_bar_notification_info_overflow=0x7f0b0021; - } - public static final class style { - public static final int AlertDialog_AppCompat=0x7f0c0000; - public static final int AlertDialog_AppCompat_Light=0x7f0c0001; - public static final int Animation_AppCompat_Dialog=0x7f0c0002; - public static final int Animation_AppCompat_DropDownUp=0x7f0c0003; - public static final int Animation_AppCompat_Tooltip=0x7f0c0004; - public static final int AppTheme=0x7f0c0005; - public static final int Base_AlertDialog_AppCompat=0x7f0c0006; - public static final int Base_AlertDialog_AppCompat_Light=0x7f0c0007; - public static final int Base_Animation_AppCompat_Dialog=0x7f0c0008; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c0009; - public static final int Base_Animation_AppCompat_Tooltip=0x7f0c000a; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c000c; - public static final int Base_DialogWindowTitle_AppCompat=0x7f0c000b; - public static final int Base_TextAppearance_AppCompat=0x7f0c000d; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c000e; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c000f; - public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0010; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c0011; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c0012; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c0013; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c0014; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c0015; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0016; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c0017; - public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0018; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c0019; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c001a; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c001b; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c001c; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001d; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c001e; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c001f; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0020; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0021; - public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0022; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c0023; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0024; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c0025; - public static final int Base_TextAppearance_AppCompat_Title=0x7f0c0026; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c0027; - public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c0028; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0029; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c002a; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c002b; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c002c; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c002d; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c002e; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c002f; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0030; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c0031; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c0032; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0033; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0034; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0035; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0036; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0037; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0038; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0039; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c003a; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c003b; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c003c; - public static final int Base_ThemeOverlay_AppCompat=0x7f0c004b; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c004c; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c004d; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c004e; - public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c004f; - public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0050; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c0051; - public static final int Base_Theme_AppCompat=0x7f0c003d; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c003e; - public static final int Base_Theme_AppCompat_Dialog=0x7f0c003f; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0043; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0040; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c0041; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0042; - public static final int Base_Theme_AppCompat_Light=0x7f0c0044; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c0045; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0046; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c004a; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0047; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c0048; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0049; - public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0c0054; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0c0052; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c0053; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0c0055; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f0c0056; - public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c005b; - public static final int Base_V21_Theme_AppCompat=0x7f0c0057; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c0058; - public static final int Base_V21_Theme_AppCompat_Light=0x7f0c0059; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c005a; - public static final int Base_V22_Theme_AppCompat=0x7f0c005c; - public static final int Base_V22_Theme_AppCompat_Light=0x7f0c005d; - public static final int Base_V23_Theme_AppCompat=0x7f0c005e; - public static final int Base_V23_Theme_AppCompat_Light=0x7f0c005f; - public static final int Base_V26_Theme_AppCompat=0x7f0c0060; - public static final int Base_V26_Theme_AppCompat_Light=0x7f0c0061; - public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c0062; - public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c0067; - public static final int Base_V7_Theme_AppCompat=0x7f0c0063; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c0064; - public static final int Base_V7_Theme_AppCompat_Light=0x7f0c0065; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c0066; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c0068; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c0069; - public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c006a; - public static final int Base_Widget_AppCompat_ActionBar=0x7f0c006b; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c006c; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c006d; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c006e; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c006f; - public static final int Base_Widget_AppCompat_ActionButton=0x7f0c0070; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c0071; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0072; - public static final int Base_Widget_AppCompat_ActionMode=0x7f0c0073; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c0074; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0075; - public static final int Base_Widget_AppCompat_Button=0x7f0c0076; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f0c007c; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c007d; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0077; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0078; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0079; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c007a; - public static final int Base_Widget_AppCompat_Button_Small=0x7f0c007b; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007e; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007f; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c0080; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c0081; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c0082; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c0083; - public static final int Base_Widget_AppCompat_EditText=0x7f0c0084; - public static final int Base_Widget_AppCompat_ImageButton=0x7f0c0085; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c0086; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0087; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0088; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0089; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c008a; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c008b; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c008c; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c008d; - public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c008e; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c008f; - public static final int Base_Widget_AppCompat_ListView=0x7f0c0090; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0091; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c0092; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0093; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0094; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c0095; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c0096; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0097; - public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0098; - public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c0099; - public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c009a; - public static final int Base_Widget_AppCompat_SearchView=0x7f0c009b; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c009c; - public static final int Base_Widget_AppCompat_SeekBar=0x7f0c009d; - public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c009e; - public static final int Base_Widget_AppCompat_Spinner=0x7f0c009f; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c00a0; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c00a1; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0c00a2; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c00a3; - public static final int Platform_AppCompat=0x7f0c00a4; - public static final int Platform_AppCompat_Light=0x7f0c00a5; - public static final int Platform_ThemeOverlay_AppCompat=0x7f0c00a6; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c00a7; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c00a8; - public static final int Platform_V11_AppCompat=0x7f0c00a9; - public static final int Platform_V11_AppCompat_Light=0x7f0c00aa; - public static final int Platform_V14_AppCompat=0x7f0c00ab; - public static final int Platform_V14_AppCompat_Light=0x7f0c00ac; - public static final int Platform_V21_AppCompat=0x7f0c00ad; - public static final int Platform_V21_AppCompat_Light=0x7f0c00ae; - public static final int Platform_V25_AppCompat=0x7f0c00af; - public static final int Platform_V25_AppCompat_Light=0x7f0c00b0; - public static final int Platform_Widget_AppCompat_Spinner=0x7f0c00b1; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c00b2; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c00b3; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c00b4; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c00b5; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c00b6; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c00b7; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c00bd; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c00b8; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c00b9; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c00ba; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c00bb; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c00bc; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c00be; - public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c00bf; - public static final int TextAppearance_AppCompat=0x7f0c00c0; - public static final int TextAppearance_AppCompat_Body1=0x7f0c00c1; - public static final int TextAppearance_AppCompat_Body2=0x7f0c00c2; - public static final int TextAppearance_AppCompat_Button=0x7f0c00c3; - public static final int TextAppearance_AppCompat_Caption=0x7f0c00c4; - public static final int TextAppearance_AppCompat_Display1=0x7f0c00c5; - public static final int TextAppearance_AppCompat_Display2=0x7f0c00c6; - public static final int TextAppearance_AppCompat_Display3=0x7f0c00c7; - public static final int TextAppearance_AppCompat_Display4=0x7f0c00c8; - public static final int TextAppearance_AppCompat_Headline=0x7f0c00c9; - public static final int TextAppearance_AppCompat_Inverse=0x7f0c00ca; - public static final int TextAppearance_AppCompat_Large=0x7f0c00cb; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00cc; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00cd; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00ce; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00cf; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00d0; - public static final int TextAppearance_AppCompat_Medium=0x7f0c00d1; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00d2; - public static final int TextAppearance_AppCompat_Menu=0x7f0c00d3; - public static final int TextAppearance_AppCompat_Notification=0x7f0c00d4; - public static final int TextAppearance_AppCompat_Notification_Info=0x7f0c00d5; - public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0c00d6; - public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0c00d7; - public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0c00d8; - public static final int TextAppearance_AppCompat_Notification_Media=0x7f0c00d9; - public static final int TextAppearance_AppCompat_Notification_Time=0x7f0c00da; - public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0c00db; - public static final int TextAppearance_AppCompat_Notification_Title=0x7f0c00dc; - public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0c00dd; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00de; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00df; - public static final int TextAppearance_AppCompat_Small=0x7f0c00e0; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00e1; - public static final int TextAppearance_AppCompat_Subhead=0x7f0c00e2; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00e3; - public static final int TextAppearance_AppCompat_Title=0x7f0c00e4; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00e5; - public static final int TextAppearance_AppCompat_Tooltip=0x7f0c00e6; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00e7; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00e8; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00e9; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00ea; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00eb; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00ec; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00ed; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00ee; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00ef; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00f0; - public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00f1; - public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00f2; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00f3; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00f4; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c00f5; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c00f6; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c00f7; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c00f8; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c00f9; - public static final int TextAppearance_Compat_Notification=0x7f0c00fa; - public static final int TextAppearance_Compat_Notification_Info=0x7f0c00fb; - public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0c00fc; - public static final int TextAppearance_Compat_Notification_Line2=0x7f0c00fd; - public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0c00fe; - public static final int TextAppearance_Compat_Notification_Media=0x7f0c00ff; - public static final int TextAppearance_Compat_Notification_Time=0x7f0c0100; - public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0c0101; - public static final int TextAppearance_Compat_Notification_Title=0x7f0c0102; - public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0c0103; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0104; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0105; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0106; - public static final int ThemeOverlay_AppCompat=0x7f0c011c; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c011d; - public static final int ThemeOverlay_AppCompat_Dark=0x7f0c011e; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c011f; - public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c0120; - public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0121; - public static final int ThemeOverlay_AppCompat_Light=0x7f0c0122; - public static final int Theme_AppCompat=0x7f0c0107; - public static final int Theme_AppCompat_CompactMenu=0x7f0c0108; - public static final int Theme_AppCompat_DayNight=0x7f0c0109; - public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c010a; - public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c010b; - public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c010e; - public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c010c; - public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c010d; - public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c010f; - public static final int Theme_AppCompat_Dialog=0x7f0c0110; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c0113; - public static final int Theme_AppCompat_Dialog_Alert=0x7f0c0111; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c0112; - public static final int Theme_AppCompat_Light=0x7f0c0114; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c0115; - public static final int Theme_AppCompat_Light_Dialog=0x7f0c0116; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0119; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0117; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0118; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c011a; - public static final int Theme_AppCompat_NoActionBar=0x7f0c011b; - public static final int Widget_AppCompat_ActionBar=0x7f0c0123; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c0124; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c0125; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0126; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c0127; - public static final int Widget_AppCompat_ActionButton=0x7f0c0128; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0129; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c012a; - public static final int Widget_AppCompat_ActionMode=0x7f0c012b; - public static final int Widget_AppCompat_ActivityChooserView=0x7f0c012c; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c012d; - public static final int Widget_AppCompat_Button=0x7f0c012e; - public static final int Widget_AppCompat_ButtonBar=0x7f0c0134; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c0135; - public static final int Widget_AppCompat_Button_Borderless=0x7f0c012f; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c0130; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0131; - public static final int Widget_AppCompat_Button_Colored=0x7f0c0132; - public static final int Widget_AppCompat_Button_Small=0x7f0c0133; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0136; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0137; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0138; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0139; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c013a; - public static final int Widget_AppCompat_EditText=0x7f0c013b; - public static final int Widget_AppCompat_ImageButton=0x7f0c013c; - public static final int Widget_AppCompat_Light_ActionBar=0x7f0c013d; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c013e; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c013f; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0140; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c0141; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0142; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0143; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0144; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c0145; - public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0146; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0147; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0148; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0149; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c014a; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c014b; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c014c; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c014d; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c014e; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c014f; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0150; - public static final int Widget_AppCompat_Light_SearchView=0x7f0c0151; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c0152; - public static final int Widget_AppCompat_ListMenuView=0x7f0c0153; - public static final int Widget_AppCompat_ListPopupWindow=0x7f0c0154; - public static final int Widget_AppCompat_ListView=0x7f0c0155; - public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0156; - public static final int Widget_AppCompat_ListView_Menu=0x7f0c0157; - public static final int Widget_AppCompat_PopupMenu=0x7f0c0158; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0159; - public static final int Widget_AppCompat_PopupWindow=0x7f0c015a; - public static final int Widget_AppCompat_ProgressBar=0x7f0c015b; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c015c; - public static final int Widget_AppCompat_RatingBar=0x7f0c015d; - public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c015e; - public static final int Widget_AppCompat_RatingBar_Small=0x7f0c015f; - public static final int Widget_AppCompat_SearchView=0x7f0c0160; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c0161; - public static final int Widget_AppCompat_SeekBar=0x7f0c0162; - public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c0163; - public static final int Widget_AppCompat_Spinner=0x7f0c0164; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c0165; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0166; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c0167; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0168; - public static final int Widget_AppCompat_Toolbar=0x7f0c0169; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c016a; - public static final int Widget_Compat_NotificationActionContainer=0x7f0c016b; - public static final int Widget_Compat_NotificationActionText=0x7f0c016c; - } - public static final class styleable { - /** - * Attributes that can be used with a ActionBar. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ActionBar_background com.gaolei.retrofitdemo:background}
{@link #ActionBar_backgroundSplit com.gaolei.retrofitdemo:backgroundSplit}
{@link #ActionBar_backgroundStacked com.gaolei.retrofitdemo:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.gaolei.retrofitdemo:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions com.gaolei.retrofitdemo:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft com.gaolei.retrofitdemo:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.gaolei.retrofitdemo:contentInsetRight}
{@link #ActionBar_contentInsetStart com.gaolei.retrofitdemo:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation com.gaolei.retrofitdemo:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout com.gaolei.retrofitdemo:customNavigationLayout}
{@link #ActionBar_displayOptions com.gaolei.retrofitdemo:displayOptions}
{@link #ActionBar_divider com.gaolei.retrofitdemo:divider}
{@link #ActionBar_elevation com.gaolei.retrofitdemo:elevation}
{@link #ActionBar_height com.gaolei.retrofitdemo:height}
{@link #ActionBar_hideOnContentScroll com.gaolei.retrofitdemo:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.gaolei.retrofitdemo:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.gaolei.retrofitdemo:homeLayout}
{@link #ActionBar_icon com.gaolei.retrofitdemo:icon}
{@link #ActionBar_indeterminateProgressStyle com.gaolei.retrofitdemo:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.gaolei.retrofitdemo:itemPadding}
{@link #ActionBar_logo com.gaolei.retrofitdemo:logo}
{@link #ActionBar_navigationMode com.gaolei.retrofitdemo:navigationMode}
{@link #ActionBar_popupTheme com.gaolei.retrofitdemo:popupTheme}
{@link #ActionBar_progressBarPadding com.gaolei.retrofitdemo:progressBarPadding}
{@link #ActionBar_progressBarStyle com.gaolei.retrofitdemo:progressBarStyle}
{@link #ActionBar_subtitle com.gaolei.retrofitdemo:subtitle}
{@link #ActionBar_subtitleTextStyle com.gaolei.retrofitdemo:subtitleTextStyle}
{@link #ActionBar_title com.gaolei.retrofitdemo:title}
{@link #ActionBar_titleTextStyle com.gaolei.retrofitdemo:titleTextStyle}
- * @see #ActionBar_background - * @see #ActionBar_backgroundSplit - * @see #ActionBar_backgroundStacked - * @see #ActionBar_contentInsetEnd - * @see #ActionBar_contentInsetEndWithActions - * @see #ActionBar_contentInsetLeft - * @see #ActionBar_contentInsetRight - * @see #ActionBar_contentInsetStart - * @see #ActionBar_contentInsetStartWithNavigation - * @see #ActionBar_customNavigationLayout - * @see #ActionBar_displayOptions - * @see #ActionBar_divider - * @see #ActionBar_elevation - * @see #ActionBar_height - * @see #ActionBar_hideOnContentScroll - * @see #ActionBar_homeAsUpIndicator - * @see #ActionBar_homeLayout - * @see #ActionBar_icon - * @see #ActionBar_indeterminateProgressStyle - * @see #ActionBar_itemPadding - * @see #ActionBar_logo - * @see #ActionBar_navigationMode - * @see #ActionBar_popupTheme - * @see #ActionBar_progressBarPadding - * @see #ActionBar_progressBarStyle - * @see #ActionBar_subtitle - * @see #ActionBar_subtitleTextStyle - * @see #ActionBar_title - * @see #ActionBar_titleTextStyle - */ - public static final int[] ActionBar={ - 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, - 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, - 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, - 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, - 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, - 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, - 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, - 0x7f020124 - }; - /** - * Attributes that can be used with a ActionBarLayout. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
- * @see #ActionBarLayout_android_layout_gravity - */ - public static final int[] ActionBarLayout={ - 0x010100b3 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_gravity} - * attribute's value can be found in the {@link #ActionBarLayout} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:layout_gravity - */ - public static final int ActionBarLayout_android_layout_gravity=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#background} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:background - */ - public static final int ActionBar_background=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#backgroundSplit} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:backgroundSplit - */ - public static final int ActionBar_backgroundSplit=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#backgroundStacked} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:backgroundStacked - */ - public static final int ActionBar_backgroundStacked=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetEnd} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetEnd - */ - public static final int ActionBar_contentInsetEnd=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetEndWithActions} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetEndWithActions - */ - public static final int ActionBar_contentInsetEndWithActions=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetLeft} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetLeft - */ - public static final int ActionBar_contentInsetLeft=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetRight} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetRight - */ - public static final int ActionBar_contentInsetRight=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetStart} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetStart - */ - public static final int ActionBar_contentInsetStart=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetStartWithNavigation} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetStartWithNavigation - */ - public static final int ActionBar_contentInsetStartWithNavigation=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#customNavigationLayout} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:customNavigationLayout - */ - public static final int ActionBar_customNavigationLayout=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#displayOptions} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
- * - * @attr name com.gaolei.retrofitdemo:displayOptions - */ - public static final int ActionBar_displayOptions=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#divider} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:divider - */ - public static final int ActionBar_divider=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#elevation} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:elevation - */ - public static final int ActionBar_elevation=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#height} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:height - */ - public static final int ActionBar_height=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#hideOnContentScroll} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:hideOnContentScroll - */ - public static final int ActionBar_hideOnContentScroll=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#homeAsUpIndicator} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:homeAsUpIndicator - */ - public static final int ActionBar_homeAsUpIndicator=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#homeLayout} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:homeLayout - */ - public static final int ActionBar_homeLayout=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#icon} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:icon - */ - public static final int ActionBar_icon=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#indeterminateProgressStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:indeterminateProgressStyle - */ - public static final int ActionBar_indeterminateProgressStyle=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#itemPadding} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:itemPadding - */ - public static final int ActionBar_itemPadding=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#logo} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:logo - */ - public static final int ActionBar_logo=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#navigationMode} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
listMode1
normal0
tabMode2
- * - * @attr name com.gaolei.retrofitdemo:navigationMode - */ - public static final int ActionBar_navigationMode=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#popupTheme} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:popupTheme - */ - public static final int ActionBar_popupTheme=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#progressBarPadding} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:progressBarPadding - */ - public static final int ActionBar_progressBarPadding=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#progressBarStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:progressBarStyle - */ - public static final int ActionBar_progressBarStyle=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subtitle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:subtitle - */ - public static final int ActionBar_subtitle=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subtitleTextStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:subtitleTextStyle - */ - public static final int ActionBar_subtitleTextStyle=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#title} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:title - */ - public static final int ActionBar_title=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleTextStyle} - * attribute's value can be found in the {@link #ActionBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:titleTextStyle - */ - public static final int ActionBar_titleTextStyle=28; - /** - * Attributes that can be used with a ActionMenuItemView. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
- * @see #ActionMenuItemView_android_minWidth - */ - public static final int[] ActionMenuItemView={ - 0x0101013f - }; - /** - *

This symbol is the offset where the {@link android.R.attr#minWidth} - * attribute's value can be found in the {@link #ActionMenuItemView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minWidth - */ - public static final int ActionMenuItemView_android_minWidth=0; - public static final int[] ActionMenuView={ - }; - /** - * Attributes that can be used with a ActionMode. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ActionMode_background com.gaolei.retrofitdemo:background}
{@link #ActionMode_backgroundSplit com.gaolei.retrofitdemo:backgroundSplit}
{@link #ActionMode_closeItemLayout com.gaolei.retrofitdemo:closeItemLayout}
{@link #ActionMode_height com.gaolei.retrofitdemo:height}
{@link #ActionMode_subtitleTextStyle com.gaolei.retrofitdemo:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.gaolei.retrofitdemo:titleTextStyle}
- * @see #ActionMode_background - * @see #ActionMode_backgroundSplit - * @see #ActionMode_closeItemLayout - * @see #ActionMode_height - * @see #ActionMode_subtitleTextStyle - * @see #ActionMode_titleTextStyle - */ - public static final int[] ActionMode={ - 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, - 0x7f020100, 0x7f020124 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#background} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:background - */ - public static final int ActionMode_background=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#backgroundSplit} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:backgroundSplit - */ - public static final int ActionMode_backgroundSplit=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#closeItemLayout} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:closeItemLayout - */ - public static final int ActionMode_closeItemLayout=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#height} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:height - */ - public static final int ActionMode_height=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subtitleTextStyle} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:subtitleTextStyle - */ - public static final int ActionMode_subtitleTextStyle=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleTextStyle} - * attribute's value can be found in the {@link #ActionMode} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:titleTextStyle - */ - public static final int ActionMode_titleTextStyle=5; - /** - * Attributes that can be used with a ActivityChooserView. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.gaolei.retrofitdemo:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.gaolei.retrofitdemo:initialActivityCount}
- * @see #ActivityChooserView_expandActivityOverflowButtonDrawable - * @see #ActivityChooserView_initialActivityCount - */ - public static final int[] ActivityChooserView={ - 0x7f020075, 0x7f02008c - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#expandActivityOverflowButtonDrawable} - * attribute's value can be found in the {@link #ActivityChooserView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:expandActivityOverflowButtonDrawable - */ - public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#initialActivityCount} - * attribute's value can be found in the {@link #ActivityChooserView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:initialActivityCount - */ - public static final int ActivityChooserView_initialActivityCount=1; - /** - * Attributes that can be used with a AlertDialog. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.gaolei.retrofitdemo:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.gaolei.retrofitdemo:listItemLayout}
{@link #AlertDialog_listLayout com.gaolei.retrofitdemo:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.gaolei.retrofitdemo:multiChoiceItemLayout}
{@link #AlertDialog_showTitle com.gaolei.retrofitdemo:showTitle}
{@link #AlertDialog_singleChoiceItemLayout com.gaolei.retrofitdemo:singleChoiceItemLayout}
- * @see #AlertDialog_android_layout - * @see #AlertDialog_buttonPanelSideLayout - * @see #AlertDialog_listItemLayout - * @see #AlertDialog_listLayout - * @see #AlertDialog_multiChoiceItemLayout - * @see #AlertDialog_showTitle - * @see #AlertDialog_singleChoiceItemLayout - */ - public static final int[] AlertDialog={ - 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, - 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#layout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:layout - */ - public static final int AlertDialog_android_layout=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonPanelSideLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonPanelSideLayout - */ - public static final int AlertDialog_buttonPanelSideLayout=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listItemLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:listItemLayout - */ - public static final int AlertDialog_listItemLayout=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:listLayout - */ - public static final int AlertDialog_listLayout=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#multiChoiceItemLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:multiChoiceItemLayout - */ - public static final int AlertDialog_multiChoiceItemLayout=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#showTitle} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:showTitle - */ - public static final int AlertDialog_showTitle=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#singleChoiceItemLayout} - * attribute's value can be found in the {@link #AlertDialog} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:singleChoiceItemLayout - */ - public static final int AlertDialog_singleChoiceItemLayout=6; - /** - * Attributes that can be used with a AppCompatImageView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.gaolei.retrofitdemo:srcCompat}
{@link #AppCompatImageView_tint com.gaolei.retrofitdemo:tint}
{@link #AppCompatImageView_tintMode com.gaolei.retrofitdemo:tintMode}
- * @see #AppCompatImageView_android_src - * @see #AppCompatImageView_srcCompat - * @see #AppCompatImageView_tint - * @see #AppCompatImageView_tintMode - */ - public static final int[] AppCompatImageView={ - 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a - }; - /** - *

This symbol is the offset where the {@link android.R.attr#src} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:src - */ - public static final int AppCompatImageView_android_src=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#srcCompat} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:srcCompat - */ - public static final int AppCompatImageView_srcCompat=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tint} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:tint - */ - public static final int AppCompatImageView_tint=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tintMode} - * attribute's value can be found in the {@link #AppCompatImageView} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:tintMode - */ - public static final int AppCompatImageView_tintMode=3; - /** - * Attributes that can be used with a AppCompatSeekBar. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark com.gaolei.retrofitdemo:tickMark}
{@link #AppCompatSeekBar_tickMarkTint com.gaolei.retrofitdemo:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode com.gaolei.retrofitdemo:tickMarkTintMode}
- * @see #AppCompatSeekBar_android_thumb - * @see #AppCompatSeekBar_tickMark - * @see #AppCompatSeekBar_tickMarkTint - * @see #AppCompatSeekBar_tickMarkTintMode - */ - public static final int[] AppCompatSeekBar={ - 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#thumb} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:thumb - */ - public static final int AppCompatSeekBar_android_thumb=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tickMark} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:tickMark - */ - public static final int AppCompatSeekBar_tickMark=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tickMarkTint} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:tickMarkTint - */ - public static final int AppCompatSeekBar_tickMarkTint=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tickMarkTintMode} - * attribute's value can be found in the {@link #AppCompatSeekBar} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:tickMarkTintMode - */ - public static final int AppCompatSeekBar_tickMarkTintMode=3; - /** - * Attributes that can be used with a AppCompatTextHelper. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
- * @see #AppCompatTextHelper_android_textAppearance - * @see #AppCompatTextHelper_android_drawableTop - * @see #AppCompatTextHelper_android_drawableBottom - * @see #AppCompatTextHelper_android_drawableLeft - * @see #AppCompatTextHelper_android_drawableRight - * @see #AppCompatTextHelper_android_drawableStart - * @see #AppCompatTextHelper_android_drawableEnd - */ - public static final int[] AppCompatTextHelper={ - 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, - 0x01010170, 0x01010392, 0x01010393 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableBottom} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableBottom - */ - public static final int AppCompatTextHelper_android_drawableBottom=2; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableEnd} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableEnd - */ - public static final int AppCompatTextHelper_android_drawableEnd=6; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableLeft} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableLeft - */ - public static final int AppCompatTextHelper_android_drawableLeft=3; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableRight} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableRight - */ - public static final int AppCompatTextHelper_android_drawableRight=4; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableStart} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableStart - */ - public static final int AppCompatTextHelper_android_drawableStart=5; - /** - *

This symbol is the offset where the {@link android.R.attr#drawableTop} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:drawableTop - */ - public static final int AppCompatTextHelper_android_drawableTop=1; - /** - *

This symbol is the offset where the {@link android.R.attr#textAppearance} - * attribute's value can be found in the {@link #AppCompatTextHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:textAppearance - */ - public static final int AppCompatTextHelper_android_textAppearance=0; - /** - * Attributes that can be used with a AppCompatTextView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize com.gaolei.retrofitdemo:autoSizeMaxTextSize}
{@link #AppCompatTextView_autoSizeMinTextSize com.gaolei.retrofitdemo:autoSizeMinTextSize}
{@link #AppCompatTextView_autoSizePresetSizes com.gaolei.retrofitdemo:autoSizePresetSizes}
{@link #AppCompatTextView_autoSizeStepGranularity com.gaolei.retrofitdemo:autoSizeStepGranularity}
{@link #AppCompatTextView_autoSizeTextType com.gaolei.retrofitdemo:autoSizeTextType}
{@link #AppCompatTextView_fontFamily com.gaolei.retrofitdemo:fontFamily}
{@link #AppCompatTextView_textAllCaps com.gaolei.retrofitdemo:textAllCaps}
- * @see #AppCompatTextView_android_textAppearance - * @see #AppCompatTextView_autoSizeMaxTextSize - * @see #AppCompatTextView_autoSizeMinTextSize - * @see #AppCompatTextView_autoSizePresetSizes - * @see #AppCompatTextView_autoSizeStepGranularity - * @see #AppCompatTextView_autoSizeTextType - * @see #AppCompatTextView_fontFamily - * @see #AppCompatTextView_textAllCaps - */ - public static final int[] AppCompatTextView={ - 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, - 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#textAppearance} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:textAppearance - */ - public static final int AppCompatTextView_android_textAppearance=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#autoSizeMaxTextSize} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:autoSizeMaxTextSize - */ - public static final int AppCompatTextView_autoSizeMaxTextSize=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#autoSizeMinTextSize} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:autoSizeMinTextSize - */ - public static final int AppCompatTextView_autoSizeMinTextSize=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#autoSizePresetSizes} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:autoSizePresetSizes - */ - public static final int AppCompatTextView_autoSizePresetSizes=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#autoSizeStepGranularity} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:autoSizeStepGranularity - */ - public static final int AppCompatTextView_autoSizeStepGranularity=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#autoSizeTextType} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
none0
uniform1
- * - * @attr name com.gaolei.retrofitdemo:autoSizeTextType - */ - public static final int AppCompatTextView_autoSizeTextType=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontFamily} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:fontFamily - */ - public static final int AppCompatTextView_fontFamily=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAllCaps} - * attribute's value can be found in the {@link #AppCompatTextView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:textAllCaps - */ - public static final int AppCompatTextView_textAllCaps=7; - /** - * Attributes that can be used with a AppCompatTheme. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider com.gaolei.retrofitdemo:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.gaolei.retrofitdemo:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.gaolei.retrofitdemo:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.gaolei.retrofitdemo:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.gaolei.retrofitdemo:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.gaolei.retrofitdemo:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.gaolei.retrofitdemo:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.gaolei.retrofitdemo:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.gaolei.retrofitdemo:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.gaolei.retrofitdemo:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.gaolei.retrofitdemo:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.gaolei.retrofitdemo:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.gaolei.retrofitdemo:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.gaolei.retrofitdemo:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.gaolei.retrofitdemo:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.gaolei.retrofitdemo:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.gaolei.retrofitdemo:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.gaolei.retrofitdemo:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.gaolei.retrofitdemo:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.gaolei.retrofitdemo:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.gaolei.retrofitdemo:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.gaolei.retrofitdemo:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.gaolei.retrofitdemo:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.gaolei.retrofitdemo:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.gaolei.retrofitdemo:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.gaolei.retrofitdemo:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.gaolei.retrofitdemo:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.gaolei.retrofitdemo:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.gaolei.retrofitdemo:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.gaolei.retrofitdemo:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.gaolei.retrofitdemo:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.gaolei.retrofitdemo:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.gaolei.retrofitdemo:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.gaolei.retrofitdemo:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.gaolei.retrofitdemo:alertDialogTheme}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.gaolei.retrofitdemo:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.gaolei.retrofitdemo:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.gaolei.retrofitdemo:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.gaolei.retrofitdemo:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.gaolei.retrofitdemo:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.gaolei.retrofitdemo:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.gaolei.retrofitdemo:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.gaolei.retrofitdemo:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.gaolei.retrofitdemo:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.gaolei.retrofitdemo:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.gaolei.retrofitdemo:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.gaolei.retrofitdemo:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating com.gaolei.retrofitdemo:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal com.gaolei.retrofitdemo:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.gaolei.retrofitdemo:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.gaolei.retrofitdemo:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.gaolei.retrofitdemo:colorControlNormal}
{@link #AppCompatTheme_colorError com.gaolei.retrofitdemo:colorError}
{@link #AppCompatTheme_colorPrimary com.gaolei.retrofitdemo:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.gaolei.retrofitdemo:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.gaolei.retrofitdemo:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.gaolei.retrofitdemo:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.gaolei.retrofitdemo:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.gaolei.retrofitdemo:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.gaolei.retrofitdemo:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.gaolei.retrofitdemo:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.gaolei.retrofitdemo:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.gaolei.retrofitdemo:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.gaolei.retrofitdemo:editTextBackground}
{@link #AppCompatTheme_editTextColor com.gaolei.retrofitdemo:editTextColor}
{@link #AppCompatTheme_editTextStyle com.gaolei.retrofitdemo:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.gaolei.retrofitdemo:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.gaolei.retrofitdemo:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.gaolei.retrofitdemo:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.gaolei.retrofitdemo:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle com.gaolei.retrofitdemo:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle com.gaolei.retrofitdemo:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.gaolei.retrofitdemo:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.gaolei.retrofitdemo:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.gaolei.retrofitdemo:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.gaolei.retrofitdemo:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.gaolei.retrofitdemo:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.gaolei.retrofitdemo:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.gaolei.retrofitdemo:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.gaolei.retrofitdemo:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.gaolei.retrofitdemo:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.gaolei.retrofitdemo:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.gaolei.retrofitdemo:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.gaolei.retrofitdemo:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.gaolei.retrofitdemo:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.gaolei.retrofitdemo:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.gaolei.retrofitdemo:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.gaolei.retrofitdemo:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.gaolei.retrofitdemo:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.gaolei.retrofitdemo:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.gaolei.retrofitdemo:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.gaolei.retrofitdemo:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.gaolei.retrofitdemo:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.gaolei.retrofitdemo:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.gaolei.retrofitdemo:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSecondary com.gaolei.retrofitdemo:textAppearanceListItemSecondary}
{@link #AppCompatTheme_textAppearanceListItemSmall com.gaolei.retrofitdemo:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader com.gaolei.retrofitdemo:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.gaolei.retrofitdemo:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.gaolei.retrofitdemo:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.gaolei.retrofitdemo:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.gaolei.retrofitdemo:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.gaolei.retrofitdemo:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.gaolei.retrofitdemo:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.gaolei.retrofitdemo:toolbarStyle}
{@link #AppCompatTheme_tooltipForegroundColor com.gaolei.retrofitdemo:tooltipForegroundColor}
{@link #AppCompatTheme_tooltipFrameBackground com.gaolei.retrofitdemo:tooltipFrameBackground}
{@link #AppCompatTheme_windowActionBar com.gaolei.retrofitdemo:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.gaolei.retrofitdemo:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.gaolei.retrofitdemo:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.gaolei.retrofitdemo:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.gaolei.retrofitdemo:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.gaolei.retrofitdemo:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.gaolei.retrofitdemo:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.gaolei.retrofitdemo:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.gaolei.retrofitdemo:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.gaolei.retrofitdemo:windowNoTitle}
- * @see #AppCompatTheme_android_windowIsFloating - * @see #AppCompatTheme_android_windowAnimationStyle - * @see #AppCompatTheme_actionBarDivider - * @see #AppCompatTheme_actionBarItemBackground - * @see #AppCompatTheme_actionBarPopupTheme - * @see #AppCompatTheme_actionBarSize - * @see #AppCompatTheme_actionBarSplitStyle - * @see #AppCompatTheme_actionBarStyle - * @see #AppCompatTheme_actionBarTabBarStyle - * @see #AppCompatTheme_actionBarTabStyle - * @see #AppCompatTheme_actionBarTabTextStyle - * @see #AppCompatTheme_actionBarTheme - * @see #AppCompatTheme_actionBarWidgetTheme - * @see #AppCompatTheme_actionButtonStyle - * @see #AppCompatTheme_actionDropDownStyle - * @see #AppCompatTheme_actionMenuTextAppearance - * @see #AppCompatTheme_actionMenuTextColor - * @see #AppCompatTheme_actionModeBackground - * @see #AppCompatTheme_actionModeCloseButtonStyle - * @see #AppCompatTheme_actionModeCloseDrawable - * @see #AppCompatTheme_actionModeCopyDrawable - * @see #AppCompatTheme_actionModeCutDrawable - * @see #AppCompatTheme_actionModeFindDrawable - * @see #AppCompatTheme_actionModePasteDrawable - * @see #AppCompatTheme_actionModePopupWindowStyle - * @see #AppCompatTheme_actionModeSelectAllDrawable - * @see #AppCompatTheme_actionModeShareDrawable - * @see #AppCompatTheme_actionModeSplitBackground - * @see #AppCompatTheme_actionModeStyle - * @see #AppCompatTheme_actionModeWebSearchDrawable - * @see #AppCompatTheme_actionOverflowButtonStyle - * @see #AppCompatTheme_actionOverflowMenuStyle - * @see #AppCompatTheme_activityChooserViewStyle - * @see #AppCompatTheme_alertDialogButtonGroupStyle - * @see #AppCompatTheme_alertDialogCenterButtons - * @see #AppCompatTheme_alertDialogStyle - * @see #AppCompatTheme_alertDialogTheme - * @see #AppCompatTheme_autoCompleteTextViewStyle - * @see #AppCompatTheme_borderlessButtonStyle - * @see #AppCompatTheme_buttonBarButtonStyle - * @see #AppCompatTheme_buttonBarNegativeButtonStyle - * @see #AppCompatTheme_buttonBarNeutralButtonStyle - * @see #AppCompatTheme_buttonBarPositiveButtonStyle - * @see #AppCompatTheme_buttonBarStyle - * @see #AppCompatTheme_buttonStyle - * @see #AppCompatTheme_buttonStyleSmall - * @see #AppCompatTheme_checkboxStyle - * @see #AppCompatTheme_checkedTextViewStyle - * @see #AppCompatTheme_colorAccent - * @see #AppCompatTheme_colorBackgroundFloating - * @see #AppCompatTheme_colorButtonNormal - * @see #AppCompatTheme_colorControlActivated - * @see #AppCompatTheme_colorControlHighlight - * @see #AppCompatTheme_colorControlNormal - * @see #AppCompatTheme_colorError - * @see #AppCompatTheme_colorPrimary - * @see #AppCompatTheme_colorPrimaryDark - * @see #AppCompatTheme_colorSwitchThumbNormal - * @see #AppCompatTheme_controlBackground - * @see #AppCompatTheme_dialogPreferredPadding - * @see #AppCompatTheme_dialogTheme - * @see #AppCompatTheme_dividerHorizontal - * @see #AppCompatTheme_dividerVertical - * @see #AppCompatTheme_dropDownListViewStyle - * @see #AppCompatTheme_dropdownListPreferredItemHeight - * @see #AppCompatTheme_editTextBackground - * @see #AppCompatTheme_editTextColor - * @see #AppCompatTheme_editTextStyle - * @see #AppCompatTheme_homeAsUpIndicator - * @see #AppCompatTheme_imageButtonStyle - * @see #AppCompatTheme_listChoiceBackgroundIndicator - * @see #AppCompatTheme_listDividerAlertDialog - * @see #AppCompatTheme_listMenuViewStyle - * @see #AppCompatTheme_listPopupWindowStyle - * @see #AppCompatTheme_listPreferredItemHeight - * @see #AppCompatTheme_listPreferredItemHeightLarge - * @see #AppCompatTheme_listPreferredItemHeightSmall - * @see #AppCompatTheme_listPreferredItemPaddingLeft - * @see #AppCompatTheme_listPreferredItemPaddingRight - * @see #AppCompatTheme_panelBackground - * @see #AppCompatTheme_panelMenuListTheme - * @see #AppCompatTheme_panelMenuListWidth - * @see #AppCompatTheme_popupMenuStyle - * @see #AppCompatTheme_popupWindowStyle - * @see #AppCompatTheme_radioButtonStyle - * @see #AppCompatTheme_ratingBarStyle - * @see #AppCompatTheme_ratingBarStyleIndicator - * @see #AppCompatTheme_ratingBarStyleSmall - * @see #AppCompatTheme_searchViewStyle - * @see #AppCompatTheme_seekBarStyle - * @see #AppCompatTheme_selectableItemBackground - * @see #AppCompatTheme_selectableItemBackgroundBorderless - * @see #AppCompatTheme_spinnerDropDownItemStyle - * @see #AppCompatTheme_spinnerStyle - * @see #AppCompatTheme_switchStyle - * @see #AppCompatTheme_textAppearanceLargePopupMenu - * @see #AppCompatTheme_textAppearanceListItem - * @see #AppCompatTheme_textAppearanceListItemSecondary - * @see #AppCompatTheme_textAppearanceListItemSmall - * @see #AppCompatTheme_textAppearancePopupMenuHeader - * @see #AppCompatTheme_textAppearanceSearchResultSubtitle - * @see #AppCompatTheme_textAppearanceSearchResultTitle - * @see #AppCompatTheme_textAppearanceSmallPopupMenu - * @see #AppCompatTheme_textColorAlertDialogListItem - * @see #AppCompatTheme_textColorSearchUrl - * @see #AppCompatTheme_toolbarNavigationButtonStyle - * @see #AppCompatTheme_toolbarStyle - * @see #AppCompatTheme_tooltipForegroundColor - * @see #AppCompatTheme_tooltipFrameBackground - * @see #AppCompatTheme_windowActionBar - * @see #AppCompatTheme_windowActionBarOverlay - * @see #AppCompatTheme_windowActionModeOverlay - * @see #AppCompatTheme_windowFixedHeightMajor - * @see #AppCompatTheme_windowFixedHeightMinor - * @see #AppCompatTheme_windowFixedWidthMajor - * @see #AppCompatTheme_windowFixedWidthMinor - * @see #AppCompatTheme_windowMinWidthMajor - * @see #AppCompatTheme_windowMinWidthMinor - * @see #AppCompatTheme_windowNoTitle - */ - public static final int[] AppCompatTheme={ - 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, - 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, - 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, - 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, - 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, - 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, - 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, - 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, - 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, - 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, - 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, - 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, - 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, - 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, - 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, - 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, - 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, - 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, - 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, - 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, - 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, - 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, - 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, - 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, - 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, - 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, - 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, - 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, - 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, - 0x7f020135, 0x7f020136, 0x7f020137 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarDivider} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarDivider - */ - public static final int AppCompatTheme_actionBarDivider=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarItemBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarItemBackground - */ - public static final int AppCompatTheme_actionBarItemBackground=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarPopupTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarPopupTheme - */ - public static final int AppCompatTheme_actionBarPopupTheme=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarSize} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrap_content0
- * - * @attr name com.gaolei.retrofitdemo:actionBarSize - */ - public static final int AppCompatTheme_actionBarSize=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarSplitStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarSplitStyle - */ - public static final int AppCompatTheme_actionBarSplitStyle=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarStyle - */ - public static final int AppCompatTheme_actionBarStyle=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarTabBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarTabBarStyle - */ - public static final int AppCompatTheme_actionBarTabBarStyle=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarTabStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarTabStyle - */ - public static final int AppCompatTheme_actionBarTabStyle=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarTabTextStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarTabTextStyle - */ - public static final int AppCompatTheme_actionBarTabTextStyle=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarTheme - */ - public static final int AppCompatTheme_actionBarTheme=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionBarWidgetTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionBarWidgetTheme - */ - public static final int AppCompatTheme_actionBarWidgetTheme=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionButtonStyle - */ - public static final int AppCompatTheme_actionButtonStyle=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionDropDownStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionDropDownStyle - */ - public static final int AppCompatTheme_actionDropDownStyle=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionMenuTextAppearance} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionMenuTextAppearance - */ - public static final int AppCompatTheme_actionMenuTextAppearance=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionMenuTextColor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:actionMenuTextColor - */ - public static final int AppCompatTheme_actionMenuTextColor=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeBackground - */ - public static final int AppCompatTheme_actionModeBackground=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeCloseButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeCloseButtonStyle - */ - public static final int AppCompatTheme_actionModeCloseButtonStyle=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeCloseDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeCloseDrawable - */ - public static final int AppCompatTheme_actionModeCloseDrawable=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeCopyDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeCopyDrawable - */ - public static final int AppCompatTheme_actionModeCopyDrawable=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeCutDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeCutDrawable - */ - public static final int AppCompatTheme_actionModeCutDrawable=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeFindDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeFindDrawable - */ - public static final int AppCompatTheme_actionModeFindDrawable=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModePasteDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModePasteDrawable - */ - public static final int AppCompatTheme_actionModePasteDrawable=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModePopupWindowStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModePopupWindowStyle - */ - public static final int AppCompatTheme_actionModePopupWindowStyle=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeSelectAllDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeSelectAllDrawable - */ - public static final int AppCompatTheme_actionModeSelectAllDrawable=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeShareDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeShareDrawable - */ - public static final int AppCompatTheme_actionModeShareDrawable=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeSplitBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeSplitBackground - */ - public static final int AppCompatTheme_actionModeSplitBackground=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeStyle - */ - public static final int AppCompatTheme_actionModeStyle=28; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionModeWebSearchDrawable} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionModeWebSearchDrawable - */ - public static final int AppCompatTheme_actionModeWebSearchDrawable=29; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionOverflowButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionOverflowButtonStyle - */ - public static final int AppCompatTheme_actionOverflowButtonStyle=30; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionOverflowMenuStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionOverflowMenuStyle - */ - public static final int AppCompatTheme_actionOverflowMenuStyle=31; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#activityChooserViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:activityChooserViewStyle - */ - public static final int AppCompatTheme_activityChooserViewStyle=32; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#alertDialogButtonGroupStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:alertDialogButtonGroupStyle - */ - public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#alertDialogCenterButtons} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:alertDialogCenterButtons - */ - public static final int AppCompatTheme_alertDialogCenterButtons=34; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#alertDialogStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:alertDialogStyle - */ - public static final int AppCompatTheme_alertDialogStyle=35; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#alertDialogTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:alertDialogTheme - */ - public static final int AppCompatTheme_alertDialogTheme=36; - /** - *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:windowAnimationStyle - */ - public static final int AppCompatTheme_android_windowAnimationStyle=1; - /** - *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:windowIsFloating - */ - public static final int AppCompatTheme_android_windowIsFloating=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#autoCompleteTextViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:autoCompleteTextViewStyle - */ - public static final int AppCompatTheme_autoCompleteTextViewStyle=37; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#borderlessButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:borderlessButtonStyle - */ - public static final int AppCompatTheme_borderlessButtonStyle=38; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonBarButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonBarButtonStyle - */ - public static final int AppCompatTheme_buttonBarButtonStyle=39; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonBarNegativeButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonBarNegativeButtonStyle - */ - public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonBarNeutralButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonBarNeutralButtonStyle - */ - public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonBarPositiveButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonBarPositiveButtonStyle - */ - public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonBarStyle - */ - public static final int AppCompatTheme_buttonBarStyle=43; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonStyle - */ - public static final int AppCompatTheme_buttonStyle=44; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonStyleSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:buttonStyleSmall - */ - public static final int AppCompatTheme_buttonStyleSmall=45; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#checkboxStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:checkboxStyle - */ - public static final int AppCompatTheme_checkboxStyle=46; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#checkedTextViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:checkedTextViewStyle - */ - public static final int AppCompatTheme_checkedTextViewStyle=47; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorAccent} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorAccent - */ - public static final int AppCompatTheme_colorAccent=48; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorBackgroundFloating} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorBackgroundFloating - */ - public static final int AppCompatTheme_colorBackgroundFloating=49; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorButtonNormal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorButtonNormal - */ - public static final int AppCompatTheme_colorButtonNormal=50; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorControlActivated} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorControlActivated - */ - public static final int AppCompatTheme_colorControlActivated=51; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorControlHighlight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorControlHighlight - */ - public static final int AppCompatTheme_colorControlHighlight=52; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorControlNormal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorControlNormal - */ - public static final int AppCompatTheme_colorControlNormal=53; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorError} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorError - */ - public static final int AppCompatTheme_colorError=54; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorPrimary} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorPrimary - */ - public static final int AppCompatTheme_colorPrimary=55; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorPrimaryDark} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorPrimaryDark - */ - public static final int AppCompatTheme_colorPrimaryDark=56; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#colorSwitchThumbNormal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:colorSwitchThumbNormal - */ - public static final int AppCompatTheme_colorSwitchThumbNormal=57; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#controlBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:controlBackground - */ - public static final int AppCompatTheme_controlBackground=58; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dialogPreferredPadding} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:dialogPreferredPadding - */ - public static final int AppCompatTheme_dialogPreferredPadding=59; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dialogTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:dialogTheme - */ - public static final int AppCompatTheme_dialogTheme=60; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dividerHorizontal} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:dividerHorizontal - */ - public static final int AppCompatTheme_dividerHorizontal=61; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dividerVertical} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:dividerVertical - */ - public static final int AppCompatTheme_dividerVertical=62; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dropDownListViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:dropDownListViewStyle - */ - public static final int AppCompatTheme_dropDownListViewStyle=63; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dropdownListPreferredItemHeight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:dropdownListPreferredItemHeight - */ - public static final int AppCompatTheme_dropdownListPreferredItemHeight=64; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#editTextBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:editTextBackground - */ - public static final int AppCompatTheme_editTextBackground=65; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#editTextColor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:editTextColor - */ - public static final int AppCompatTheme_editTextColor=66; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#editTextStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:editTextStyle - */ - public static final int AppCompatTheme_editTextStyle=67; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#homeAsUpIndicator} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:homeAsUpIndicator - */ - public static final int AppCompatTheme_homeAsUpIndicator=68; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#imageButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:imageButtonStyle - */ - public static final int AppCompatTheme_imageButtonStyle=69; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listChoiceBackgroundIndicator} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:listChoiceBackgroundIndicator - */ - public static final int AppCompatTheme_listChoiceBackgroundIndicator=70; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listDividerAlertDialog} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:listDividerAlertDialog - */ - public static final int AppCompatTheme_listDividerAlertDialog=71; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listMenuViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:listMenuViewStyle - */ - public static final int AppCompatTheme_listMenuViewStyle=72; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listPopupWindowStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:listPopupWindowStyle - */ - public static final int AppCompatTheme_listPopupWindowStyle=73; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listPreferredItemHeight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:listPreferredItemHeight - */ - public static final int AppCompatTheme_listPreferredItemHeight=74; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listPreferredItemHeightLarge} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:listPreferredItemHeightLarge - */ - public static final int AppCompatTheme_listPreferredItemHeightLarge=75; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listPreferredItemHeightSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:listPreferredItemHeightSmall - */ - public static final int AppCompatTheme_listPreferredItemHeightSmall=76; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listPreferredItemPaddingLeft} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:listPreferredItemPaddingLeft - */ - public static final int AppCompatTheme_listPreferredItemPaddingLeft=77; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#listPreferredItemPaddingRight} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:listPreferredItemPaddingRight - */ - public static final int AppCompatTheme_listPreferredItemPaddingRight=78; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#panelBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:panelBackground - */ - public static final int AppCompatTheme_panelBackground=79; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#panelMenuListTheme} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:panelMenuListTheme - */ - public static final int AppCompatTheme_panelMenuListTheme=80; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#panelMenuListWidth} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:panelMenuListWidth - */ - public static final int AppCompatTheme_panelMenuListWidth=81; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#popupMenuStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:popupMenuStyle - */ - public static final int AppCompatTheme_popupMenuStyle=82; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#popupWindowStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:popupWindowStyle - */ - public static final int AppCompatTheme_popupWindowStyle=83; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#radioButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:radioButtonStyle - */ - public static final int AppCompatTheme_radioButtonStyle=84; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#ratingBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:ratingBarStyle - */ - public static final int AppCompatTheme_ratingBarStyle=85; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#ratingBarStyleIndicator} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:ratingBarStyleIndicator - */ - public static final int AppCompatTheme_ratingBarStyleIndicator=86; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#ratingBarStyleSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:ratingBarStyleSmall - */ - public static final int AppCompatTheme_ratingBarStyleSmall=87; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#searchViewStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:searchViewStyle - */ - public static final int AppCompatTheme_searchViewStyle=88; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#seekBarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:seekBarStyle - */ - public static final int AppCompatTheme_seekBarStyle=89; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#selectableItemBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:selectableItemBackground - */ - public static final int AppCompatTheme_selectableItemBackground=90; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#selectableItemBackgroundBorderless} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:selectableItemBackgroundBorderless - */ - public static final int AppCompatTheme_selectableItemBackgroundBorderless=91; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#spinnerDropDownItemStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:spinnerDropDownItemStyle - */ - public static final int AppCompatTheme_spinnerDropDownItemStyle=92; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#spinnerStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:spinnerStyle - */ - public static final int AppCompatTheme_spinnerStyle=93; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#switchStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:switchStyle - */ - public static final int AppCompatTheme_switchStyle=94; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceLargePopupMenu} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceLargePopupMenu - */ - public static final int AppCompatTheme_textAppearanceLargePopupMenu=95; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceListItem} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceListItem - */ - public static final int AppCompatTheme_textAppearanceListItem=96; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceListItemSecondary} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceListItemSecondary - */ - public static final int AppCompatTheme_textAppearanceListItemSecondary=97; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceListItemSmall} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceListItemSmall - */ - public static final int AppCompatTheme_textAppearanceListItemSmall=98; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearancePopupMenuHeader} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearancePopupMenuHeader - */ - public static final int AppCompatTheme_textAppearancePopupMenuHeader=99; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceSearchResultSubtitle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceSearchResultSubtitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceSearchResultTitle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceSearchResultTitle - */ - public static final int AppCompatTheme_textAppearanceSearchResultTitle=101; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAppearanceSmallPopupMenu} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:textAppearanceSmallPopupMenu - */ - public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textColorAlertDialogListItem} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:textColorAlertDialogListItem - */ - public static final int AppCompatTheme_textColorAlertDialogListItem=103; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textColorSearchUrl} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:textColorSearchUrl - */ - public static final int AppCompatTheme_textColorSearchUrl=104; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#toolbarNavigationButtonStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:toolbarNavigationButtonStyle - */ - public static final int AppCompatTheme_toolbarNavigationButtonStyle=105; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#toolbarStyle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:toolbarStyle - */ - public static final int AppCompatTheme_toolbarStyle=106; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tooltipForegroundColor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:tooltipForegroundColor - */ - public static final int AppCompatTheme_tooltipForegroundColor=107; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tooltipFrameBackground} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:tooltipFrameBackground - */ - public static final int AppCompatTheme_tooltipFrameBackground=108; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowActionBar} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:windowActionBar - */ - public static final int AppCompatTheme_windowActionBar=109; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowActionBarOverlay} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:windowActionBarOverlay - */ - public static final int AppCompatTheme_windowActionBarOverlay=110; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowActionModeOverlay} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:windowActionModeOverlay - */ - public static final int AppCompatTheme_windowActionModeOverlay=111; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowFixedHeightMajor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo:windowFixedHeightMajor - */ - public static final int AppCompatTheme_windowFixedHeightMajor=112; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowFixedHeightMinor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo:windowFixedHeightMinor - */ - public static final int AppCompatTheme_windowFixedHeightMinor=113; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowFixedWidthMajor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo:windowFixedWidthMajor - */ - public static final int AppCompatTheme_windowFixedWidthMajor=114; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowFixedWidthMinor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo:windowFixedWidthMinor - */ - public static final int AppCompatTheme_windowFixedWidthMinor=115; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowMinWidthMajor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo:windowMinWidthMajor - */ - public static final int AppCompatTheme_windowMinWidthMajor=116; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowMinWidthMinor} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

May be a fractional value, which is a floating point number appended with - * either % or %p, such as "14.5%". - * The % suffix always means a percentage of the base size; - * the optional %p suffix provides a size relative to some parent container. - * - * @attr name com.gaolei.retrofitdemo:windowMinWidthMinor - */ - public static final int AppCompatTheme_windowMinWidthMinor=117; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#windowNoTitle} - * attribute's value can be found in the {@link #AppCompatTheme} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:windowNoTitle - */ - public static final int AppCompatTheme_windowNoTitle=118; - /** - * Attributes that can be used with a ButtonBarLayout. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.gaolei.retrofitdemo:allowStacking}
- * @see #ButtonBarLayout_allowStacking - */ - public static final int[] ButtonBarLayout={ - 0x7f020026 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#allowStacking} - * attribute's value can be found in the {@link #ButtonBarLayout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:allowStacking - */ - public static final int ButtonBarLayout_allowStacking=0; - /** - * Attributes that can be used with a ColorStateListItem. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_alpha com.gaolei.retrofitdemo:alpha}
- * @see #ColorStateListItem_android_color - * @see #ColorStateListItem_android_alpha - * @see #ColorStateListItem_alpha - */ - public static final int[] ColorStateListItem={ - 0x010101a5, 0x0101031f, 0x7f020027 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#alpha} - * attribute's value can be found in the {@link #ColorStateListItem} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:alpha - */ - public static final int ColorStateListItem_alpha=2; - /** - *

This symbol is the offset where the {@link android.R.attr#alpha} - * attribute's value can be found in the {@link #ColorStateListItem} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:alpha - */ - public static final int ColorStateListItem_android_alpha=1; - /** - *

This symbol is the offset where the {@link android.R.attr#color} - * attribute's value can be found in the {@link #ColorStateListItem} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:color - */ - public static final int ColorStateListItem_android_color=0; - /** - * Attributes that can be used with a CompoundButton. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.gaolei.retrofitdemo:buttonTint}
{@link #CompoundButton_buttonTintMode com.gaolei.retrofitdemo:buttonTintMode}
- * @see #CompoundButton_android_button - * @see #CompoundButton_buttonTint - * @see #CompoundButton_buttonTintMode - */ - public static final int[] CompoundButton={ - 0x01010107, 0x7f020043, 0x7f020044 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#button} - * attribute's value can be found in the {@link #CompoundButton} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:button - */ - public static final int CompoundButton_android_button=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonTint} - * attribute's value can be found in the {@link #CompoundButton} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:buttonTint - */ - public static final int CompoundButton_buttonTint=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonTintMode} - * attribute's value can be found in the {@link #CompoundButton} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:buttonTintMode - */ - public static final int CompoundButton_buttonTintMode=2; - /** - * Attributes that can be used with a ConstraintLayout_Layout. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ConstraintLayout_Layout_android_orientation android:orientation}
{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}
{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}
{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}
{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}
{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.gaolei.retrofitdemo:barrierAllowsGoneWidgets}
{@link #ConstraintLayout_Layout_barrierDirection com.gaolei.retrofitdemo:barrierDirection}
{@link #ConstraintLayout_Layout_chainUseRtl com.gaolei.retrofitdemo:chainUseRtl}
{@link #ConstraintLayout_Layout_constraintSet com.gaolei.retrofitdemo:constraintSet}
{@link #ConstraintLayout_Layout_constraint_referenced_ids com.gaolei.retrofitdemo:constraint_referenced_ids}
{@link #ConstraintLayout_Layout_layout_constrainedHeight com.gaolei.retrofitdemo:layout_constrainedHeight}
{@link #ConstraintLayout_Layout_layout_constrainedWidth com.gaolei.retrofitdemo:layout_constrainedWidth}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.gaolei.retrofitdemo:layout_constraintBaseline_creator}
{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.gaolei.retrofitdemo:layout_constraintBaseline_toBaselineOf}
{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.gaolei.retrofitdemo:layout_constraintBottom_creator}
{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.gaolei.retrofitdemo:layout_constraintBottom_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.gaolei.retrofitdemo:layout_constraintBottom_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintCircle com.gaolei.retrofitdemo:layout_constraintCircle}
{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.gaolei.retrofitdemo:layout_constraintCircleAngle}
{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.gaolei.retrofitdemo:layout_constraintCircleRadius}
{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.gaolei.retrofitdemo:layout_constraintDimensionRatio}
{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.gaolei.retrofitdemo:layout_constraintEnd_toEndOf}
{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.gaolei.retrofitdemo:layout_constraintEnd_toStartOf}
{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.gaolei.retrofitdemo:layout_constraintGuide_begin}
{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.gaolei.retrofitdemo:layout_constraintGuide_end}
{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.gaolei.retrofitdemo:layout_constraintGuide_percent}
{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.gaolei.retrofitdemo:layout_constraintHeight_default}
{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.gaolei.retrofitdemo:layout_constraintHeight_max}
{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.gaolei.retrofitdemo:layout_constraintHeight_min}
{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.gaolei.retrofitdemo:layout_constraintHeight_percent}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.gaolei.retrofitdemo:layout_constraintHorizontal_bias}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.gaolei.retrofitdemo:layout_constraintHorizontal_chainStyle}
{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.gaolei.retrofitdemo:layout_constraintHorizontal_weight}
{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.gaolei.retrofitdemo:layout_constraintLeft_creator}
{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.gaolei.retrofitdemo:layout_constraintLeft_toLeftOf}
{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.gaolei.retrofitdemo:layout_constraintLeft_toRightOf}
{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.gaolei.retrofitdemo:layout_constraintRight_creator}
{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.gaolei.retrofitdemo:layout_constraintRight_toLeftOf}
{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.gaolei.retrofitdemo:layout_constraintRight_toRightOf}
{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.gaolei.retrofitdemo:layout_constraintStart_toEndOf}
{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.gaolei.retrofitdemo:layout_constraintStart_toStartOf}
{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.gaolei.retrofitdemo:layout_constraintTop_creator}
{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.gaolei.retrofitdemo:layout_constraintTop_toBottomOf}
{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.gaolei.retrofitdemo:layout_constraintTop_toTopOf}
{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.gaolei.retrofitdemo:layout_constraintVertical_bias}
{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.gaolei.retrofitdemo:layout_constraintVertical_chainStyle}
{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.gaolei.retrofitdemo:layout_constraintVertical_weight}
{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.gaolei.retrofitdemo:layout_constraintWidth_default}
{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.gaolei.retrofitdemo:layout_constraintWidth_max}
{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.gaolei.retrofitdemo:layout_constraintWidth_min}
{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.gaolei.retrofitdemo:layout_constraintWidth_percent}
{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.gaolei.retrofitdemo:layout_editor_absoluteX}
{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.gaolei.retrofitdemo:layout_editor_absoluteY}
{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.gaolei.retrofitdemo:layout_goneMarginBottom}
{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.gaolei.retrofitdemo:layout_goneMarginEnd}
{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.gaolei.retrofitdemo:layout_goneMarginLeft}
{@link #ConstraintLayout_Layout_layout_goneMarginRight com.gaolei.retrofitdemo:layout_goneMarginRight}
{@link #ConstraintLayout_Layout_layout_goneMarginStart com.gaolei.retrofitdemo:layout_goneMarginStart}
{@link #ConstraintLayout_Layout_layout_goneMarginTop com.gaolei.retrofitdemo:layout_goneMarginTop}
{@link #ConstraintLayout_Layout_layout_optimizationLevel com.gaolei.retrofitdemo:layout_optimizationLevel}
- * @see #ConstraintLayout_Layout_android_orientation - * @see #ConstraintLayout_Layout_android_maxWidth - * @see #ConstraintLayout_Layout_android_maxHeight - * @see #ConstraintLayout_Layout_android_minWidth - * @see #ConstraintLayout_Layout_android_minHeight - * @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets - * @see #ConstraintLayout_Layout_barrierDirection - * @see #ConstraintLayout_Layout_chainUseRtl - * @see #ConstraintLayout_Layout_constraintSet - * @see #ConstraintLayout_Layout_constraint_referenced_ids - * @see #ConstraintLayout_Layout_layout_constrainedHeight - * @see #ConstraintLayout_Layout_layout_constrainedWidth - * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator - * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf - * @see #ConstraintLayout_Layout_layout_constraintBottom_creator - * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf - * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf - * @see #ConstraintLayout_Layout_layout_constraintCircle - * @see #ConstraintLayout_Layout_layout_constraintCircleAngle - * @see #ConstraintLayout_Layout_layout_constraintCircleRadius - * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio - * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf - * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf - * @see #ConstraintLayout_Layout_layout_constraintGuide_begin - * @see #ConstraintLayout_Layout_layout_constraintGuide_end - * @see #ConstraintLayout_Layout_layout_constraintGuide_percent - * @see #ConstraintLayout_Layout_layout_constraintHeight_default - * @see #ConstraintLayout_Layout_layout_constraintHeight_max - * @see #ConstraintLayout_Layout_layout_constraintHeight_min - * @see #ConstraintLayout_Layout_layout_constraintHeight_percent - * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias - * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle - * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight - * @see #ConstraintLayout_Layout_layout_constraintLeft_creator - * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf - * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf - * @see #ConstraintLayout_Layout_layout_constraintRight_creator - * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf - * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf - * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf - * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf - * @see #ConstraintLayout_Layout_layout_constraintTop_creator - * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf - * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf - * @see #ConstraintLayout_Layout_layout_constraintVertical_bias - * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle - * @see #ConstraintLayout_Layout_layout_constraintVertical_weight - * @see #ConstraintLayout_Layout_layout_constraintWidth_default - * @see #ConstraintLayout_Layout_layout_constraintWidth_max - * @see #ConstraintLayout_Layout_layout_constraintWidth_min - * @see #ConstraintLayout_Layout_layout_constraintWidth_percent - * @see #ConstraintLayout_Layout_layout_editor_absoluteX - * @see #ConstraintLayout_Layout_layout_editor_absoluteY - * @see #ConstraintLayout_Layout_layout_goneMarginBottom - * @see #ConstraintLayout_Layout_layout_goneMarginEnd - * @see #ConstraintLayout_Layout_layout_goneMarginLeft - * @see #ConstraintLayout_Layout_layout_goneMarginRight - * @see #ConstraintLayout_Layout_layout_goneMarginStart - * @see #ConstraintLayout_Layout_layout_goneMarginTop - * @see #ConstraintLayout_Layout_layout_optimizationLevel - */ - public static final int[] ConstraintLayout_Layout={ - 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, - 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, - 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, - 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, - 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, - 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, - 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, - 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, - 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, - 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, - 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, - 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, - 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, - 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, - 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#maxHeight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:maxHeight - */ - public static final int ConstraintLayout_Layout_android_maxHeight=2; - /** - *

This symbol is the offset where the {@link android.R.attr#maxWidth} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:maxWidth - */ - public static final int ConstraintLayout_Layout_android_maxWidth=1; - /** - *

This symbol is the offset where the {@link android.R.attr#minHeight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minHeight - */ - public static final int ConstraintLayout_Layout_android_minHeight=4; - /** - *

This symbol is the offset where the {@link android.R.attr#minWidth} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minWidth - */ - public static final int ConstraintLayout_Layout_android_minWidth=3; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int ConstraintLayout_Layout_android_orientation=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#barrierAllowsGoneWidgets} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:barrierAllowsGoneWidgets - */ - public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#barrierDirection} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom3
end6
left0
right1
start5
top2
- * - * @attr name com.gaolei.retrofitdemo:barrierDirection - */ - public static final int ConstraintLayout_Layout_barrierDirection=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#chainUseRtl} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:chainUseRtl - */ - public static final int ConstraintLayout_Layout_chainUseRtl=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#constraintSet} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:constraintSet - */ - public static final int ConstraintLayout_Layout_constraintSet=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#constraint_referenced_ids} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:constraint_referenced_ids - */ - public static final int ConstraintLayout_Layout_constraint_referenced_ids=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constrainedHeight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:layout_constrainedHeight - */ - public static final int ConstraintLayout_Layout_layout_constrainedHeight=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constrainedWidth} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:layout_constrainedWidth - */ - public static final int ConstraintLayout_Layout_layout_constrainedWidth=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBaseline_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintBaseline_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBaseline_toBaselineOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintBaseline_toBaselineOf - */ - public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBottom_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintBottom_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBottom_toBottomOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintBottom_toBottomOf - */ - public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBottom_toTopOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintBottom_toTopOf - */ - public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintCircle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintCircle - */ - public static final int ConstraintLayout_Layout_layout_constraintCircle=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintCircleAngle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintCircleAngle - */ - public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintCircleRadius} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_constraintCircleRadius - */ - public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintDimensionRatio} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:layout_constraintDimensionRatio - */ - public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintEnd_toEndOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintEnd_toEndOf - */ - public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintEnd_toStartOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintEnd_toStartOf - */ - public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintGuide_begin} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_constraintGuide_begin - */ - public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintGuide_end} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_constraintGuide_end - */ - public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintGuide_percent} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintGuide_percent - */ - public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_default} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_default - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_max} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_max - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_min} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_min - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_percent} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_percent - */ - public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHorizontal_bias} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintHorizontal_bias - */ - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHorizontal_chainStyle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHorizontal_chainStyle - */ - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHorizontal_weight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintHorizontal_weight - */ - public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintLeft_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintLeft_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintLeft_toLeftOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintLeft_toLeftOf - */ - public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintLeft_toRightOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintLeft_toRightOf - */ - public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintRight_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintRight_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintRight_toLeftOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintRight_toLeftOf - */ - public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintRight_toRightOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintRight_toRightOf - */ - public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintStart_toEndOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintStart_toEndOf - */ - public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintStart_toStartOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintStart_toStartOf - */ - public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintTop_creator} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintTop_creator - */ - public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintTop_toBottomOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintTop_toBottomOf - */ - public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintTop_toTopOf} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintTop_toTopOf - */ - public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintVertical_bias} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintVertical_bias - */ - public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintVertical_chainStyle} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintVertical_chainStyle - */ - public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintVertical_weight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintVertical_weight - */ - public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_default} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_default - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_max} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_max - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_min} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_min - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_percent} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_percent - */ - public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_editor_absoluteX} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_editor_absoluteX - */ - public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_editor_absoluteY} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_editor_absoluteY - */ - public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginBottom} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginBottom - */ - public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginEnd} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginEnd - */ - public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginLeft} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginLeft - */ - public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginRight} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginRight - */ - public static final int ConstraintLayout_Layout_layout_goneMarginRight=56; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginStart} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginStart - */ - public static final int ConstraintLayout_Layout_layout_goneMarginStart=57; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginTop} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginTop - */ - public static final int ConstraintLayout_Layout_layout_goneMarginTop=58; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_optimizationLevel} - * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
barrier2
chains4
dimensions8
direct1for now only direct & barriers
none0
standard3
- * - * @attr name com.gaolei.retrofitdemo:layout_optimizationLevel - */ - public static final int ConstraintLayout_Layout_layout_optimizationLevel=59; - /** - * Attributes that can be used with a ConstraintLayout_placeholder. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #ConstraintLayout_placeholder_content com.gaolei.retrofitdemo:content}
{@link #ConstraintLayout_placeholder_emptyVisibility com.gaolei.retrofitdemo:emptyVisibility}
- * @see #ConstraintLayout_placeholder_content - * @see #ConstraintLayout_placeholder_emptyVisibility - */ - public static final int[] ConstraintLayout_placeholder={ - 0x7f02005a, 0x7f020074 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#content} - * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:content - */ - public static final int ConstraintLayout_placeholder_content=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#emptyVisibility} - * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
gone0
invisible1
- * - * @attr name com.gaolei.retrofitdemo:emptyVisibility - */ - public static final int ConstraintLayout_placeholder_emptyVisibility=1; - /** - * Attributes that can be used with a ConstraintSet. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #ConstraintSet_android_orientation android:orientation}
{@link #ConstraintSet_android_id android:id}
{@link #ConstraintSet_android_visibility android:visibility}
{@link #ConstraintSet_android_layout_width android:layout_width}
{@link #ConstraintSet_android_layout_height android:layout_height}
{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}
{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}
{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}
{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}
{@link #ConstraintSet_android_alpha android:alpha}
{@link #ConstraintSet_android_transformPivotX android:transformPivotX}
{@link #ConstraintSet_android_transformPivotY android:transformPivotY}
{@link #ConstraintSet_android_translationX android:translationX}
{@link #ConstraintSet_android_translationY android:translationY}
{@link #ConstraintSet_android_scaleX android:scaleX}
{@link #ConstraintSet_android_scaleY android:scaleY}
{@link #ConstraintSet_android_rotation android:rotation}
{@link #ConstraintSet_android_rotationX android:rotationX}
{@link #ConstraintSet_android_rotationY android:rotationY}
{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}
{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}
{@link #ConstraintSet_android_translationZ android:translationZ}
{@link #ConstraintSet_android_elevation android:elevation}
{@link #ConstraintSet_layout_constrainedHeight com.gaolei.retrofitdemo:layout_constrainedHeight}
{@link #ConstraintSet_layout_constrainedWidth com.gaolei.retrofitdemo:layout_constrainedWidth}
{@link #ConstraintSet_layout_constraintBaseline_creator com.gaolei.retrofitdemo:layout_constraintBaseline_creator}
{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.gaolei.retrofitdemo:layout_constraintBaseline_toBaselineOf}
{@link #ConstraintSet_layout_constraintBottom_creator com.gaolei.retrofitdemo:layout_constraintBottom_creator}
{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.gaolei.retrofitdemo:layout_constraintBottom_toBottomOf}
{@link #ConstraintSet_layout_constraintBottom_toTopOf com.gaolei.retrofitdemo:layout_constraintBottom_toTopOf}
{@link #ConstraintSet_layout_constraintCircle com.gaolei.retrofitdemo:layout_constraintCircle}
{@link #ConstraintSet_layout_constraintCircleAngle com.gaolei.retrofitdemo:layout_constraintCircleAngle}
{@link #ConstraintSet_layout_constraintCircleRadius com.gaolei.retrofitdemo:layout_constraintCircleRadius}
{@link #ConstraintSet_layout_constraintDimensionRatio com.gaolei.retrofitdemo:layout_constraintDimensionRatio}
{@link #ConstraintSet_layout_constraintEnd_toEndOf com.gaolei.retrofitdemo:layout_constraintEnd_toEndOf}
{@link #ConstraintSet_layout_constraintEnd_toStartOf com.gaolei.retrofitdemo:layout_constraintEnd_toStartOf}
{@link #ConstraintSet_layout_constraintGuide_begin com.gaolei.retrofitdemo:layout_constraintGuide_begin}
{@link #ConstraintSet_layout_constraintGuide_end com.gaolei.retrofitdemo:layout_constraintGuide_end}
{@link #ConstraintSet_layout_constraintGuide_percent com.gaolei.retrofitdemo:layout_constraintGuide_percent}
{@link #ConstraintSet_layout_constraintHeight_default com.gaolei.retrofitdemo:layout_constraintHeight_default}
{@link #ConstraintSet_layout_constraintHeight_max com.gaolei.retrofitdemo:layout_constraintHeight_max}
{@link #ConstraintSet_layout_constraintHeight_min com.gaolei.retrofitdemo:layout_constraintHeight_min}
{@link #ConstraintSet_layout_constraintHeight_percent com.gaolei.retrofitdemo:layout_constraintHeight_percent}
{@link #ConstraintSet_layout_constraintHorizontal_bias com.gaolei.retrofitdemo:layout_constraintHorizontal_bias}
{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.gaolei.retrofitdemo:layout_constraintHorizontal_chainStyle}
{@link #ConstraintSet_layout_constraintHorizontal_weight com.gaolei.retrofitdemo:layout_constraintHorizontal_weight}
{@link #ConstraintSet_layout_constraintLeft_creator com.gaolei.retrofitdemo:layout_constraintLeft_creator}
{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.gaolei.retrofitdemo:layout_constraintLeft_toLeftOf}
{@link #ConstraintSet_layout_constraintLeft_toRightOf com.gaolei.retrofitdemo:layout_constraintLeft_toRightOf}
{@link #ConstraintSet_layout_constraintRight_creator com.gaolei.retrofitdemo:layout_constraintRight_creator}
{@link #ConstraintSet_layout_constraintRight_toLeftOf com.gaolei.retrofitdemo:layout_constraintRight_toLeftOf}
{@link #ConstraintSet_layout_constraintRight_toRightOf com.gaolei.retrofitdemo:layout_constraintRight_toRightOf}
{@link #ConstraintSet_layout_constraintStart_toEndOf com.gaolei.retrofitdemo:layout_constraintStart_toEndOf}
{@link #ConstraintSet_layout_constraintStart_toStartOf com.gaolei.retrofitdemo:layout_constraintStart_toStartOf}
{@link #ConstraintSet_layout_constraintTop_creator com.gaolei.retrofitdemo:layout_constraintTop_creator}
{@link #ConstraintSet_layout_constraintTop_toBottomOf com.gaolei.retrofitdemo:layout_constraintTop_toBottomOf}
{@link #ConstraintSet_layout_constraintTop_toTopOf com.gaolei.retrofitdemo:layout_constraintTop_toTopOf}
{@link #ConstraintSet_layout_constraintVertical_bias com.gaolei.retrofitdemo:layout_constraintVertical_bias}
{@link #ConstraintSet_layout_constraintVertical_chainStyle com.gaolei.retrofitdemo:layout_constraintVertical_chainStyle}
{@link #ConstraintSet_layout_constraintVertical_weight com.gaolei.retrofitdemo:layout_constraintVertical_weight}
{@link #ConstraintSet_layout_constraintWidth_default com.gaolei.retrofitdemo:layout_constraintWidth_default}
{@link #ConstraintSet_layout_constraintWidth_max com.gaolei.retrofitdemo:layout_constraintWidth_max}
{@link #ConstraintSet_layout_constraintWidth_min com.gaolei.retrofitdemo:layout_constraintWidth_min}
{@link #ConstraintSet_layout_constraintWidth_percent com.gaolei.retrofitdemo:layout_constraintWidth_percent}
{@link #ConstraintSet_layout_editor_absoluteX com.gaolei.retrofitdemo:layout_editor_absoluteX}
{@link #ConstraintSet_layout_editor_absoluteY com.gaolei.retrofitdemo:layout_editor_absoluteY}
{@link #ConstraintSet_layout_goneMarginBottom com.gaolei.retrofitdemo:layout_goneMarginBottom}
{@link #ConstraintSet_layout_goneMarginEnd com.gaolei.retrofitdemo:layout_goneMarginEnd}
{@link #ConstraintSet_layout_goneMarginLeft com.gaolei.retrofitdemo:layout_goneMarginLeft}
{@link #ConstraintSet_layout_goneMarginRight com.gaolei.retrofitdemo:layout_goneMarginRight}
{@link #ConstraintSet_layout_goneMarginStart com.gaolei.retrofitdemo:layout_goneMarginStart}
{@link #ConstraintSet_layout_goneMarginTop com.gaolei.retrofitdemo:layout_goneMarginTop}
- * @see #ConstraintSet_android_orientation - * @see #ConstraintSet_android_id - * @see #ConstraintSet_android_visibility - * @see #ConstraintSet_android_layout_width - * @see #ConstraintSet_android_layout_height - * @see #ConstraintSet_android_layout_marginLeft - * @see #ConstraintSet_android_layout_marginTop - * @see #ConstraintSet_android_layout_marginRight - * @see #ConstraintSet_android_layout_marginBottom - * @see #ConstraintSet_android_alpha - * @see #ConstraintSet_android_transformPivotX - * @see #ConstraintSet_android_transformPivotY - * @see #ConstraintSet_android_translationX - * @see #ConstraintSet_android_translationY - * @see #ConstraintSet_android_scaleX - * @see #ConstraintSet_android_scaleY - * @see #ConstraintSet_android_rotation - * @see #ConstraintSet_android_rotationX - * @see #ConstraintSet_android_rotationY - * @see #ConstraintSet_android_layout_marginStart - * @see #ConstraintSet_android_layout_marginEnd - * @see #ConstraintSet_android_translationZ - * @see #ConstraintSet_android_elevation - * @see #ConstraintSet_layout_constrainedHeight - * @see #ConstraintSet_layout_constrainedWidth - * @see #ConstraintSet_layout_constraintBaseline_creator - * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf - * @see #ConstraintSet_layout_constraintBottom_creator - * @see #ConstraintSet_layout_constraintBottom_toBottomOf - * @see #ConstraintSet_layout_constraintBottom_toTopOf - * @see #ConstraintSet_layout_constraintCircle - * @see #ConstraintSet_layout_constraintCircleAngle - * @see #ConstraintSet_layout_constraintCircleRadius - * @see #ConstraintSet_layout_constraintDimensionRatio - * @see #ConstraintSet_layout_constraintEnd_toEndOf - * @see #ConstraintSet_layout_constraintEnd_toStartOf - * @see #ConstraintSet_layout_constraintGuide_begin - * @see #ConstraintSet_layout_constraintGuide_end - * @see #ConstraintSet_layout_constraintGuide_percent - * @see #ConstraintSet_layout_constraintHeight_default - * @see #ConstraintSet_layout_constraintHeight_max - * @see #ConstraintSet_layout_constraintHeight_min - * @see #ConstraintSet_layout_constraintHeight_percent - * @see #ConstraintSet_layout_constraintHorizontal_bias - * @see #ConstraintSet_layout_constraintHorizontal_chainStyle - * @see #ConstraintSet_layout_constraintHorizontal_weight - * @see #ConstraintSet_layout_constraintLeft_creator - * @see #ConstraintSet_layout_constraintLeft_toLeftOf - * @see #ConstraintSet_layout_constraintLeft_toRightOf - * @see #ConstraintSet_layout_constraintRight_creator - * @see #ConstraintSet_layout_constraintRight_toLeftOf - * @see #ConstraintSet_layout_constraintRight_toRightOf - * @see #ConstraintSet_layout_constraintStart_toEndOf - * @see #ConstraintSet_layout_constraintStart_toStartOf - * @see #ConstraintSet_layout_constraintTop_creator - * @see #ConstraintSet_layout_constraintTop_toBottomOf - * @see #ConstraintSet_layout_constraintTop_toTopOf - * @see #ConstraintSet_layout_constraintVertical_bias - * @see #ConstraintSet_layout_constraintVertical_chainStyle - * @see #ConstraintSet_layout_constraintVertical_weight - * @see #ConstraintSet_layout_constraintWidth_default - * @see #ConstraintSet_layout_constraintWidth_max - * @see #ConstraintSet_layout_constraintWidth_min - * @see #ConstraintSet_layout_constraintWidth_percent - * @see #ConstraintSet_layout_editor_absoluteX - * @see #ConstraintSet_layout_editor_absoluteY - * @see #ConstraintSet_layout_goneMarginBottom - * @see #ConstraintSet_layout_goneMarginEnd - * @see #ConstraintSet_layout_goneMarginLeft - * @see #ConstraintSet_layout_goneMarginRight - * @see #ConstraintSet_layout_goneMarginStart - * @see #ConstraintSet_layout_goneMarginTop - */ - public static final int[] ConstraintSet={ - 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, - 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, - 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, - 0x01010322, 0x01010323, 0x01010324, 0x01010325, - 0x01010326, 0x01010327, 0x01010328, 0x010103b5, - 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, - 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, - 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, - 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, - 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, - 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, - 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, - 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, - 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, - 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, - 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, - 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, - 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#alpha} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:alpha - */ - public static final int ConstraintSet_android_alpha=9; - /** - *

This symbol is the offset where the {@link android.R.attr#elevation} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:elevation - */ - public static final int ConstraintSet_android_elevation=22; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int ConstraintSet_android_id=1; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_height} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_height - */ - public static final int ConstraintSet_android_layout_height=4; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginBottom} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginBottom - */ - public static final int ConstraintSet_android_layout_marginBottom=8; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginEnd} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginEnd - */ - public static final int ConstraintSet_android_layout_marginEnd=20; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginLeft} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginLeft - */ - public static final int ConstraintSet_android_layout_marginLeft=5; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginRight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginRight - */ - public static final int ConstraintSet_android_layout_marginRight=7; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginStart} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginStart - */ - public static final int ConstraintSet_android_layout_marginStart=19; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_marginTop} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:layout_marginTop - */ - public static final int ConstraintSet_android_layout_marginTop=6; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_width} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_width - */ - public static final int ConstraintSet_android_layout_width=3; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int ConstraintSet_android_orientation=0; - /** - *

This symbol is the offset where the {@link android.R.attr#rotation} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:rotation - */ - public static final int ConstraintSet_android_rotation=16; - /** - *

This symbol is the offset where the {@link android.R.attr#rotationX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:rotationX - */ - public static final int ConstraintSet_android_rotationX=17; - /** - *

This symbol is the offset where the {@link android.R.attr#rotationY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:rotationY - */ - public static final int ConstraintSet_android_rotationY=18; - /** - *

This symbol is the offset where the {@link android.R.attr#scaleX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:scaleX - */ - public static final int ConstraintSet_android_scaleX=14; - /** - *

This symbol is the offset where the {@link android.R.attr#scaleY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:scaleY - */ - public static final int ConstraintSet_android_scaleY=15; - /** - *

This symbol is the offset where the {@link android.R.attr#transformPivotX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:transformPivotX - */ - public static final int ConstraintSet_android_transformPivotX=10; - /** - *

This symbol is the offset where the {@link android.R.attr#transformPivotY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:transformPivotY - */ - public static final int ConstraintSet_android_transformPivotY=11; - /** - *

This symbol is the offset where the {@link android.R.attr#translationX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:translationX - */ - public static final int ConstraintSet_android_translationX=12; - /** - *

This symbol is the offset where the {@link android.R.attr#translationY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:translationY - */ - public static final int ConstraintSet_android_translationY=13; - /** - *

This symbol is the offset where the {@link android.R.attr#translationZ} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:translationZ - */ - public static final int ConstraintSet_android_translationZ=21; - /** - *

This symbol is the offset where the {@link android.R.attr#visibility} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
gone2
invisible1
visible0
- * - * @attr name android:visibility - */ - public static final int ConstraintSet_android_visibility=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constrainedHeight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:layout_constrainedHeight - */ - public static final int ConstraintSet_layout_constrainedHeight=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constrainedWidth} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:layout_constrainedWidth - */ - public static final int ConstraintSet_layout_constrainedWidth=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBaseline_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintBaseline_creator - */ - public static final int ConstraintSet_layout_constraintBaseline_creator=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBaseline_toBaselineOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintBaseline_toBaselineOf - */ - public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBottom_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintBottom_creator - */ - public static final int ConstraintSet_layout_constraintBottom_creator=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBottom_toBottomOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintBottom_toBottomOf - */ - public static final int ConstraintSet_layout_constraintBottom_toBottomOf=28; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintBottom_toTopOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintBottom_toTopOf - */ - public static final int ConstraintSet_layout_constraintBottom_toTopOf=29; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintCircle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintCircle - */ - public static final int ConstraintSet_layout_constraintCircle=30; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintCircleAngle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintCircleAngle - */ - public static final int ConstraintSet_layout_constraintCircleAngle=31; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintCircleRadius} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_constraintCircleRadius - */ - public static final int ConstraintSet_layout_constraintCircleRadius=32; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintDimensionRatio} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:layout_constraintDimensionRatio - */ - public static final int ConstraintSet_layout_constraintDimensionRatio=33; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintEnd_toEndOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintEnd_toEndOf - */ - public static final int ConstraintSet_layout_constraintEnd_toEndOf=34; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintEnd_toStartOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintEnd_toStartOf - */ - public static final int ConstraintSet_layout_constraintEnd_toStartOf=35; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintGuide_begin} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_constraintGuide_begin - */ - public static final int ConstraintSet_layout_constraintGuide_begin=36; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintGuide_end} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_constraintGuide_end - */ - public static final int ConstraintSet_layout_constraintGuide_end=37; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintGuide_percent} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintGuide_percent - */ - public static final int ConstraintSet_layout_constraintGuide_percent=38; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_default} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_default - */ - public static final int ConstraintSet_layout_constraintHeight_default=39; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_max} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_max - */ - public static final int ConstraintSet_layout_constraintHeight_max=40; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_min} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_min - */ - public static final int ConstraintSet_layout_constraintHeight_min=41; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHeight_percent} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintHeight_percent - */ - public static final int ConstraintSet_layout_constraintHeight_percent=42; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHorizontal_bias} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintHorizontal_bias - */ - public static final int ConstraintSet_layout_constraintHorizontal_bias=43; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHorizontal_chainStyle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintHorizontal_chainStyle - */ - public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=44; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintHorizontal_weight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintHorizontal_weight - */ - public static final int ConstraintSet_layout_constraintHorizontal_weight=45; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintLeft_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintLeft_creator - */ - public static final int ConstraintSet_layout_constraintLeft_creator=46; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintLeft_toLeftOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintLeft_toLeftOf - */ - public static final int ConstraintSet_layout_constraintLeft_toLeftOf=47; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintLeft_toRightOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintLeft_toRightOf - */ - public static final int ConstraintSet_layout_constraintLeft_toRightOf=48; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintRight_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintRight_creator - */ - public static final int ConstraintSet_layout_constraintRight_creator=49; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintRight_toLeftOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintRight_toLeftOf - */ - public static final int ConstraintSet_layout_constraintRight_toLeftOf=50; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintRight_toRightOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintRight_toRightOf - */ - public static final int ConstraintSet_layout_constraintRight_toRightOf=51; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintStart_toEndOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintStart_toEndOf - */ - public static final int ConstraintSet_layout_constraintStart_toEndOf=52; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintStart_toStartOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintStart_toStartOf - */ - public static final int ConstraintSet_layout_constraintStart_toStartOf=53; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintTop_creator} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintTop_creator - */ - public static final int ConstraintSet_layout_constraintTop_creator=54; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintTop_toBottomOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintTop_toBottomOf - */ - public static final int ConstraintSet_layout_constraintTop_toBottomOf=55; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintTop_toTopOf} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
parent0
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintTop_toTopOf - */ - public static final int ConstraintSet_layout_constraintTop_toTopOf=56; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintVertical_bias} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintVertical_bias - */ - public static final int ConstraintSet_layout_constraintVertical_bias=57; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintVertical_chainStyle} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
packed2
spread0
spread_inside1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintVertical_chainStyle - */ - public static final int ConstraintSet_layout_constraintVertical_chainStyle=58; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintVertical_weight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintVertical_weight - */ - public static final int ConstraintSet_layout_constraintVertical_weight=59; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_default} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
percent2
spread0
wrap1
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_default - */ - public static final int ConstraintSet_layout_constraintWidth_default=60; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_max} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_max - */ - public static final int ConstraintSet_layout_constraintWidth_max=61; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_min} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
wrapfffffffe
- * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_min - */ - public static final int ConstraintSet_layout_constraintWidth_min=62; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_constraintWidth_percent} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name com.gaolei.retrofitdemo:layout_constraintWidth_percent - */ - public static final int ConstraintSet_layout_constraintWidth_percent=63; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_editor_absoluteX} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_editor_absoluteX - */ - public static final int ConstraintSet_layout_editor_absoluteX=64; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_editor_absoluteY} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_editor_absoluteY - */ - public static final int ConstraintSet_layout_editor_absoluteY=65; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginBottom} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginBottom - */ - public static final int ConstraintSet_layout_goneMarginBottom=66; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginEnd} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginEnd - */ - public static final int ConstraintSet_layout_goneMarginEnd=67; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginLeft} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginLeft - */ - public static final int ConstraintSet_layout_goneMarginLeft=68; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginRight} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginRight - */ - public static final int ConstraintSet_layout_goneMarginRight=69; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginStart} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginStart - */ - public static final int ConstraintSet_layout_goneMarginStart=70; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout_goneMarginTop} - * attribute's value can be found in the {@link #ConstraintSet} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:layout_goneMarginTop - */ - public static final int ConstraintSet_layout_goneMarginTop=71; - /** - * Attributes that can be used with a DrawerArrowToggle. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.gaolei.retrofitdemo:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.gaolei.retrofitdemo:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.gaolei.retrofitdemo:barLength}
{@link #DrawerArrowToggle_color com.gaolei.retrofitdemo:color}
{@link #DrawerArrowToggle_drawableSize com.gaolei.retrofitdemo:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.gaolei.retrofitdemo:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.gaolei.retrofitdemo:spinBars}
{@link #DrawerArrowToggle_thickness com.gaolei.retrofitdemo:thickness}
- * @see #DrawerArrowToggle_arrowHeadLength - * @see #DrawerArrowToggle_arrowShaftLength - * @see #DrawerArrowToggle_barLength - * @see #DrawerArrowToggle_color - * @see #DrawerArrowToggle_drawableSize - * @see #DrawerArrowToggle_gapBetweenBars - * @see #DrawerArrowToggle_spinBars - * @see #DrawerArrowToggle_thickness - */ - public static final int[] DrawerArrowToggle={ - 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, - 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#arrowHeadLength} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:arrowHeadLength - */ - public static final int DrawerArrowToggle_arrowHeadLength=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#arrowShaftLength} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:arrowShaftLength - */ - public static final int DrawerArrowToggle_arrowShaftLength=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#barLength} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:barLength - */ - public static final int DrawerArrowToggle_barLength=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#color} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:color - */ - public static final int DrawerArrowToggle_color=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#drawableSize} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:drawableSize - */ - public static final int DrawerArrowToggle_drawableSize=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#gapBetweenBars} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:gapBetweenBars - */ - public static final int DrawerArrowToggle_gapBetweenBars=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#spinBars} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:spinBars - */ - public static final int DrawerArrowToggle_spinBars=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#thickness} - * attribute's value can be found in the {@link #DrawerArrowToggle} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:thickness - */ - public static final int DrawerArrowToggle_thickness=7; - /** - * Attributes that can be used with a FontFamily. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #FontFamily_fontProviderAuthority com.gaolei.retrofitdemo:fontProviderAuthority}
{@link #FontFamily_fontProviderCerts com.gaolei.retrofitdemo:fontProviderCerts}
{@link #FontFamily_fontProviderFetchStrategy com.gaolei.retrofitdemo:fontProviderFetchStrategy}
{@link #FontFamily_fontProviderFetchTimeout com.gaolei.retrofitdemo:fontProviderFetchTimeout}
{@link #FontFamily_fontProviderPackage com.gaolei.retrofitdemo:fontProviderPackage}
{@link #FontFamily_fontProviderQuery com.gaolei.retrofitdemo:fontProviderQuery}
- * @see #FontFamily_fontProviderAuthority - * @see #FontFamily_fontProviderCerts - * @see #FontFamily_fontProviderFetchStrategy - * @see #FontFamily_fontProviderFetchTimeout - * @see #FontFamily_fontProviderPackage - * @see #FontFamily_fontProviderQuery - */ - public static final int[] FontFamily={ - 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, - 0x7f02007c, 0x7f02007d - }; - /** - * Attributes that can be used with a FontFamilyFont. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #FontFamilyFont_font com.gaolei.retrofitdemo:font}
{@link #FontFamilyFont_fontStyle com.gaolei.retrofitdemo:fontStyle}
{@link #FontFamilyFont_fontWeight com.gaolei.retrofitdemo:fontWeight}
- * @see #FontFamilyFont_font - * @see #FontFamilyFont_fontStyle - * @see #FontFamilyFont_fontWeight - */ - public static final int[] FontFamilyFont={ - 0x7f020076, 0x7f02007e, 0x7f02007f - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#font} - * attribute's value can be found in the {@link #FontFamilyFont} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:font - */ - public static final int FontFamilyFont_font=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontStyle} - * attribute's value can be found in the {@link #FontFamilyFont} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
italic1
normal0
- * - * @attr name com.gaolei.retrofitdemo:fontStyle - */ - public static final int FontFamilyFont_fontStyle=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontWeight} - * attribute's value can be found in the {@link #FontFamilyFont} array. - * - *

May be an integer value, such as "100". - * - * @attr name com.gaolei.retrofitdemo:fontWeight - */ - public static final int FontFamilyFont_fontWeight=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontProviderAuthority} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:fontProviderAuthority - */ - public static final int FontFamily_fontProviderAuthority=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontProviderCerts} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:fontProviderCerts - */ - public static final int FontFamily_fontProviderCerts=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontProviderFetchStrategy} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
async1
blocking0
- * - * @attr name com.gaolei.retrofitdemo:fontProviderFetchStrategy - */ - public static final int FontFamily_fontProviderFetchStrategy=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontProviderFetchTimeout} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be an integer value, such as "100". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
foreverffffffff
- * - * @attr name com.gaolei.retrofitdemo:fontProviderFetchTimeout - */ - public static final int FontFamily_fontProviderFetchTimeout=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontProviderPackage} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:fontProviderPackage - */ - public static final int FontFamily_fontProviderPackage=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontProviderQuery} - * attribute's value can be found in the {@link #FontFamily} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:fontProviderQuery - */ - public static final int FontFamily_fontProviderQuery=5; - /** - * Attributes that can be used with a LinearConstraintLayout. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #LinearConstraintLayout_android_orientation android:orientation}
- * @see #LinearConstraintLayout_android_orientation - */ - public static final int[] LinearConstraintLayout={ - 0x010100c4 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #LinearConstraintLayout} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int LinearConstraintLayout_android_orientation=0; - /** - * Attributes that can be used with a LinearLayoutCompat. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.gaolei.retrofitdemo:divider}
{@link #LinearLayoutCompat_dividerPadding com.gaolei.retrofitdemo:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.gaolei.retrofitdemo:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.gaolei.retrofitdemo:showDividers}
- * @see #LinearLayoutCompat_android_gravity - * @see #LinearLayoutCompat_android_orientation - * @see #LinearLayoutCompat_android_baselineAligned - * @see #LinearLayoutCompat_android_baselineAlignedChildIndex - * @see #LinearLayoutCompat_android_weightSum - * @see #LinearLayoutCompat_divider - * @see #LinearLayoutCompat_dividerPadding - * @see #LinearLayoutCompat_measureWithLargestChild - * @see #LinearLayoutCompat_showDividers - */ - public static final int[] LinearLayoutCompat={ - 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, - 0x7f0200f1 - }; - /** - * Attributes that can be used with a LinearLayoutCompat_Layout. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
- * @see #LinearLayoutCompat_Layout_android_layout_gravity - * @see #LinearLayoutCompat_Layout_android_layout_width - * @see #LinearLayoutCompat_Layout_android_layout_height - * @see #LinearLayoutCompat_Layout_android_layout_weight - */ - public static final int[] LinearLayoutCompat_Layout={ - 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_gravity} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:layout_gravity - */ - public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_height} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_height - */ - public static final int LinearLayoutCompat_Layout_android_layout_height=2; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_weight} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:layout_weight - */ - public static final int LinearLayoutCompat_Layout_android_layout_weight=3; - /** - *

This symbol is the offset where the {@link android.R.attr#layout_width} - * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:layout_width - */ - public static final int LinearLayoutCompat_Layout_android_layout_width=1; - /** - *

This symbol is the offset where the {@link android.R.attr#baselineAligned} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:baselineAligned - */ - public static final int LinearLayoutCompat_android_baselineAligned=2; - /** - *

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be an integer value, such as "100". - * - * @attr name android:baselineAlignedChildIndex - */ - public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; - /** - *

This symbol is the offset where the {@link android.R.attr#gravity} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:gravity - */ - public static final int LinearLayoutCompat_android_gravity=0; - /** - *

This symbol is the offset where the {@link android.R.attr#orientation} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
horizontal0
vertical1
- * - * @attr name android:orientation - */ - public static final int LinearLayoutCompat_android_orientation=1; - /** - *

This symbol is the offset where the {@link android.R.attr#weightSum} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:weightSum - */ - public static final int LinearLayoutCompat_android_weightSum=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#divider} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:divider - */ - public static final int LinearLayoutCompat_divider=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#dividerPadding} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:dividerPadding - */ - public static final int LinearLayoutCompat_dividerPadding=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#measureWithLargestChild} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:measureWithLargestChild - */ - public static final int LinearLayoutCompat_measureWithLargestChild=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#showDividers} - * attribute's value can be found in the {@link #LinearLayoutCompat} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
beginning1
end4
middle2
none0
- * - * @attr name com.gaolei.retrofitdemo:showDividers - */ - public static final int LinearLayoutCompat_showDividers=8; - /** - * Attributes that can be used with a ListPopupWindow. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
- * @see #ListPopupWindow_android_dropDownHorizontalOffset - * @see #ListPopupWindow_android_dropDownVerticalOffset - */ - public static final int[] ListPopupWindow={ - 0x010102ac, 0x010102ad - }; - /** - *

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} - * attribute's value can be found in the {@link #ListPopupWindow} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:dropDownHorizontalOffset - */ - public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; - /** - *

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} - * attribute's value can be found in the {@link #ListPopupWindow} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:dropDownVerticalOffset - */ - public static final int ListPopupWindow_android_dropDownVerticalOffset=1; - /** - * Attributes that can be used with a MenuGroup. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
- * @see #MenuGroup_android_enabled - * @see #MenuGroup_android_id - * @see #MenuGroup_android_visible - * @see #MenuGroup_android_menuCategory - * @see #MenuGroup_android_orderInCategory - * @see #MenuGroup_android_checkableBehavior - */ - public static final int[] MenuGroup={ - 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, - 0x010101df, 0x010101e0 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#checkableBehavior} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
all1
none0
single2
- * - * @attr name android:checkableBehavior - */ - public static final int MenuGroup_android_checkableBehavior=5; - /** - *

This symbol is the offset where the {@link android.R.attr#enabled} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:enabled - */ - public static final int MenuGroup_android_enabled=0; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int MenuGroup_android_id=1; - /** - *

This symbol is the offset where the {@link android.R.attr#menuCategory} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
- * - * @attr name android:menuCategory - */ - public static final int MenuGroup_android_menuCategory=3; - /** - *

This symbol is the offset where the {@link android.R.attr#orderInCategory} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be an integer value, such as "100". - * - * @attr name android:orderInCategory - */ - public static final int MenuGroup_android_orderInCategory=4; - /** - *

This symbol is the offset where the {@link android.R.attr#visible} - * attribute's value can be found in the {@link #MenuGroup} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:visible - */ - public static final int MenuGroup_android_visible=2; - /** - * Attributes that can be used with a MenuItem. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout com.gaolei.retrofitdemo:actionLayout}
{@link #MenuItem_actionProviderClass com.gaolei.retrofitdemo:actionProviderClass}
{@link #MenuItem_actionViewClass com.gaolei.retrofitdemo:actionViewClass}
{@link #MenuItem_alphabeticModifiers com.gaolei.retrofitdemo:alphabeticModifiers}
{@link #MenuItem_contentDescription com.gaolei.retrofitdemo:contentDescription}
{@link #MenuItem_iconTint com.gaolei.retrofitdemo:iconTint}
{@link #MenuItem_iconTintMode com.gaolei.retrofitdemo:iconTintMode}
{@link #MenuItem_numericModifiers com.gaolei.retrofitdemo:numericModifiers}
{@link #MenuItem_showAsAction com.gaolei.retrofitdemo:showAsAction}
{@link #MenuItem_tooltipText com.gaolei.retrofitdemo:tooltipText}
- * @see #MenuItem_android_icon - * @see #MenuItem_android_enabled - * @see #MenuItem_android_id - * @see #MenuItem_android_checked - * @see #MenuItem_android_visible - * @see #MenuItem_android_menuCategory - * @see #MenuItem_android_orderInCategory - * @see #MenuItem_android_title - * @see #MenuItem_android_titleCondensed - * @see #MenuItem_android_alphabeticShortcut - * @see #MenuItem_android_numericShortcut - * @see #MenuItem_android_checkable - * @see #MenuItem_android_onClick - * @see #MenuItem_actionLayout - * @see #MenuItem_actionProviderClass - * @see #MenuItem_actionViewClass - * @see #MenuItem_alphabeticModifiers - * @see #MenuItem_contentDescription - * @see #MenuItem_iconTint - * @see #MenuItem_iconTintMode - * @see #MenuItem_numericModifiers - * @see #MenuItem_showAsAction - * @see #MenuItem_tooltipText - */ - public static final int[] MenuItem={ - 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, - 0x01010194, 0x010101de, 0x010101df, 0x010101e1, - 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, - 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, - 0x7f0200d5, 0x7f0200f0, 0x7f020129 - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionLayout} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:actionLayout - */ - public static final int MenuItem_actionLayout=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionProviderClass} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:actionProviderClass - */ - public static final int MenuItem_actionProviderClass=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#actionViewClass} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:actionViewClass - */ - public static final int MenuItem_actionViewClass=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#alphabeticModifiers} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- * - * @attr name com.gaolei.retrofitdemo:alphabeticModifiers - */ - public static final int MenuItem_alphabeticModifiers=16; - /** - *

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:alphabeticShortcut - */ - public static final int MenuItem_android_alphabeticShortcut=9; - /** - *

This symbol is the offset where the {@link android.R.attr#checkable} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:checkable - */ - public static final int MenuItem_android_checkable=11; - /** - *

This symbol is the offset where the {@link android.R.attr#checked} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:checked - */ - public static final int MenuItem_android_checked=3; - /** - *

This symbol is the offset where the {@link android.R.attr#enabled} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:enabled - */ - public static final int MenuItem_android_enabled=1; - /** - *

This symbol is the offset where the {@link android.R.attr#icon} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:icon - */ - public static final int MenuItem_android_icon=0; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int MenuItem_android_id=2; - /** - *

This symbol is the offset where the {@link android.R.attr#menuCategory} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
- * - * @attr name android:menuCategory - */ - public static final int MenuItem_android_menuCategory=5; - /** - *

This symbol is the offset where the {@link android.R.attr#numericShortcut} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:numericShortcut - */ - public static final int MenuItem_android_numericShortcut=10; - /** - *

This symbol is the offset where the {@link android.R.attr#onClick} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:onClick - */ - public static final int MenuItem_android_onClick=12; - /** - *

This symbol is the offset where the {@link android.R.attr#orderInCategory} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be an integer value, such as "100". - * - * @attr name android:orderInCategory - */ - public static final int MenuItem_android_orderInCategory=6; - /** - *

This symbol is the offset where the {@link android.R.attr#title} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:title - */ - public static final int MenuItem_android_title=7; - /** - *

This symbol is the offset where the {@link android.R.attr#titleCondensed} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:titleCondensed - */ - public static final int MenuItem_android_titleCondensed=8; - /** - *

This symbol is the offset where the {@link android.R.attr#visible} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name android:visible - */ - public static final int MenuItem_android_visible=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentDescription} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:contentDescription - */ - public static final int MenuItem_contentDescription=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#iconTint} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:iconTint - */ - public static final int MenuItem_iconTint=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#iconTintMode} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:iconTintMode - */ - public static final int MenuItem_iconTintMode=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#numericModifiers} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
- * - * @attr name com.gaolei.retrofitdemo:numericModifiers - */ - public static final int MenuItem_numericModifiers=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#showAsAction} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
always2
collapseActionView8
ifRoom1
never0
withText4
- * - * @attr name com.gaolei.retrofitdemo:showAsAction - */ - public static final int MenuItem_showAsAction=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#tooltipText} - * attribute's value can be found in the {@link #MenuItem} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:tooltipText - */ - public static final int MenuItem_tooltipText=22; - /** - * Attributes that can be used with a MenuView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing com.gaolei.retrofitdemo:preserveIconSpacing}
{@link #MenuView_subMenuArrow com.gaolei.retrofitdemo:subMenuArrow}
- * @see #MenuView_android_windowAnimationStyle - * @see #MenuView_android_itemTextAppearance - * @see #MenuView_android_horizontalDivider - * @see #MenuView_android_verticalDivider - * @see #MenuView_android_headerBackground - * @see #MenuView_android_itemBackground - * @see #MenuView_android_itemIconDisabledAlpha - * @see #MenuView_preserveIconSpacing - * @see #MenuView_subMenuArrow - */ - public static final int[] MenuView={ - 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, - 0x7f0200fb - }; - /** - *

This symbol is the offset where the {@link android.R.attr#headerBackground} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:headerBackground - */ - public static final int MenuView_android_headerBackground=4; - /** - *

This symbol is the offset where the {@link android.R.attr#horizontalDivider} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:horizontalDivider - */ - public static final int MenuView_android_horizontalDivider=2; - /** - *

This symbol is the offset where the {@link android.R.attr#itemBackground} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:itemBackground - */ - public static final int MenuView_android_itemBackground=5; - /** - *

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:itemIconDisabledAlpha - */ - public static final int MenuView_android_itemIconDisabledAlpha=6; - /** - *

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:itemTextAppearance - */ - public static final int MenuView_android_itemTextAppearance=1; - /** - *

This symbol is the offset where the {@link android.R.attr#verticalDivider} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:verticalDivider - */ - public static final int MenuView_android_verticalDivider=3; - /** - *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:windowAnimationStyle - */ - public static final int MenuView_android_windowAnimationStyle=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#preserveIconSpacing} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:preserveIconSpacing - */ - public static final int MenuView_preserveIconSpacing=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subMenuArrow} - * attribute's value can be found in the {@link #MenuView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:subMenuArrow - */ - public static final int MenuView_subMenuArrow=8; - /** - * Attributes that can be used with a PopupWindow. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor com.gaolei.retrofitdemo:overlapAnchor}
- * @see #PopupWindow_android_popupBackground - * @see #PopupWindow_android_popupAnimationStyle - * @see #PopupWindow_overlapAnchor - */ - public static final int[] PopupWindow={ - 0x01010176, 0x010102c9, 0x7f0200d6 - }; - /** - * Attributes that can be used with a PopupWindowBackgroundState. - *

Includes the following attributes:

- * - * - * - * - * - *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.gaolei.retrofitdemo:state_above_anchor}
- * @see #PopupWindowBackgroundState_state_above_anchor - */ - public static final int[] PopupWindowBackgroundState={ - 0x7f0200fa - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#state_above_anchor} - * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:state_above_anchor - */ - public static final int PopupWindowBackgroundState_state_above_anchor=0; - /** - *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} - * attribute's value can be found in the {@link #PopupWindow} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:popupAnimationStyle - */ - public static final int PopupWindow_android_popupAnimationStyle=1; - /** - *

This symbol is the offset where the {@link android.R.attr#popupBackground} - * attribute's value can be found in the {@link #PopupWindow} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:popupBackground - */ - public static final int PopupWindow_android_popupBackground=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#overlapAnchor} - * attribute's value can be found in the {@link #PopupWindow} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:overlapAnchor - */ - public static final int PopupWindow_overlapAnchor=2; - /** - * Attributes that can be used with a RecycleListView. - *

Includes the following attributes:

- * - * - * - * - * - * - *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons com.gaolei.retrofitdemo:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle com.gaolei.retrofitdemo:paddingTopNoTitle}
- * @see #RecycleListView_paddingBottomNoButtons - * @see #RecycleListView_paddingTopNoTitle - */ - public static final int[] RecycleListView={ - 0x7f0200d7, 0x7f0200da - }; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#paddingBottomNoButtons} - * attribute's value can be found in the {@link #RecycleListView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:paddingBottomNoButtons - */ - public static final int RecycleListView_paddingBottomNoButtons=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#paddingTopNoTitle} - * attribute's value can be found in the {@link #RecycleListView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:paddingTopNoTitle - */ - public static final int RecycleListView_paddingTopNoTitle=1; - /** - * Attributes that can be used with a SearchView. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_closeIcon com.gaolei.retrofitdemo:closeIcon}
{@link #SearchView_commitIcon com.gaolei.retrofitdemo:commitIcon}
{@link #SearchView_defaultQueryHint com.gaolei.retrofitdemo:defaultQueryHint}
{@link #SearchView_goIcon com.gaolei.retrofitdemo:goIcon}
{@link #SearchView_iconifiedByDefault com.gaolei.retrofitdemo:iconifiedByDefault}
{@link #SearchView_layout com.gaolei.retrofitdemo:layout}
{@link #SearchView_queryBackground com.gaolei.retrofitdemo:queryBackground}
{@link #SearchView_queryHint com.gaolei.retrofitdemo:queryHint}
{@link #SearchView_searchHintIcon com.gaolei.retrofitdemo:searchHintIcon}
{@link #SearchView_searchIcon com.gaolei.retrofitdemo:searchIcon}
{@link #SearchView_submitBackground com.gaolei.retrofitdemo:submitBackground}
{@link #SearchView_suggestionRowLayout com.gaolei.retrofitdemo:suggestionRowLayout}
{@link #SearchView_voiceIcon com.gaolei.retrofitdemo:voiceIcon}
- * @see #SearchView_android_focusable - * @see #SearchView_android_maxWidth - * @see #SearchView_android_inputType - * @see #SearchView_android_imeOptions - * @see #SearchView_closeIcon - * @see #SearchView_commitIcon - * @see #SearchView_defaultQueryHint - * @see #SearchView_goIcon - * @see #SearchView_iconifiedByDefault - * @see #SearchView_layout - * @see #SearchView_queryBackground - * @see #SearchView_queryHint - * @see #SearchView_searchHintIcon - * @see #SearchView_searchIcon - * @see #SearchView_submitBackground - * @see #SearchView_suggestionRowLayout - * @see #SearchView_voiceIcon - */ - public static final int[] SearchView={ - 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, - 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, - 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, - 0x7f02012d - }; - /** - *

This symbol is the offset where the {@link android.R.attr#focusable} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a boolean value, such as "true" or - * "false". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
auto10
- * - * @attr name android:focusable - */ - public static final int SearchView_android_focusable=0; - /** - *

This symbol is the offset where the {@link android.R.attr#imeOptions} - * attribute's value can be found in the {@link #SearchView} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
- * - * @attr name android:imeOptions - */ - public static final int SearchView_android_imeOptions=3; - /** - *

This symbol is the offset where the {@link android.R.attr#inputType} - * attribute's value can be found in the {@link #SearchView} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
- * - * @attr name android:inputType - */ - public static final int SearchView_android_inputType=2; - /** - *

This symbol is the offset where the {@link android.R.attr#maxWidth} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:maxWidth - */ - public static final int SearchView_android_maxWidth=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#closeIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:closeIcon - */ - public static final int SearchView_closeIcon=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#commitIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:commitIcon - */ - public static final int SearchView_commitIcon=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#defaultQueryHint} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:defaultQueryHint - */ - public static final int SearchView_defaultQueryHint=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#goIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:goIcon - */ - public static final int SearchView_goIcon=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#iconifiedByDefault} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:iconifiedByDefault - */ - public static final int SearchView_iconifiedByDefault=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#layout} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:layout - */ - public static final int SearchView_layout=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#queryBackground} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:queryBackground - */ - public static final int SearchView_queryBackground=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#queryHint} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:queryHint - */ - public static final int SearchView_queryHint=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#searchHintIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:searchHintIcon - */ - public static final int SearchView_searchHintIcon=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#searchIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:searchIcon - */ - public static final int SearchView_searchIcon=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#submitBackground} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:submitBackground - */ - public static final int SearchView_submitBackground=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#suggestionRowLayout} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:suggestionRowLayout - */ - public static final int SearchView_suggestionRowLayout=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#voiceIcon} - * attribute's value can be found in the {@link #SearchView} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:voiceIcon - */ - public static final int SearchView_voiceIcon=16; - /** - * Attributes that can be used with a Spinner. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme com.gaolei.retrofitdemo:popupTheme}
- * @see #Spinner_android_entries - * @see #Spinner_android_popupBackground - * @see #Spinner_android_prompt - * @see #Spinner_android_dropDownWidth - * @see #Spinner_popupTheme - */ - public static final int[] Spinner={ - 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, - 0x7f0200df - }; - /** - *

This symbol is the offset where the {@link android.R.attr#dropDownWidth} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
- * - * @attr name android:dropDownWidth - */ - public static final int Spinner_android_dropDownWidth=3; - /** - *

This symbol is the offset where the {@link android.R.attr#entries} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:entries - */ - public static final int Spinner_android_entries=0; - /** - *

This symbol is the offset where the {@link android.R.attr#popupBackground} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:popupBackground - */ - public static final int Spinner_android_popupBackground=1; - /** - *

This symbol is the offset where the {@link android.R.attr#prompt} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:prompt - */ - public static final int Spinner_android_prompt=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#popupTheme} - * attribute's value can be found in the {@link #Spinner} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:popupTheme - */ - public static final int Spinner_popupTheme=4; - /** - * Attributes that can be used with a SwitchCompat. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.gaolei.retrofitdemo:showText}
{@link #SwitchCompat_splitTrack com.gaolei.retrofitdemo:splitTrack}
{@link #SwitchCompat_switchMinWidth com.gaolei.retrofitdemo:switchMinWidth}
{@link #SwitchCompat_switchPadding com.gaolei.retrofitdemo:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.gaolei.retrofitdemo:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.gaolei.retrofitdemo:thumbTextPadding}
{@link #SwitchCompat_thumbTint com.gaolei.retrofitdemo:thumbTint}
{@link #SwitchCompat_thumbTintMode com.gaolei.retrofitdemo:thumbTintMode}
{@link #SwitchCompat_track com.gaolei.retrofitdemo:track}
{@link #SwitchCompat_trackTint com.gaolei.retrofitdemo:trackTint}
{@link #SwitchCompat_trackTintMode com.gaolei.retrofitdemo:trackTintMode}
- * @see #SwitchCompat_android_textOn - * @see #SwitchCompat_android_textOff - * @see #SwitchCompat_android_thumb - * @see #SwitchCompat_showText - * @see #SwitchCompat_splitTrack - * @see #SwitchCompat_switchMinWidth - * @see #SwitchCompat_switchPadding - * @see #SwitchCompat_switchTextAppearance - * @see #SwitchCompat_thumbTextPadding - * @see #SwitchCompat_thumbTint - * @see #SwitchCompat_thumbTintMode - * @see #SwitchCompat_track - * @see #SwitchCompat_trackTint - * @see #SwitchCompat_trackTintMode - */ - public static final int[] SwitchCompat={ - 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, - 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, - 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, - 0x7f02012b, 0x7f02012c - }; - /** - *

This symbol is the offset where the {@link android.R.attr#textOff} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:textOff - */ - public static final int SwitchCompat_android_textOff=1; - /** - *

This symbol is the offset where the {@link android.R.attr#textOn} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:textOn - */ - public static final int SwitchCompat_android_textOn=0; - /** - *

This symbol is the offset where the {@link android.R.attr#thumb} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:thumb - */ - public static final int SwitchCompat_android_thumb=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#showText} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:showText - */ - public static final int SwitchCompat_showText=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#splitTrack} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:splitTrack - */ - public static final int SwitchCompat_splitTrack=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#switchMinWidth} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:switchMinWidth - */ - public static final int SwitchCompat_switchMinWidth=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#switchPadding} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:switchPadding - */ - public static final int SwitchCompat_switchPadding=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#switchTextAppearance} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:switchTextAppearance - */ - public static final int SwitchCompat_switchTextAppearance=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#thumbTextPadding} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:thumbTextPadding - */ - public static final int SwitchCompat_thumbTextPadding=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#thumbTint} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:thumbTint - */ - public static final int SwitchCompat_thumbTint=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#thumbTintMode} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:thumbTintMode - */ - public static final int SwitchCompat_thumbTintMode=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#track} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:track - */ - public static final int SwitchCompat_track=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#trackTint} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:trackTint - */ - public static final int SwitchCompat_trackTint=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#trackTintMode} - * attribute's value can be found in the {@link #SwitchCompat} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:trackTintMode - */ - public static final int SwitchCompat_trackTintMode=13; - /** - * Attributes that can be used with a TextAppearance. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_fontFamily com.gaolei.retrofitdemo:fontFamily}
{@link #TextAppearance_textAllCaps com.gaolei.retrofitdemo:textAllCaps}
- * @see #TextAppearance_android_textSize - * @see #TextAppearance_android_typeface - * @see #TextAppearance_android_textStyle - * @see #TextAppearance_android_textColor - * @see #TextAppearance_android_textColorHint - * @see #TextAppearance_android_textColorLink - * @see #TextAppearance_android_shadowColor - * @see #TextAppearance_android_shadowDx - * @see #TextAppearance_android_shadowDy - * @see #TextAppearance_android_shadowRadius - * @see #TextAppearance_android_fontFamily - * @see #TextAppearance_fontFamily - * @see #TextAppearance_textAllCaps - */ - public static final int[] TextAppearance={ - 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, - 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, - 0x7f020106 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#fontFamily} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name android:fontFamily - */ - public static final int TextAppearance_android_fontFamily=10; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowColor} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:shadowColor - */ - public static final int TextAppearance_android_shadowColor=6; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowDx} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:shadowDx - */ - public static final int TextAppearance_android_shadowDx=7; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowDy} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:shadowDy - */ - public static final int TextAppearance_android_shadowDy=8; - /** - *

This symbol is the offset where the {@link android.R.attr#shadowRadius} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a floating point value, such as "1.2". - * - * @attr name android:shadowRadius - */ - public static final int TextAppearance_android_shadowRadius=9; - /** - *

This symbol is the offset where the {@link android.R.attr#textColor} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:textColor - */ - public static final int TextAppearance_android_textColor=3; - /** - *

This symbol is the offset where the {@link android.R.attr#textColorHint} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:textColorHint - */ - public static final int TextAppearance_android_textColorHint=4; - /** - *

This symbol is the offset where the {@link android.R.attr#textColorLink} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:textColorLink - */ - public static final int TextAppearance_android_textColorLink=5; - /** - *

This symbol is the offset where the {@link android.R.attr#textSize} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:textSize - */ - public static final int TextAppearance_android_textSize=0; - /** - *

This symbol is the offset where the {@link android.R.attr#textStyle} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - *
ConstantValueDescription
bold1
italic2
normal0
- * - * @attr name android:textStyle - */ - public static final int TextAppearance_android_textStyle=2; - /** - *

This symbol is the offset where the {@link android.R.attr#typeface} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
monospace3
normal0
sans1
serif2
- * - * @attr name android:typeface - */ - public static final int TextAppearance_android_typeface=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#fontFamily} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:fontFamily - */ - public static final int TextAppearance_fontFamily=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#textAllCaps} - * attribute's value can be found in the {@link #TextAppearance} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a boolean value, such as "true" or - * "false". - * - * @attr name com.gaolei.retrofitdemo:textAllCaps - */ - public static final int TextAppearance_textAllCaps=12; - /** - * Attributes that can be used with a Toolbar. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity com.gaolei.retrofitdemo:buttonGravity}
{@link #Toolbar_collapseContentDescription com.gaolei.retrofitdemo:collapseContentDescription}
{@link #Toolbar_collapseIcon com.gaolei.retrofitdemo:collapseIcon}
{@link #Toolbar_contentInsetEnd com.gaolei.retrofitdemo:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions com.gaolei.retrofitdemo:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft com.gaolei.retrofitdemo:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.gaolei.retrofitdemo:contentInsetRight}
{@link #Toolbar_contentInsetStart com.gaolei.retrofitdemo:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation com.gaolei.retrofitdemo:contentInsetStartWithNavigation}
{@link #Toolbar_logo com.gaolei.retrofitdemo:logo}
{@link #Toolbar_logoDescription com.gaolei.retrofitdemo:logoDescription}
{@link #Toolbar_maxButtonHeight com.gaolei.retrofitdemo:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.gaolei.retrofitdemo:navigationContentDescription}
{@link #Toolbar_navigationIcon com.gaolei.retrofitdemo:navigationIcon}
{@link #Toolbar_popupTheme com.gaolei.retrofitdemo:popupTheme}
{@link #Toolbar_subtitle com.gaolei.retrofitdemo:subtitle}
{@link #Toolbar_subtitleTextAppearance com.gaolei.retrofitdemo:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.gaolei.retrofitdemo:subtitleTextColor}
{@link #Toolbar_title com.gaolei.retrofitdemo:title}
{@link #Toolbar_titleMargin com.gaolei.retrofitdemo:titleMargin}
{@link #Toolbar_titleMarginBottom com.gaolei.retrofitdemo:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.gaolei.retrofitdemo:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.gaolei.retrofitdemo:titleMarginStart}
{@link #Toolbar_titleMarginTop com.gaolei.retrofitdemo:titleMarginTop}
{@link #Toolbar_titleMargins com.gaolei.retrofitdemo:titleMargins}
{@link #Toolbar_titleTextAppearance com.gaolei.retrofitdemo:titleTextAppearance}
{@link #Toolbar_titleTextColor com.gaolei.retrofitdemo:titleTextColor}
- * @see #Toolbar_android_gravity - * @see #Toolbar_android_minHeight - * @see #Toolbar_buttonGravity - * @see #Toolbar_collapseContentDescription - * @see #Toolbar_collapseIcon - * @see #Toolbar_contentInsetEnd - * @see #Toolbar_contentInsetEndWithActions - * @see #Toolbar_contentInsetLeft - * @see #Toolbar_contentInsetRight - * @see #Toolbar_contentInsetStart - * @see #Toolbar_contentInsetStartWithNavigation - * @see #Toolbar_logo - * @see #Toolbar_logoDescription - * @see #Toolbar_maxButtonHeight - * @see #Toolbar_navigationContentDescription - * @see #Toolbar_navigationIcon - * @see #Toolbar_popupTheme - * @see #Toolbar_subtitle - * @see #Toolbar_subtitleTextAppearance - * @see #Toolbar_subtitleTextColor - * @see #Toolbar_title - * @see #Toolbar_titleMargin - * @see #Toolbar_titleMarginBottom - * @see #Toolbar_titleMarginEnd - * @see #Toolbar_titleMarginStart - * @see #Toolbar_titleMarginTop - * @see #Toolbar_titleMargins - * @see #Toolbar_titleTextAppearance - * @see #Toolbar_titleTextColor - */ - public static final int[] Toolbar={ - 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, - 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, - 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, - 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, - 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, - 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, - 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, - 0x7f020123 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#gravity} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
- * - * @attr name android:gravity - */ - public static final int Toolbar_android_gravity=0; - /** - *

This symbol is the offset where the {@link android.R.attr#minHeight} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name android:minHeight - */ - public static final int Toolbar_android_minHeight=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#buttonGravity} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

Must be one or more (separated by '|') of the following constant values.

- * - * - * - * - * - * - * - *
ConstantValueDescription
bottom50
top30
- * - * @attr name com.gaolei.retrofitdemo:buttonGravity - */ - public static final int Toolbar_buttonGravity=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#collapseContentDescription} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:collapseContentDescription - */ - public static final int Toolbar_collapseContentDescription=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#collapseIcon} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:collapseIcon - */ - public static final int Toolbar_collapseIcon=4; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetEnd} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetEnd - */ - public static final int Toolbar_contentInsetEnd=5; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetEndWithActions} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetEndWithActions - */ - public static final int Toolbar_contentInsetEndWithActions=6; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetLeft} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetLeft - */ - public static final int Toolbar_contentInsetLeft=7; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetRight} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetRight - */ - public static final int Toolbar_contentInsetRight=8; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetStart} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetStart - */ - public static final int Toolbar_contentInsetStart=9; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#contentInsetStartWithNavigation} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:contentInsetStartWithNavigation - */ - public static final int Toolbar_contentInsetStartWithNavigation=10; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#logo} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:logo - */ - public static final int Toolbar_logo=11; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#logoDescription} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:logoDescription - */ - public static final int Toolbar_logoDescription=12; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#maxButtonHeight} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:maxButtonHeight - */ - public static final int Toolbar_maxButtonHeight=13; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#navigationContentDescription} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:navigationContentDescription - */ - public static final int Toolbar_navigationContentDescription=14; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#navigationIcon} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:navigationIcon - */ - public static final int Toolbar_navigationIcon=15; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#popupTheme} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:popupTheme - */ - public static final int Toolbar_popupTheme=16; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subtitle} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:subtitle - */ - public static final int Toolbar_subtitle=17; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subtitleTextAppearance} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:subtitleTextAppearance - */ - public static final int Toolbar_subtitleTextAppearance=18; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#subtitleTextColor} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:subtitleTextColor - */ - public static final int Toolbar_subtitleTextColor=19; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#title} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a string value, using '\\;' to escape characters such as - * '\\n' or '\\uxxxx' for a unicode character; - * - * @attr name com.gaolei.retrofitdemo:title - */ - public static final int Toolbar_title=20; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleMargin} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:titleMargin - */ - public static final int Toolbar_titleMargin=21; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleMarginBottom} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:titleMarginBottom - */ - public static final int Toolbar_titleMarginBottom=22; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleMarginEnd} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:titleMarginEnd - */ - public static final int Toolbar_titleMarginEnd=23; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleMarginStart} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:titleMarginStart - */ - public static final int Toolbar_titleMarginStart=24; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleMarginTop} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:titleMarginTop - */ - public static final int Toolbar_titleMarginTop=25; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleMargins} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:titleMargins - */ - public static final int Toolbar_titleMargins=26; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleTextAppearance} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:titleTextAppearance - */ - public static final int Toolbar_titleTextAppearance=27; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#titleTextColor} - * attribute's value can be found in the {@link #Toolbar} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:titleTextColor - */ - public static final int Toolbar_titleTextColor=28; - /** - * Attributes that can be used with a View. - *

Includes the following attributes:

- * - * - * - * - * - * - * - * - * - *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd com.gaolei.retrofitdemo:paddingEnd}
{@link #View_paddingStart com.gaolei.retrofitdemo:paddingStart}
{@link #View_theme com.gaolei.retrofitdemo:theme}
- * @see #View_android_theme - * @see #View_android_focusable - * @see #View_paddingEnd - * @see #View_paddingStart - * @see #View_theme - */ - public static final int[] View={ - 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, - 0x7f020111 - }; - /** - * Attributes that can be used with a ViewBackgroundHelper. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.gaolei.retrofitdemo:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.gaolei.retrofitdemo:backgroundTintMode}
- * @see #ViewBackgroundHelper_android_background - * @see #ViewBackgroundHelper_backgroundTint - * @see #ViewBackgroundHelper_backgroundTintMode - */ - public static final int[] ViewBackgroundHelper={ - 0x010100d4, 0x7f020034, 0x7f020035 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#background} - * attribute's value can be found in the {@link #ViewBackgroundHelper} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name android:background - */ - public static final int ViewBackgroundHelper_android_background=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#backgroundTint} - * attribute's value can be found in the {@link #ViewBackgroundHelper} array. - * - *

May be a color value, in the form of "#rgb", - * "#argb", "#rrggbb", or - * "#aarrggbb". - * - * @attr name com.gaolei.retrofitdemo:backgroundTint - */ - public static final int ViewBackgroundHelper_backgroundTint=1; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#backgroundTintMode} - * attribute's value can be found in the {@link #ViewBackgroundHelper} array. - * - *

Must be one of the following constant values.

- * - * - * - * - * - * - * - * - * - * - *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
- * - * @attr name com.gaolei.retrofitdemo:backgroundTintMode - */ - public static final int ViewBackgroundHelper_backgroundTintMode=2; - /** - * Attributes that can be used with a ViewStubCompat. - *

Includes the following attributes:

- * - * - * - * - * - * - * - *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
- * @see #ViewStubCompat_android_id - * @see #ViewStubCompat_android_layout - * @see #ViewStubCompat_android_inflatedId - */ - public static final int[] ViewStubCompat={ - 0x010100d0, 0x010100f2, 0x010100f3 - }; - /** - *

This symbol is the offset where the {@link android.R.attr#id} - * attribute's value can be found in the {@link #ViewStubCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:id - */ - public static final int ViewStubCompat_android_id=0; - /** - *

This symbol is the offset where the {@link android.R.attr#inflatedId} - * attribute's value can be found in the {@link #ViewStubCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:inflatedId - */ - public static final int ViewStubCompat_android_inflatedId=2; - /** - *

This symbol is the offset where the {@link android.R.attr#layout} - * attribute's value can be found in the {@link #ViewStubCompat} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:layout - */ - public static final int ViewStubCompat_android_layout=1; - /** - *

This symbol is the offset where the {@link android.R.attr#focusable} - * attribute's value can be found in the {@link #View} array. - * - *

May be a boolean value, such as "true" or - * "false". - *

Must be one of the following constant values.

- * - * - * - * - * - * - *
ConstantValueDescription
auto10
- * - * @attr name android:focusable - */ - public static final int View_android_focusable=1; - /** - *

This symbol is the offset where the {@link android.R.attr#theme} - * attribute's value can be found in the {@link #View} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name android:theme - */ - public static final int View_android_theme=0; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#paddingEnd} - * attribute's value can be found in the {@link #View} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:paddingEnd - */ - public static final int View_paddingEnd=2; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#paddingStart} - * attribute's value can be found in the {@link #View} array. - * - *

May be a dimension value, which is a floating point number appended with a - * unit such as "14.5sp". - * Available units are: px (pixels), dp (density-independent pixels), - * sp (scaled pixels based on preferred font size), in (inches), and - * mm (millimeters). - * - * @attr name com.gaolei.retrofitdemo:paddingStart - */ - public static final int View_paddingStart=3; - /** - *

This symbol is the offset where the {@link com.gaolei.retrofitdemo.R.attr#theme} - * attribute's value can be found in the {@link #View} array. - * - *

May be a reference to another resource, in the form - * "@[+][package:]type/name" or a theme - * attribute in the form - * "?[package:]type/name". - * - * @attr name com.gaolei.retrofitdemo:theme - */ - public static final int View_theme=4; - } -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/debug.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/debug.json deleted file mode 100644 index 529c7d2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/debug.json +++ /dev/null @@ -1,1720 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ro/values-ro.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,176,284,407,511,624,712,824,945,1030,1111,1194,1306,1419,1519,1633,1738,1844,1965,2068,2151", - "endColumns": "120,107,122,103,112,87,111,120,84,80,82,111,112,99,113,104,105,120,102,82,100", - "endOffsets": "171,279,402,506,619,707,819,940,1025,1106,1189,1301,1414,1514,1628,1733,1839,1960,2063,2146,2247" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ne/values-ne.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,603,694,801,928,1022,1112,1200,1310,1426,1529,1644,1746,1861,1992,2104,2190", - "endColumns": "104,107,122,103,107,90,106,126,93,89,87,109,115,102,114,101,114,130,111,85,100", - "endOffsets": "155,263,386,490,598,689,796,923,1017,1107,1195,1305,1421,1524,1639,1741,1856,1987,2099,2185,2286" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-eu/values-eu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,493,603,689,795,919,1006,1090,1172,1281,1391,1490,1599,1712,1823,1960,2059,2141", - "endColumns": "108,107,122,97,109,85,105,123,86,83,81,108,109,98,108,112,110,136,98,81,100", - "endOffsets": "159,267,390,488,598,684,790,914,1001,1085,1167,1276,1386,1485,1594,1707,1818,1955,2054,2136,2237" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-el/values-el.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,515,632,717,822,948,1036,1122,1207,1318,1428,1530,1641,1750,1858,1981,2081,2166", - "endColumns": "117,107,122,110,116,84,104,125,87,85,84,110,109,101,110,108,107,122,99,84,100", - "endOffsets": "168,276,399,510,627,712,817,943,1031,1117,1202,1313,1423,1525,1636,1745,1853,1976,2076,2161,2262" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rAU/values-en-rAU.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw600dp-v13/values-sw600dp-v13.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,124,193,263,337,413,472,543", - "endColumns": "68,68,69,73,75,58,70,67", - "endOffsets": "119,188,258,332,408,467,538,606" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v11_values-v11.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v11/values-v11.xml", - "from": { - "startLines": "2,8,14,20,26,32,38,39,43,47,48,52,56,57,61,66,71,76,78,80,81,82,136,191", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,474,899,1327,1753,2180,2605,2694,2940,3189,3290,3542,3797,3900,4153,4561,4981,5403,5510,5639,5710,5793,9818,13986", - "endLines": "7,13,19,25,31,37,38,42,46,47,51,55,56,60,65,70,75,77,79,80,81,135,190,191", - "endColumns": "12,12,12,12,12,12,88,12,12,100,12,12,102,12,12,12,12,12,12,70,82,12,12,90", - "endOffsets": "469,894,1322,1748,2175,2600,2689,2935,3184,3285,3537,3792,3895,4148,4556,4976,5398,5505,5634,5705,5788,9813,13981,14072" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mn/values-mn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,168,276,399,499,612,699,805,917,999,1081,1163,1272,1376,1473,1581,1682,1785,1907,2004,2085", - "endColumns": "112,107,122,99,112,86,105,111,81,81,81,108,103,96,107,100,102,121,96,80,100", - "endOffsets": "163,271,394,494,607,694,800,912,994,1076,1158,1267,1371,1468,1576,1677,1780,1902,1999,2080,2181" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uk/values-uk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,604,690,798,916,995,1075,1156,1262,1369,1467,1575,1681,1790,1914,2014,2095", - "endColumns": "109,107,122,101,105,85,107,117,78,79,80,105,106,97,107,105,108,123,99,80,100", - "endOffsets": "160,268,391,493,599,685,793,911,990,1070,1151,1257,1364,1462,1570,1676,1785,1909,2009,2090,2191" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mr/values-mr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,707,808,923,1000,1078,1158,1270,1372,1468,1577,1678,1793,1916,2021,2101", - "endColumns": "117,107,122,105,106,89,100,114,76,77,79,111,101,95,108,100,114,122,104,79,100", - "endOffsets": "168,276,399,505,612,702,803,918,995,1073,1153,1265,1367,1463,1572,1673,1788,1911,2016,2096,2197" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-xlarge-v4/values-xlarge-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,126,197,267,337,405", - "endColumns": "70,70,69,69,67,67", - "endOffsets": "121,192,262,332,400,468" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gl/values-gl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,510,618,703,805,931,1015,1096,1178,1285,1394,1493,1601,1705,1812,1934,2034,2116", - "endColumns": "111,107,122,111,107,84,101,125,83,80,81,106,108,98,107,103,106,121,99,81,100", - "endOffsets": "162,270,393,505,613,698,800,926,1010,1091,1173,1280,1389,1488,1596,1700,1807,1929,2029,2111,2212" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,121,182,248", - "endColumns": "65,60,65,66", - "endOffsets": "116,177,243,310" - }, - "to": { - "startLines": "8,9,10,11", - "startColumns": "4,4,4,4", - "startOffsets": "619,685,746,812", - "endColumns": "65,60,65,66", - "endOffsets": "680,741,807,874" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,212,347,416,480,549", - "endColumns": "156,134,68,63,68,69", - "endOffsets": "207,342,411,475,544,614" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-h720dp-v13/values-h720dp-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "66", - "endOffsets": "117" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es-rUS/values-es-rUS.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,515,623,708,809,932,1017,1099,1181,1293,1393,1494,1602,1709,1816,1938,2038,2120", - "endColumns": "119,107,122,108,107,84,100,122,84,81,81,111,99,100,107,106,106,121,99,81,100", - "endOffsets": "170,278,401,510,618,703,804,927,1012,1094,1176,1288,1388,1489,1597,1704,1811,1933,2033,2115,2216" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247,259,260,261,264,267,268,271,272", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8800,11880,12078,12278,12401,12524,12637,12820,12951,13152,13241,13352,13585,13686,13781,13904,14033,14150,14327,14426,14561,14704,14839,14958,15159,15278,15371,15482,15538,15645,15840,15951,16084,16179,16270,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966,19085,19214,19385,19551,19680,19851,19982", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258,259,260,263,266,267,270,271,274", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8795,11875,12073,12273,12396,12519,12632,12815,12946,13147,13236,13347,13580,13681,13776,13899,14028,14145,14322,14421,14556,14699,14834,14953,15154,15273,15366,15477,15533,15640,15835,15946,16079,16174,16265,16356,16473,16612,16683,16766,17446,17503,17561,18255,18961,19080,19209,19380,19546,19675,19846,19977,20147" - }, - "to": { - "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251,263,264,265,268,271,272,275,276", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9099,12179,12377,12577,12700,12823,12936,13119,13250,13451,13540,13651,13884,13985,14080,14203,14332,14449,14626,14725,14860,15003,15138,15257,15458,15577,15670,15781,15837,15944,16139,16250,16383,16478,16569,16660,16777,16916,16987,17070,17750,17807,17865,18559,19265,19384,19513,19684,19850,19979,20150,20281", - "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262,263,264,267,270,271,274,275,278", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9094,12174,12372,12572,12695,12818,12931,13114,13245,13446,13535,13646,13879,13980,14075,14198,14327,14444,14621,14720,14855,14998,15133,15252,15453,15572,15665,15776,15832,15939,16134,16245,16378,16473,16564,16655,16772,16911,16982,17065,17745,17802,17860,18554,19260,19379,19508,19679,19845,19974,20145,20276,20446" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,5,8,11", - "startColumns": "4,4,4,4", - "startOffsets": "55,223,386,554", - "endLines": "4,7,10,13", - "endColumns": "12,12,12,12", - "endOffsets": "218,381,549,716" - }, - "to": { - "startLines": "281,284,288,292", - "startColumns": "4,4,4,4", - "startOffsets": "20693,20861,21150,21446", - "endLines": "283,286,290,294", - "endColumns": "12,12,12,12", - "endOffsets": "20856,21019,21313,21608" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,13", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,354,470,596,722,850,1022", - "endLines": "2,3,4,5,6,7,8,9,12,17", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" - }, - "to": { - "startLines": "2,3,4,5,279,280,287,291,295,298", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,20451,20567,21024,21318,21613,21785", - "endLines": "2,3,4,5,279,280,287,291,297,302", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,20562,20688,21145,21441,21780,22118" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-km/values-km.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,489,601,688,792,910,987,1064,1147,1251,1356,1456,1566,1673,1781,1904,2002,2085", - "endColumns": "102,107,122,99,111,86,103,117,76,76,82,103,104,99,109,106,107,122,97,82,100", - "endOffsets": "153,261,384,484,596,683,787,905,982,1059,1142,1246,1351,1451,1561,1668,1776,1899,1997,2080,2181" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zu/values-zu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,501,615,703,806,933,1013,1093,1179,1283,1389,1487,1594,1700,1806,1926,2022,2103", - "endColumns": "107,107,122,106,113,87,102,126,79,79,85,103,105,97,106,105,105,119,95,80,100", - "endOffsets": "158,266,389,496,610,698,801,928,1008,1088,1174,1278,1384,1482,1589,1695,1801,1921,2017,2098,2199" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bg/values-bg.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,281,409,516,621,707,812,933,1012,1090,1173,1287,1396,1496,1610,1716,1824,1947,2046,2129", - "endColumns": "114,110,127,106,104,85,104,120,78,77,82,113,108,99,113,105,107,122,98,82,100", - "endOffsets": "165,276,404,511,616,702,807,928,1007,1085,1168,1282,1391,1491,1605,1711,1819,1942,2041,2124,2225" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rCN/values-zh-rCN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,151,258,381,476,576,658,755,861,937,1013,1091,1187,1283,1378,1475,1570,1668,1780,1874,1952", - "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", - "endOffsets": "146,253,376,471,571,653,750,856,932,1008,1086,1182,1278,1373,1470,1565,1663,1775,1869,1947,2048" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bs/values-bs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,514,621,707,808,930,1012,1093,1179,1282,1387,1485,1590,1701,1806,1926,2023,2107", - "endColumns": "118,107,122,108,106,85,100,121,81,80,85,102,104,97,104,110,104,119,96,83,100", - "endOffsets": "169,277,400,509,616,702,803,925,1007,1088,1174,1277,1382,1480,1585,1696,1801,1921,2018,2102,2203" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-in/values-in.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,603,690,794,910,992,1071,1157,1260,1369,1470,1574,1682,1790,1913,2012,2096", - "endColumns": "109,107,122,101,104,86,103,115,81,78,85,102,108,100,103,107,107,122,98,83,100", - "endOffsets": "160,268,391,493,598,685,789,905,987,1066,1152,1255,1364,1465,1569,1677,1785,1908,2007,2091,2192" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hy/values-hy.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,490,600,689,795,910,992,1073,1158,1265,1372,1471,1581,1688,1788,1913,2012,2094", - "endColumns": "102,107,122,100,109,88,105,114,81,80,84,106,106,98,109,106,99,124,98,81,100", - "endOffsets": "153,261,384,485,595,684,790,905,987,1068,1153,1260,1367,1466,1576,1683,1783,1908,2007,2089,2190" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ka/values-ka.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,610,698,803,916,1000,1082,1165,1278,1385,1483,1596,1700,1804,1926,2024,2105", - "endColumns": "108,107,122,103,110,87,104,112,83,81,82,112,106,97,112,103,103,121,97,80,100", - "endOffsets": "159,267,390,494,605,693,798,911,995,1077,1160,1273,1380,1478,1591,1695,1799,1921,2019,2100,2201" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sl/values-sl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,500,608,695,798,917,1002,1086,1170,1278,1387,1487,1600,1707,1811,1928,2025,2108", - "endColumns": "106,107,122,106,107,86,102,118,84,83,83,107,108,99,112,106,103,116,96,82,100", - "endOffsets": "157,265,388,495,603,690,793,912,997,1081,1165,1273,1382,1482,1595,1702,1806,1923,2020,2103,2204" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kn/values-kn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,516,629,717,824,951,1028,1105,1187,1303,1414,1513,1626,1730,1844,1970,2070,2152", - "endColumns": "117,107,122,111,112,87,106,126,76,76,81,115,110,98,112,103,113,125,99,81,100", - "endOffsets": "168,276,399,511,624,712,819,946,1023,1100,1182,1298,1409,1508,1621,1725,1839,1965,2065,2147,2248" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-iw/values-iw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,269,395,494,602,686,786,900,978,1056,1135,1237,1341,1437,1540,1641,1741,1857,1953,2032", - "endColumns": "103,109,125,98,107,83,99,113,77,77,78,101,103,95,102,100,99,115,95,78,102", - "endOffsets": "154,264,390,489,597,681,781,895,973,1051,1130,1232,1336,1432,1535,1636,1736,1852,1948,2027,2130" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ms/values-ms.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,502,610,697,801,912,990,1069,1149,1261,1370,1467,1576,1679,1786,1908,2009,2089", - "endColumns": "110,107,122,104,107,86,103,110,77,78,79,111,108,96,108,102,106,121,100,79,100", - "endOffsets": "161,269,392,497,605,692,796,907,985,1064,1144,1256,1365,1462,1571,1674,1781,1903,2004,2084,2185" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v25/values-v25.xml", - "from": { - "startLines": "2,3,4,6", - "startColumns": "4,4,4,4", - "startOffsets": "55,126,209,308", - "endLines": "2,3,5,7", - "endColumns": "70,82,12,12", - "endOffsets": "121,204,303,414" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-is/values-is.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,155,263,386,483,595,680,781,895,975,1055,1136,1246,1354,1452,1561,1660,1763,1881,1979,2060", - "endColumns": "99,107,122,96,111,84,100,113,79,79,80,109,107,97,108,98,102,117,97,80,100", - "endOffsets": "150,258,381,478,590,675,776,890,970,1050,1131,1241,1349,1447,1556,1655,1758,1876,1974,2055,2156" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ko/values-ko.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,258,381,475,577,659,757,863,942,1018,1098,1196,1291,1386,1486,1582,1681,1796,1890,1968", - "endColumns": "94,107,122,93,101,81,97,105,78,75,79,97,94,94,99,95,98,114,93,77,100", - "endOffsets": "145,253,376,470,572,654,752,858,937,1013,1093,1191,1286,1381,1481,1577,1676,1791,1885,1963,2064" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hu/values-hu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,499,614,698,810,940,1016,1092,1175,1285,1396,1496,1607,1715,1834,1968,2071,2154", - "endColumns": "107,107,122,104,114,83,111,129,75,75,82,109,110,99,110,107,118,133,102,82,100", - "endOffsets": "158,266,389,494,609,693,805,935,1011,1087,1170,1280,1391,1491,1602,1710,1829,1963,2066,2149,2250" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lv/values-lv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,514,623,709,813,935,1017,1099,1184,1293,1405,1504,1615,1724,1829,1948,2047,2129", - "endColumns": "119,107,122,107,108,85,103,121,81,81,84,108,111,98,110,108,104,118,98,81,100", - "endOffsets": "170,278,401,509,618,704,808,930,1012,1094,1179,1288,1400,1499,1610,1719,1824,1943,2042,2124,2225" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rTW/values-zh-rTW.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1669,1782,1876,1954", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,99,112,93,77,100", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1664,1777,1871,1949,2050" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-da/values-da.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,488,600,683,783,896,973,1050,1129,1238,1346,1442,1556,1658,1759,1875,1972,2051", - "endColumns": "102,107,122,98,111,82,99,112,76,76,78,108,107,95,113,101,100,115,96,78,100", - "endOffsets": "153,261,384,483,595,678,778,891,968,1045,1124,1233,1341,1437,1551,1653,1754,1870,1967,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sk/values-sk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,493,604,690,798,916,997,1078,1162,1267,1376,1475,1581,1692,1801,1925,2023,2111", - "endColumns": "106,107,122,99,110,85,107,117,80,80,83,104,108,98,105,110,108,123,97,87,100", - "endOffsets": "157,265,388,488,599,685,793,911,992,1073,1157,1262,1371,1470,1576,1687,1796,1920,2018,2106,2207" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uz/values-uz.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,609,695,806,922,1002,1081,1165,1274,1381,1482,1590,1695,1802,1926,2025,2109", - "endColumns": "104,107,122,103,113,85,110,115,79,78,83,108,106,100,107,104,106,123,98,83,100", - "endOffsets": "155,263,386,490,604,690,801,917,997,1076,1160,1269,1376,1477,1585,1690,1797,1921,2020,2104,2205" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hdpi-v4/values-hdpi-v4.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "6", - "endColumns": "13", - "endOffsets": "327" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v17/values-v17.xml", - "from": { - "startLines": "2,5,9,12,15,18,22,26,29,32,35,39,42,46", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,228,456,614,764,936,1164,1406,1577,1751,1920,2193,2393,2597", - "endLines": "4,8,11,14,17,21,25,28,31,34,38,41,45,49", - "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12", - "endOffsets": "223,451,609,759,931,1159,1401,1572,1746,1915,2188,2388,2592,2921" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rGB/values-en-rGB.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kk/values-kk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,501,611,696,802,921,1002,1082,1163,1266,1371,1469,1576,1685,1785,1900,1999,2080", - "endColumns": "111,107,122,102,109,84,105,118,80,79,80,102,104,97,106,108,99,114,98,80,100", - "endOffsets": "162,270,393,496,606,691,797,916,997,1077,1158,1261,1366,1464,1571,1680,1780,1895,1994,2075,2176" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-de/values-de.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,601,687,792,907,984,1060,1142,1253,1356,1455,1566,1668,1775,1897,1999,2081", - "endColumns": "104,107,122,97,111,85,104,114,76,75,81,110,102,98,110,101,106,121,101,81,100", - "endOffsets": "155,263,386,484,596,682,787,902,979,1055,1137,1248,1351,1450,1561,1663,1770,1892,1994,2076,2177" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v13_values-v13.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v13/values-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "58", - "endOffsets": "109" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ldltr-v21/values-ldltr-v21.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "112", - "endOffsets": "163" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-vi/values-vi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,508,617,701,804,923,1000,1077,1161,1265,1374,1475,1580,1694,1799,1919,2018,2102", - "endColumns": "113,107,122,107,108,83,102,118,76,76,83,103,108,100,104,113,104,119,98,83,100", - "endOffsets": "164,272,395,503,612,696,799,918,995,1072,1156,1260,1369,1470,1575,1689,1794,1914,2013,2097,2198" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-am/values-am.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,157,265,388,487,593,679,782,895,973,1051,1130,1230,1330,1426,1529,1628,1735,1851,1947,2026", - "endColumns": "101,107,122,98,105,85,102,112,77,77,78,99,99,95,102,98,106,115,95,78,100", - "endOffsets": "152,260,383,482,588,674,777,890,968,1046,1125,1225,1325,1421,1524,1623,1730,1846,1942,2021,2122" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr-rCA/values-fr-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,710,826,956,1039,1119,1215,1325,1437,1540,1651,1758,1860,1982,2081,2167", - "endColumns": "110,107,122,114,110,86,115,129,82,79,95,109,111,102,110,106,101,121,98,85,100", - "endOffsets": "161,269,392,507,618,705,821,951,1034,1114,1210,1320,1432,1535,1646,1753,1855,1977,2076,2162,2263" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-night-v8/values-night-v8.xml", - "from": { - "startLines": "2,3,4,5,6,7,8", - "startColumns": "4,4,4,4,4,4,4", - "startOffsets": "55,125,209,293,389,491,593", - "endColumns": "69,83,83,95,101,101,93", - "endOffsets": "120,204,288,384,486,588,682" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lt/values-lt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,503,616,703,812,933,1015,1096,1181,1290,1399,1499,1609,1713,1826,1956,2057,2140", - "endColumns": "115,107,122,100,112,86,108,120,81,80,84,108,108,99,109,103,112,129,100,82,100", - "endOffsets": "166,274,397,498,611,698,807,928,1010,1091,1176,1285,1394,1494,1604,1708,1821,1951,2052,2135,2236" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rBR/values-pt-rBR.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ar/values-ar.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,507,616,698,799,913,992,1071,1150,1255,1356,1452,1560,1663,1766,1885,1982,2063", - "endColumns": "116,107,122,103,108,81,100,113,78,78,78,104,100,95,107,102,102,118,96,80,100", - "endOffsets": "167,275,398,502,611,693,794,908,987,1066,1145,1250,1351,1447,1555,1658,1761,1880,1977,2058,2159" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tr/values-tr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,490,602,687,793,913,992,1068,1147,1254,1359,1455,1562,1664,1772,1891,1989,2068", - "endColumns": "104,107,122,98,111,84,105,119,78,75,78,106,104,95,106,101,107,118,97,78,100", - "endOffsets": "155,263,386,485,597,682,788,908,987,1063,1142,1249,1354,1450,1557,1659,1767,1886,1984,2063,2164" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ur/values-ur.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,502,611,697,801,921,997,1073,1158,1266,1375,1477,1588,1688,1796,1925,2023,2103", - "endColumns": "109,107,122,105,108,85,103,119,75,75,84,107,108,101,110,99,107,128,97,79,102", - "endOffsets": "160,268,391,497,606,692,796,916,992,1068,1153,1261,1370,1472,1583,1683,1791,1920,2018,2098,2201" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-b+sr+Latn/values-b+sr+Latn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,605,691,795,913,995,1076,1164,1270,1378,1479,1584,1692,1793,1921,2018,2102", - "endColumns": "108,107,122,103,105,85,103,117,81,80,87,105,107,100,104,107,100,127,96,83,100", - "endOffsets": "159,267,390,494,600,686,790,908,990,1071,1159,1265,1373,1474,1579,1687,1788,1916,2013,2097,2198" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-my/values-my.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,397,502,619,712,824,952,1030,1109,1195,1318,1430,1532,1658,1769,1879,2002,2102,2186", - "endColumns": "108,107,124,104,116,92,111,127,77,78,85,122,111,101,125,110,109,122,99,83,100", - "endOffsets": "159,267,392,497,614,707,819,947,1025,1104,1190,1313,1425,1527,1653,1764,1874,1997,2097,2181,2282" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rPT/values-pt-rPT.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,933,1017,1098,1185,1292,1404,1506,1614,1721,1828,1950,2049,2134", - "endColumns": "119,107,122,105,106,88,100,123,83,80,86,106,111,101,107,106,106,121,98,84,100", - "endOffsets": "170,278,401,507,614,703,804,928,1012,1093,1180,1287,1399,1501,1609,1716,1823,1945,2044,2129,2230" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v26/values-v26.xml", - "from": { - "startLines": "2,3,4,8,12,16", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,130,217,431,657,896", - "endLines": "2,3,7,11,15,16", - "endColumns": "74,86,12,12,12,92", - "endOffsets": "125,212,426,652,891,984" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fa/values-fa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,275,401,504,615,699,802,917,996,1074,1155,1267,1370,1468,1578,1682,1791,1916,2017,2098", - "endColumns": "109,109,125,102,110,83,102,114,78,77,80,111,102,97,109,103,108,124,100,80,100", - "endOffsets": "160,270,396,499,610,694,797,912,991,1069,1150,1262,1365,1463,1573,1677,1786,1911,2012,2093,2194" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nl/values-nl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,509,616,702,810,930,1007,1084,1166,1277,1381,1480,1595,1708,1811,1929,2032,2114", - "endColumns": "117,107,122,104,106,85,107,119,76,76,81,110,103,98,114,112,102,117,102,81,100", - "endOffsets": "168,276,399,504,611,697,805,925,1002,1079,1161,1272,1376,1475,1590,1703,1806,1924,2027,2109,2210" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bn/values-bn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,507,613,707,812,941,1019,1097,1184,1294,1410,1517,1627,1733,1846,1974,2079,2169", - "endColumns": "108,107,122,111,105,93,104,128,77,77,86,109,115,106,109,105,112,127,104,89,100", - "endOffsets": "159,267,390,502,608,702,807,936,1014,1092,1179,1289,1405,1512,1622,1728,1841,1969,2074,2164,2265" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ky/values-ky.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,485,604,688,795,912,990,1069,1150,1260,1367,1465,1571,1678,1779,1903,2006,2087", - "endColumns": "103,107,122,94,118,83,106,116,77,78,80,109,106,97,105,106,100,123,102,80,100", - "endOffsets": "154,262,385,480,599,683,790,907,985,1064,1145,1255,1362,1460,1566,1673,1774,1898,2001,2082,2183" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-az/values-az.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,493,605,693,800,914,995,1074,1159,1266,1373,1473,1582,1686,1796,1893,1976", - "endColumns": "107,107,122,98,111,87,106,113,80,78,84,106,106,99,108,103,109,96,82,100", - "endOffsets": "158,266,389,488,600,688,795,909,990,1069,1154,1261,1368,1468,1577,1681,1791,1888,1971,2072" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mk/values-mk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,286,390,498,584,689,808,891,973,1060,1166,1273,1374,1481,1592,1696,1794,1878", - "endColumns": "107,122,103,107,85,104,118,82,81,86,105,106,100,106,110,103,97,83,100", - "endOffsets": "158,281,385,493,579,684,803,886,968,1055,1161,1268,1369,1476,1587,1691,1789,1873,1974" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-be/values-be.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,509,625,711,819,937,1016,1094,1177,1283,1389,1487,1595,1700,1805,1925,2025,2106", - "endColumns": "119,107,122,102,115,85,107,117,78,77,82,105,105,97,107,104,104,119,99,80,108", - "endOffsets": "170,278,401,504,620,706,814,932,1011,1089,1172,1278,1384,1482,1590,1695,1800,1920,2020,2101,2210" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v23/values-v23.xml", - "from": { - "startLines": "2,3,4,5,6,19,32,33,34,35,36", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", - "endLines": "2,3,4,5,18,31,32,33,34,35,36", - "endColumns": "134,134,74,86,12,12,126,104,114,106,112", - "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-it/values-it.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,495,604,688,797,922,999,1075,1156,1262,1370,1468,1572,1677,1784,1906,2006,2089", - "endColumns": "108,107,122,99,108,83,108,124,76,75,80,105,107,97,103,104,106,121,99,82,100", - "endOffsets": "159,267,390,490,599,683,792,917,994,1070,1151,1257,1365,1463,1567,1672,1779,1901,2001,2084,2185" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-th/values-th.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,597,686,788,898,975,1053,1134,1242,1346,1444,1552,1657,1758,1874,1969,2050", - "endColumns": "104,107,122,97,107,88,101,109,76,77,80,107,103,97,107,104,100,115,94,80,100", - "endOffsets": "155,263,386,484,592,681,783,893,970,1048,1129,1237,1341,1439,1547,1652,1753,1869,1964,2045,2146" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es/values-es.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,516,624,709,810,938,1023,1105,1187,1294,1394,1493,1601,1708,1815,1937,2037,2119", - "endColumns": "116,107,122,112,107,84,100,127,84,81,81,106,99,98,107,106,106,121,99,81,100", - "endOffsets": "167,275,398,511,619,704,805,933,1018,1100,1182,1289,1389,1488,1596,1703,1810,1932,2032,2114,2215" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v22/values-v22.xml", - "from": { - "startLines": "2,3,4,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,553", - "endLines": "2,3,8,13", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,548,896" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-te/values-te.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,509,620,710,815,940,1022,1104,1189,1302,1410,1510,1621,1723,1840,1967,2068,2151", - "endColumns": "113,107,122,108,110,89,104,124,81,81,84,112,107,99,110,101,116,126,100,82,100", - "endOffsets": "164,272,395,504,615,705,810,935,1017,1099,1184,1297,1405,1505,1616,1718,1835,1962,2063,2146,2247" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nb/values-nb.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,272,397,492,606,692,792,905,981,1057,1137,1240,1339,1435,1539,1637,1738,1854,1951,2030", - "endColumns": "107,108,124,94,113,85,99,112,75,75,79,102,98,95,103,97,100,115,96,78,100", - "endOffsets": "158,267,392,487,601,687,787,900,976,1052,1132,1235,1334,1430,1534,1632,1733,1849,1946,2025,2126" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pl/values-pl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,504,612,698,807,926,1004,1081,1163,1272,1381,1480,1589,1700,1808,1931,2027,2109", - "endColumns": "115,107,122,101,107,85,108,118,77,76,81,108,108,98,108,110,107,122,95,81,100", - "endOffsets": "166,274,397,499,607,693,802,921,999,1076,1158,1267,1376,1475,1584,1695,1803,1926,2022,2104,2205" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-cs/values-cs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,271,395,497,606,692,797,914,995,1076,1160,1264,1373,1472,1578,1688,1795,1917,2015,2097", - "endColumns": "106,108,123,101,108,85,104,116,80,80,83,103,108,98,105,109,106,121,97,81,100", - "endOffsets": "157,266,390,492,601,687,792,909,990,1071,1155,1259,1368,1467,1573,1683,1790,1912,2010,2092,2193" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ja/values-ja.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,152,259,380,473,578,660,758,866,943,1019,1097,1199,1298,1393,1496,1591,1687,1798,1895,1973", - "endColumns": "96,106,120,92,104,81,97,107,76,75,77,101,98,94,102,94,95,110,96,77,100", - "endOffsets": "147,254,375,468,573,655,753,861,938,1014,1092,1194,1293,1388,1491,1586,1682,1793,1890,1968,2069" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sv/values-sv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,495,606,691,793,906,982,1058,1138,1244,1344,1440,1545,1647,1749,1866,1968,2047", - "endColumns": "105,107,122,102,110,84,101,112,75,75,79,105,99,95,104,101,101,116,101,78,100", - "endOffsets": "156,264,387,490,601,686,788,901,977,1053,1133,1239,1339,1435,1540,1642,1744,1861,1963,2042,2143" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sq/values-sq.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,500,612,699,809,932,1013,1092,1175,1281,1386,1484,1590,1693,1809,1940,2039,2120", - "endColumns": "113,107,122,99,111,86,109,122,80,78,82,105,104,97,105,102,115,130,98,80,100", - "endOffsets": "164,272,395,495,607,694,804,927,1008,1087,1170,1276,1381,1479,1585,1688,1804,1935,2034,2115,2216" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rIN/values-en-rIN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "5", - "endColumns": "12", - "endOffsets": "223" - }, - "to": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "121", - "endLines": "6", - "endColumns": "12", - "endOffsets": "289" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "65", - "endOffsets": "116" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw/values-sw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,487,595,685,790,907,989,1072,1154,1255,1364,1463,1570,1679,1784,1903,2000,2082", - "endColumns": "102,107,122,97,107,89,104,116,81,82,81,100,108,98,106,108,104,118,96,81,100", - "endOffsets": "153,261,384,482,590,680,785,902,984,1067,1149,1250,1359,1458,1565,1674,1779,1898,1995,2077,2178" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/res/values/values.xml", - "from": { - "startLines": "2,3,11,12,13,14,15,19,20,21,22,25,26,29,32,33,34,35,36,39,42,43,44,45,50,53,56,57,58,63,64,65,68,71,72,75,78,81,84,85,88,91,92,97,98,103,106,109,110,111,112,113,114,115,116,117,118", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,614,741,802,862,932,1065,1133,1262,1388,1450,1515,1583,1650,1773,1898,1965,2030,2095,2276,2397,2518,2584,2651,2861,2930,2996,3121,3247,3314,3440,3567,3692,3819,3884,4010,4133,4198,4406,4473,4653,4773,4893,4958,5020,5082,5144,5203,5263,5324,5385,5444", - "endLines": "2,10,11,12,13,14,18,19,20,21,24,25,28,31,32,33,34,35,38,41,42,43,44,49,52,55,56,57,62,63,64,67,70,71,74,77,80,83,84,87,90,91,96,97,102,105,108,109,110,111,112,113,114,115,116,117,125", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,736,797,857,927,1060,1128,1257,1383,1445,1510,1578,1645,1768,1893,1960,2025,2090,2271,2392,2513,2579,2646,2856,2925,2991,3116,3242,3309,3435,3562,3687,3814,3879,4005,4128,4193,4401,4468,4648,4768,4888,4953,5015,5077,5139,5198,5258,5319,5380,5439,5779" - }, - "to": { - "startLines": "2,3,11,12,13,14,16,22,23,24,25,28,29,32,35,36,37,38,39,42,45,46,47,48,53,56,59,60,61,66,67,68,71,74,75,78,81,84,87,88,91,94,95,100,101,106,109,112,113,114,115,116,117,118,119,120,121", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,669,890,951,1011,1081,1214,1282,1411,1537,1599,1664,1732,1799,1922,2047,2114,2179,2244,2425,2546,2667,2733,2800,3010,3079,3145,3270,3396,3463,3589,3716,3841,3968,4033,4159,4282,4347,4555,4622,4802,4922,5042,5107,5169,5231,5293,5352,5412,5473,5534,5593", - "endLines": "2,10,11,12,13,14,19,22,23,24,27,28,31,34,35,36,37,38,41,44,45,46,47,52,55,58,59,60,65,66,67,70,73,74,77,80,83,86,87,90,93,94,99,100,105,108,111,112,113,114,115,116,117,118,119,120,128", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,791,946,1006,1076,1209,1277,1406,1532,1594,1659,1727,1794,1917,2042,2109,2174,2239,2420,2541,2662,2728,2795,3005,3074,3140,3265,3391,3458,3584,3711,3836,3963,4028,4154,4277,4342,4550,4617,4797,4917,5037,5102,5164,5226,5288,5347,5407,5468,5529,5588,5928" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values/values.xml", - "from": { - "startLines": "2,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,348,414,536,597,663", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "139,409,531,592,658,725" - }, - "to": { - "startLines": "176,1820,1822,1823,1828,1830", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "9122,134408,134584,134706,134968,135163", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "9206,134469,134701,134762,135029,135225" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values/values.xml", - "from": { - "startLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,53,54,58,59,60", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,124,1153,1223,1291,1363,1433,1494,1555,1616,1678,1742,1804,1865,1933,2033,2093,2159,2232,2301,2358,2410,2472,2544,2620,2655,2690,2724,2759,2794,2864,2935,3052,3253,3363,3564,3693,3765", - "endLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,52,53,57,58,59,60", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "119,182,1218,1286,1358,1428,1489,1550,1611,1673,1737,1799,1860,1928,2028,2088,2154,2227,2296,2353,2405,2467,2539,2615,2650,2685,2719,2754,2789,2859,2930,3047,3248,3358,3559,3688,3760,3827" - }, - "to": { - "startLines": "174,175,463,464,465,466,467,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,500,501,507,508,512,513,514,520,553,1815,1816,1821,1824,1829,1967,1968", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "8990,9059,44471,44541,44609,44681,44751,45596,45657,45718,45780,45844,45906,45967,46035,46135,46195,46261,46334,46403,46460,46512,47027,47099,47414,47449,47626,47660,47695,48005,50366,134090,134207,134474,134767,135034,146056,146128", - "endLines": "174,175,463,464,465,466,467,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,500,501,507,508,512,513,514,520,553,1815,1819,1821,1827,1829,1967,1968", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "9054,9117,44536,44604,44676,44746,44807,45652,45713,45775,45839,45901,45962,46030,46130,46190,46256,46329,46398,46455,46507,46569,47094,47170,47444,47479,47655,47690,47725,48070,50432,134202,134403,134579,134963,135158,146123,146190" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values/values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,393,394,398,402,406,411,417,424,428,432,437,441,445,449,453,457,461,465,469,473,477,481,485,490,494,497,501,505,509,513,517,521,524,528,532,536,540,544,545,546,547,550,553,556,559,563,564,565,566,567,570,572,574,576,581,582,586,592,596,597,599,610,611,615,621,625,626,627,631,658,662,663,667,695,861,883,1049,1071,1098,1105,1110,1124,1146,1151,1156,1166,1175,1184,1188,1195,1203,1210,1211,1220,1223,1226,1230,1234,1238,1241,1242,1246,1250,1260,1265,1272,1278,1279,1282,1286,1291,1293,1295,1298,1301,1303,1307,1310,1317,1320,1323,1327,1329,1333,1335,1341,1343,1347,1355,1363,1375,1381,1390,1393,1404,1407,1412,1413,1418,1460,1503,1504,1514,1523,1524,1526,1530,1533,1536,1539,1542,1546,1549,1552,1555,1559,1562,1566,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1595,1596,1597,1598,1599,1603,1604,1605,1606,1608,1610,1611,1612,1613,1614,1615,1616,1617,1619,1620,1622,1623,1625,1627,1628,1630,1631,1632,1633,1634,1635,1637,1638,1639,1640,1641,1642,1644,1646,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1662,1663,1664,1665,1666,1667,1669,1673,1677,1678,1679,1680,1681,1682,1683,1684,1686,1688,1690,1692,1694,1695,1696,1697,1699,1701,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1717,1718,1719,1720,1722,1724,1725,1727,1728,1730,1732,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1747,1748,1749,1750,1752,1753,1754,1755,1756,1758,1760,1762,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1333,1410,1488,1594,1700,1779,1859,1916,1974,2048,2123,2188,2254,2309,2381,2454,2521,2589,2648,2707,2766,2825,2884,2938,2992,3045,3099,3153,3207,3261,3335,3414,3487,3561,3632,3704,3776,3849,3906,3964,4037,4111,4185,4260,4332,4405,4475,4546,4606,26813,26882,26951,27021,27095,27171,27235,27312,27388,27465,27529,27594,27663,27740,27815,27884,27952,28029,28095,28192,28257,28326,28425,28496,28555,28613,28670,28729,28800,28872,28944,29016,29088,29155,29223,29291,29350,29413,29477,29567,29658,29718,29784,29851,29917,29987,30051,30104,30217,30275,30338,30403,30468,30543,30616,30688,30737,30798,30859,30920,30982,31046,31110,31174,31239,31302,31362,31423,31489,31548,31608,31670,31741,31801,31869,31955,32042,32132,32219,32307,32389,32472,32562,32653,32705,32763,32808,32874,32938,32995,33052,33106,33163,33211,33260,33311,33345,33392,33441,33487,33519,33583,33645,33705,33762,33836,33914,34007,34077,34155,34209,34279,34364,34412,34458,34529,34607,34685,34757,34831,34905,34979,35059,35132,35201,35273,35350,35402,35475,35549,35618,35693,35767,35841,35930,36000,36053,36131,36221,36309,36405,36495,36996,37085,37332,37613,37857,38142,38535,39012,39234,39456,39724,39951,40181,40411,40641,40871,41098,41337,41563,41808,42038,42286,42505,42788,42996,43127,43354,43600,43825,44072,44293,44538,44658,44934,45235,45559,45850,46164,46301,46432,46537,46779,46946,47150,47358,47629,47741,47853,47958,48075,48289,48435,48575,48661,49009,49097,49327,49745,49978,50060,50158,50775,50875,51111,51535,51774,51868,51957,52194,54246,54488,54590,54827,57011,67548,68799,79433,80696,82188,82724,83054,84115,85380,85636,85872,86419,86913,87518,87716,88296,88860,89235,89353,89891,90048,90244,90517,90773,90943,91084,91148,91430,91716,92392,92656,92994,93347,93441,93627,93933,94195,94320,94447,94686,94897,95016,95209,95386,95841,96022,96144,96403,96516,96703,96805,97249,97373,97648,98156,98652,99529,99823,100393,100542,101274,101446,101782,101874,102152,105338,108667,108729,109359,109973,110059,110172,110401,110561,110713,110884,111051,111294,111464,111637,111808,112082,112281,112486,112816,112900,112996,113092,113190,113290,113392,113494,113596,113698,113800,113900,113996,114108,114237,114360,114491,114622,114720,114834,114928,115048,115252,115321,115437,115565,115629,115833,115902,116034,116104,116244,116378,116474,116586,116686,116802,116898,117010,117110,117250,117386,117550,117680,117838,117988,118129,118273,118408,118520,118670,118798,118926,119062,119194,119324,119454,119566,119706,119852,119996,120134,120200,120290,120366,120470,120560,120662,120770,120878,120978,121058,121150,121248,121358,121436,121542,121634,121738,121848,121970,122133,122290,122370,122470,122560,122670,122764,122870,122962,123062,123174,123288,123404,123520,123614,123728,123840,123942,124062,124184,124266,124370,124490,124616,124714,124808,124896,125008,125124,125246,125358,125533,125649,125735,125827,125939,126063,126130,126256,126324,126452,126596,126724,126793,126888,127003,127116,127215,127324,127435,127546,127647,127752,127852,127982,128073,128196,128290,128402,128488,128592,128688,128776,128894,128998,129102,129228,129316,129424,129524,129614,129724,129808,129910,129994,130048,130112,130218,130328,130412", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,392,393,397,401,405,410,416,423,427,431,436,440,444,448,452,456,460,464,468,472,476,480,484,489,493,496,500,504,508,512,516,520,523,527,531,535,539,543,544,545,546,549,552,555,558,562,563,564,565,566,569,571,573,575,580,581,585,591,595,596,598,609,610,614,620,624,625,626,630,657,661,662,666,694,860,882,1048,1070,1097,1104,1109,1123,1145,1150,1155,1165,1174,1183,1187,1194,1202,1209,1210,1219,1222,1225,1229,1233,1237,1240,1241,1245,1249,1259,1264,1271,1277,1278,1281,1285,1290,1292,1294,1297,1300,1302,1306,1309,1316,1319,1322,1326,1328,1332,1334,1340,1342,1346,1354,1362,1374,1380,1389,1392,1403,1406,1411,1412,1417,1459,1502,1503,1513,1522,1523,1525,1529,1532,1535,1538,1541,1545,1548,1551,1554,1558,1561,1565,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1594,1595,1596,1597,1598,1602,1603,1604,1605,1607,1609,1610,1611,1612,1613,1614,1615,1616,1618,1619,1621,1622,1624,1626,1627,1629,1630,1631,1632,1633,1634,1636,1637,1638,1639,1640,1641,1643,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1661,1662,1663,1664,1665,1666,1668,1672,1676,1677,1678,1679,1680,1681,1682,1683,1685,1687,1689,1691,1693,1694,1695,1696,1698,1700,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1716,1717,1718,1719,1721,1723,1724,1726,1727,1729,1731,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1746,1747,1748,1749,1751,1752,1753,1754,1755,1757,1759,1761,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1405,1483,1589,1695,1774,1854,1911,1969,2043,2118,2183,2249,2304,2376,2449,2516,2584,2643,2702,2761,2820,2879,2933,2987,3040,3094,3148,3202,3256,3330,3409,3482,3556,3627,3699,3771,3844,3901,3959,4032,4106,4180,4255,4327,4400,4470,4541,4601,4662,26877,26946,27016,27090,27166,27230,27307,27383,27460,27524,27589,27658,27735,27810,27879,27947,28024,28090,28187,28252,28321,28420,28491,28550,28608,28665,28724,28795,28867,28939,29011,29083,29150,29218,29286,29345,29408,29472,29562,29653,29713,29779,29846,29912,29982,30046,30099,30212,30270,30333,30398,30463,30538,30611,30683,30732,30793,30854,30915,30977,31041,31105,31169,31234,31297,31357,31418,31484,31543,31603,31665,31736,31796,31864,31950,32037,32127,32214,32302,32384,32467,32557,32648,32700,32758,32803,32869,32933,32990,33047,33101,33158,33206,33255,33306,33340,33387,33436,33482,33514,33578,33640,33700,33757,33831,33909,34002,34072,34150,34204,34274,34359,34407,34453,34524,34602,34680,34752,34826,34900,34974,35054,35127,35196,35268,35345,35397,35470,35544,35613,35688,35762,35836,35925,35995,36048,36126,36216,36304,36400,36490,36991,37080,37327,37608,37852,38137,38530,39007,39229,39451,39719,39946,40176,40406,40636,40866,41093,41332,41558,41803,42033,42281,42500,42783,42991,43122,43349,43595,43820,44067,44288,44533,44653,44929,45230,45554,45845,46159,46296,46427,46532,46774,46941,47145,47353,47624,47736,47848,47953,48070,48284,48430,48570,48656,49004,49092,49322,49740,49973,50055,50153,50770,50870,51106,51530,51769,51863,51952,52189,54241,54483,54585,54822,57006,67543,68794,79428,80691,82183,82719,83049,84110,85375,85631,85867,86414,86908,87513,87711,88291,88855,89230,89348,89886,90043,90239,90512,90768,90938,91079,91143,91425,91711,92387,92651,92989,93342,93436,93622,93928,94190,94315,94442,94681,94892,95011,95204,95381,95836,96017,96139,96398,96511,96698,96800,97244,97368,97643,98151,98647,99524,99818,100388,100537,101269,101441,101777,101869,102147,105333,108662,108724,109354,109968,110054,110167,110396,110556,110708,110879,111046,111289,111459,111632,111803,112077,112276,112481,112811,112895,112991,113087,113185,113285,113387,113489,113591,113693,113795,113895,113991,114103,114232,114355,114486,114617,114715,114829,114923,115043,115247,115316,115432,115560,115624,115828,115897,116029,116099,116239,116373,116469,116581,116681,116797,116893,117005,117105,117245,117381,117545,117675,117833,117983,118124,118268,118403,118515,118665,118793,118921,119057,119189,119319,119449,119561,119701,119847,119991,120129,120195,120285,120361,120465,120555,120657,120765,120873,120973,121053,121145,121243,121353,121431,121537,121629,121733,121843,121965,122128,122285,122365,122465,122555,122665,122759,122865,122957,123057,123169,123283,123399,123515,123609,123723,123835,123937,124057,124179,124261,124365,124485,124611,124709,124803,124891,125003,125119,125241,125353,125528,125644,125730,125822,125934,126058,126125,126251,126319,126447,126591,126719,126788,126883,126998,127111,127210,127319,127430,127541,127642,127747,127847,127977,128068,128191,128285,128397,128483,128587,128683,128771,128889,128993,129097,129223,129311,129419,129519,129609,129719,129803,129905,129989,130043,130107,130213,130323,130407,130527" - }, - "to": { - "startLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,468,469,470,471,472,473,474,475,476,492,493,494,495,496,497,498,499,502,503,504,505,506,509,510,511,515,516,517,518,519,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,554,555,556,557,558,559,566,567,571,575,579,584,590,597,601,605,610,614,618,622,626,630,634,638,642,646,650,654,658,663,667,670,674,678,682,686,690,694,697,701,705,709,713,717,718,719,720,723,726,729,732,736,737,738,739,740,743,745,747,749,754,755,759,765,769,770,772,783,784,788,794,798,799,800,804,831,835,836,840,868,1034,1056,1222,1244,1271,1278,1283,1297,1319,1324,1329,1339,1348,1357,1361,1368,1376,1383,1384,1393,1396,1399,1403,1407,1411,1414,1415,1419,1423,1433,1438,1445,1451,1452,1455,1459,1464,1466,1468,1471,1474,1476,1480,1483,1490,1493,1496,1500,1502,1506,1508,1514,1516,1520,1528,1536,1548,1554,1563,1566,1577,1580,1585,1586,1591,1633,1676,1677,1687,1696,1697,1699,1703,1706,1709,1712,1715,1719,1722,1725,1728,1732,1735,1739,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1768,1769,1770,1771,1772,1776,1777,1778,1779,1781,1783,1784,1785,1786,1787,1788,1789,1790,1792,1793,1795,1796,1798,1800,1801,1803,1804,1805,1806,1807,1808,1810,1811,1812,1813,1814,1831,1833,1835,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1851,1852,1853,1854,1855,1856,1858,1862,1866,1867,1868,1869,1870,1871,1872,1873,1875,1877,1879,1881,1883,1884,1885,1886,1888,1890,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1906,1907,1908,1909,1911,1913,1914,1916,1917,1919,1921,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1936,1937,1938,1939,1941,1942,1943,1944,1945,1947,1949,1951,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "614,796,841,5933,5974,6029,6087,6149,6217,6295,6376,6437,6512,6588,6665,6743,6828,6910,6986,7062,7139,7217,7323,7429,7508,7588,7645,7703,7777,7852,7917,7983,8038,8110,8183,8250,8318,8377,8436,8495,8554,8613,8667,8721,8774,8828,8882,8936,9211,9285,9364,9437,9511,9582,9654,9726,9799,9856,9914,9987,10061,10135,10210,10282,10355,10425,10496,10556,39415,39484,39553,39623,39697,39773,39837,39914,39990,40067,40131,40196,40265,40342,40417,40486,40554,40631,40697,40794,40859,40928,41027,41098,41157,41215,41272,41331,41402,41474,41546,41618,41690,41757,41825,41893,41952,42015,42079,42169,42260,42320,42386,42453,42519,42589,42653,42706,42819,42877,42940,43005,43070,43145,43218,43290,43339,43400,43461,43522,43584,43648,43712,43776,43841,43904,43964,44025,44091,44150,44210,44272,44343,44403,44812,44898,44985,45075,45162,45250,45332,45415,45505,46574,46626,46684,46729,46795,46859,46916,46973,47175,47232,47280,47329,47380,47484,47531,47580,47730,47762,47826,47888,47948,48075,48149,48227,48320,48390,48468,48522,48592,48677,48725,48771,48842,48920,48998,49070,49144,49218,49292,49372,49445,49514,49586,49663,49715,49788,49862,49931,50006,50080,50154,50243,50313,50437,50515,50605,50693,50789,50879,51380,51469,51716,51997,52241,52526,52919,53396,53618,53840,54108,54335,54565,54795,55025,55255,55482,55721,55947,56192,56422,56670,56889,57172,57380,57511,57738,57984,58209,58456,58677,58922,59042,59318,59619,59943,60234,60548,60685,60816,60921,61163,61330,61534,61742,62013,62125,62237,62342,62459,62673,62819,62959,63045,63393,63481,63711,64129,64362,64444,64542,65159,65259,65495,65919,66158,66252,66341,66578,68630,68872,68974,69211,71395,81932,83183,93817,95080,96572,97108,97438,98499,99764,100020,100256,100803,101297,101902,102100,102680,103244,103619,103737,104275,104432,104628,104901,105157,105327,105468,105532,105814,106100,106776,107040,107378,107731,107825,108011,108317,108579,108704,108831,109070,109281,109400,109593,109770,110225,110406,110528,110787,110900,111087,111189,111633,111757,112032,112540,113036,113913,114207,114777,114926,115658,115830,116166,116258,116536,119722,123051,123113,123743,124357,124443,124556,124785,124945,125097,125268,125435,125678,125848,126021,126192,126466,126665,126870,127200,127284,127380,127476,127574,127674,127776,127878,127980,128082,128184,128284,128380,128492,128621,128744,128875,129006,129104,129218,129312,129432,129636,129705,129821,129949,130013,130217,130286,130418,130488,130628,130762,130858,130970,131070,131186,131282,131394,131494,131634,131770,131934,132064,132222,132372,132513,132657,132792,132904,133054,133182,133310,133446,133578,133708,133838,133950,135230,135376,135520,135658,135724,135814,135890,135994,136084,136186,136294,136402,136502,136582,136674,136772,136882,136960,137066,137158,137262,137372,137494,137657,137814,137894,137994,138084,138194,138288,138394,138486,138586,138698,138812,138928,139044,139138,139252,139364,139466,139586,139708,139790,139894,140014,140140,140238,140332,140420,140532,140648,140770,140882,141057,141173,141259,141351,141463,141587,141654,141780,141848,141976,142120,142248,142317,142412,142527,142640,142739,142848,142959,143070,143171,143276,143376,143506,143597,143720,143814,143926,144012,144116,144212,144300,144418,144522,144626,144752,144840,144948,145048,145138,145248,145332,145434,145518,145572,145636,145742,145852,145936", - "endLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,468,469,470,471,472,473,474,475,476,492,493,494,495,496,497,498,499,502,503,504,505,506,509,510,511,515,516,517,518,519,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,554,555,556,557,558,565,566,570,574,578,583,589,596,600,604,609,613,617,621,625,629,633,637,641,645,649,653,657,662,666,669,673,677,681,685,689,693,696,700,704,708,712,716,717,718,719,722,725,728,731,735,736,737,738,739,742,744,746,748,753,754,758,764,768,769,771,782,783,787,793,797,798,799,803,830,834,835,839,867,1033,1055,1221,1243,1270,1277,1282,1296,1318,1323,1328,1338,1347,1356,1360,1367,1375,1382,1383,1392,1395,1398,1402,1406,1410,1413,1414,1418,1422,1432,1437,1444,1450,1451,1454,1458,1463,1465,1467,1470,1473,1475,1479,1482,1489,1492,1495,1499,1501,1505,1507,1513,1515,1519,1527,1535,1547,1553,1562,1565,1576,1579,1584,1585,1590,1632,1675,1676,1686,1695,1696,1698,1702,1705,1708,1711,1714,1718,1721,1724,1727,1731,1734,1738,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1767,1768,1769,1770,1771,1775,1776,1777,1778,1780,1782,1783,1784,1785,1786,1787,1788,1789,1791,1792,1794,1795,1797,1799,1800,1802,1803,1804,1805,1806,1807,1809,1810,1811,1812,1813,1814,1832,1834,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1850,1851,1852,1853,1854,1855,1857,1861,1865,1866,1867,1868,1869,1870,1871,1872,1874,1876,1878,1880,1882,1883,1884,1885,1887,1889,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1905,1906,1907,1908,1910,1912,1913,1915,1916,1918,1920,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1935,1936,1937,1938,1940,1941,1942,1943,1944,1946,1948,1950,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "664,836,885,5969,6024,6082,6144,6212,6290,6371,6432,6507,6583,6660,6738,6823,6905,6981,7057,7134,7212,7318,7424,7503,7583,7640,7698,7772,7847,7912,7978,8033,8105,8178,8245,8313,8372,8431,8490,8549,8608,8662,8716,8769,8823,8877,8931,8985,9280,9359,9432,9506,9577,9649,9721,9794,9851,9909,9982,10056,10130,10205,10277,10350,10420,10491,10551,10612,39479,39548,39618,39692,39768,39832,39909,39985,40062,40126,40191,40260,40337,40412,40481,40549,40626,40692,40789,40854,40923,41022,41093,41152,41210,41267,41326,41397,41469,41541,41613,41685,41752,41820,41888,41947,42010,42074,42164,42255,42315,42381,42448,42514,42584,42648,42701,42814,42872,42935,43000,43065,43140,43213,43285,43334,43395,43456,43517,43579,43643,43707,43771,43836,43899,43959,44020,44086,44145,44205,44267,44338,44398,44466,44893,44980,45070,45157,45245,45327,45410,45500,45591,46621,46679,46724,46790,46854,46911,46968,47022,47227,47275,47324,47375,47409,47526,47575,47621,47757,47821,47883,47943,48000,48144,48222,48315,48385,48463,48517,48587,48672,48720,48766,48837,48915,48993,49065,49139,49213,49287,49367,49440,49509,49581,49658,49710,49783,49857,49926,50001,50075,50149,50238,50308,50361,50510,50600,50688,50784,50874,51375,51464,51711,51992,52236,52521,52914,53391,53613,53835,54103,54330,54560,54790,55020,55250,55477,55716,55942,56187,56417,56665,56884,57167,57375,57506,57733,57979,58204,58451,58672,58917,59037,59313,59614,59938,60229,60543,60680,60811,60916,61158,61325,61529,61737,62008,62120,62232,62337,62454,62668,62814,62954,63040,63388,63476,63706,64124,64357,64439,64537,65154,65254,65490,65914,66153,66247,66336,66573,68625,68867,68969,69206,71390,81927,83178,93812,95075,96567,97103,97433,98494,99759,100015,100251,100798,101292,101897,102095,102675,103239,103614,103732,104270,104427,104623,104896,105152,105322,105463,105527,105809,106095,106771,107035,107373,107726,107820,108006,108312,108574,108699,108826,109065,109276,109395,109588,109765,110220,110401,110523,110782,110895,111082,111184,111628,111752,112027,112535,113031,113908,114202,114772,114921,115653,115825,116161,116253,116531,119717,123046,123108,123738,124352,124438,124551,124780,124940,125092,125263,125430,125673,125843,126016,126187,126461,126660,126865,127195,127279,127375,127471,127569,127669,127771,127873,127975,128077,128179,128279,128375,128487,128616,128739,128870,129001,129099,129213,129307,129427,129631,129700,129816,129944,130008,130212,130281,130413,130483,130623,130757,130853,130965,131065,131181,131277,131389,131489,131629,131765,131929,132059,132217,132367,132508,132652,132787,132899,133049,133177,133305,133441,133573,133703,133833,133945,134085,135371,135515,135653,135719,135809,135885,135989,136079,136181,136289,136397,136497,136577,136669,136767,136877,136955,137061,137153,137257,137367,137489,137652,137809,137889,137989,138079,138189,138283,138389,138481,138581,138693,138807,138923,139039,139133,139247,139359,139461,139581,139703,139785,139889,140009,140135,140233,140327,140415,140527,140643,140765,140877,141052,141168,141254,141346,141458,141582,141649,141775,141843,141971,142115,142243,142312,142407,142522,142635,142734,142843,142954,143065,143166,143271,143371,143501,143592,143715,143809,143921,144007,144111,144207,144295,144413,144517,144621,144747,144835,144943,145043,145133,145243,145327,145429,145513,145567,145631,145737,145847,145931,146051" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tl/values-tl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,513,630,718,824,945,1024,1102,1186,1295,1406,1507,1617,1734,1842,1965,2067,2151", - "endColumns": "118,107,122,107,116,87,105,120,78,77,83,108,110,100,109,116,107,122,101,83,100", - "endOffsets": "169,277,400,508,625,713,819,940,1019,1097,1181,1290,1401,1502,1612,1729,1837,1960,2062,2146,2247" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v14_values-v14.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v14/values-v14.xml", - "from": { - "startLines": "2,7,8,9,15", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,331,402,485,895", - "endLines": "6,7,8,14,20", - "endColumns": "12,70,82,12,12", - "endOffsets": "326,397,480,890,1312" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt/values-pt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v12_values-v12.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v12/values-v12.xml", - "from": { - "startLines": "2,5,8,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,279,479,598", - "endLines": "4,7,8,9", - "endColumns": "12,12,118,94", - "endOffsets": "274,474,593,688" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-et/values-et.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,510,621,707,809,926,1006,1084,1167,1278,1383,1482,1592,1693,1796,1924,2026,2108", - "endColumns": "116,107,122,106,110,85,101,116,79,77,82,110,104,98,109,100,102,127,101,81,100", - "endOffsets": "167,275,398,505,616,702,804,921,1001,1079,1162,1273,1378,1477,1587,1688,1791,1919,2021,2103,2204" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr/values-fr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,705,811,941,1024,1104,1190,1300,1412,1515,1626,1733,1840,1962,2061,2147", - "endColumns": "110,107,122,114,110,81,105,129,82,79,85,109,111,102,110,106,106,121,98,85,100", - "endOffsets": "161,269,392,507,618,700,806,936,1019,1099,1185,1295,1407,1510,1621,1728,1835,1957,2056,2142,2243" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hr/values-hr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,488,598,684,788,907,991,1074,1160,1264,1377,1483,1588,1701,1808,1931,2028,2117", - "endColumns": "104,107,122,96,109,85,103,118,83,82,85,103,112,105,104,112,106,122,96,88,100", - "endOffsets": "155,263,386,483,593,679,783,902,986,1069,1155,1259,1372,1478,1583,1696,1803,1926,2023,2112,2213" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ta/values-ta.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,505,620,709,816,942,1023,1103,1185,1287,1391,1488,1598,1700,1807,1926,2026,2106", - "endColumns": "113,107,122,104,114,88,106,125,80,79,81,101,103,96,109,101,106,118,99,79,100", - "endOffsets": "164,272,395,500,615,704,811,937,1018,1098,1180,1282,1386,1483,1593,1695,1802,1921,2021,2101,2202" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-large-v4/values-large-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4,4,4,4", - "startOffsets": "55,114,185,256,326,396,464,532,636", - "endColumns": "58,70,70,69,69,67,67,103,115", - "endOffsets": "109,180,251,321,391,459,527,631,747" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ru/values-ru.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,278,401,503,615,701,806,926,1005,1083,1163,1269,1377,1475,1584,1690,1798,1934,2034,2115", - "endColumns": "114,107,122,101,111,85,104,119,78,77,79,105,107,97,108,105,107,135,99,80,100", - "endOffsets": "165,273,396,498,610,696,801,921,1000,1078,1158,1264,1372,1470,1579,1685,1793,1929,2029,2110,2211" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-af/values-af.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,596,681,784,902,978,1055,1136,1243,1346,1443,1551,1653,1755,1872,1970,2050", - "endColumns": "103,107,122,99,105,84,102,117,75,76,80,106,102,96,107,101,101,116,97,79,100", - "endOffsets": "154,262,385,485,591,676,779,897,973,1050,1131,1238,1341,1438,1546,1648,1750,1867,1965,2045,2146" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rHK/values-zh-rHK.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1667,1780,1874,1952", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,97,112,93,77,101", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1662,1775,1869,1947,2049" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ml/values-ml.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,523,638,731,836,968,1045,1121,1203,1314,1420,1518,1632,1732,1843,1971,2072,2154", - "endColumns": "118,107,122,117,114,92,104,131,76,75,81,110,105,97,113,99,110,127,100,81,100", - "endOffsets": "169,277,400,518,633,726,831,963,1040,1116,1198,1309,1415,1513,1627,1727,1838,1966,2067,2149,2250" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lo/values-lo.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,486,593,678,783,895,972,1050,1130,1237,1334,1432,1537,1640,1744,1866,1962,2043", - "endColumns": "102,107,122,96,106,84,104,111,76,77,79,106,96,97,104,102,103,121,95,80,100", - "endOffsets": "153,261,384,481,588,673,778,890,967,1045,1125,1232,1329,1427,1532,1635,1739,1861,1957,2038,2139" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-land/values-land.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,125,189,260", - "endColumns": "69,63,70,67", - "endOffsets": "120,184,255,323" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-si/values-si.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,503,610,698,803,919,1008,1095,1179,1288,1393,1491,1601,1700,1806,1927,2026,2108", - "endColumns": "109,107,122,106,106,87,104,115,88,86,83,108,104,97,109,98,105,120,98,81,100", - "endOffsets": "160,268,391,498,605,693,798,914,1003,1090,1174,1283,1388,1486,1596,1695,1801,1922,2021,2103,2204" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sr/values-sr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,498,604,690,794,912,993,1073,1161,1266,1374,1475,1579,1687,1788,1916,2013,2097", - "endColumns": "108,107,122,102,105,85,103,117,80,79,87,104,107,100,103,107,100,127,96,83,100", - "endOffsets": "159,267,390,493,599,685,789,907,988,1068,1156,1261,1369,1470,1574,1682,1783,1911,2008,2092,2193" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gu/values-gu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,606,693,794,917,994,1072,1152,1258,1360,1457,1566,1665,1775,1896,1999,2079", - "endColumns": "108,107,122,103,106,86,100,122,76,77,79,105,101,96,108,98,109,120,102,79,100", - "endOffsets": "159,267,390,494,601,688,789,912,989,1067,1147,1253,1355,1452,1561,1660,1770,1891,1994,2074,2175" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fi/values-fi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,494,595,681,786,904,991,1073,1153,1260,1363,1460,1566,1665,1769,1888,1987,2067", - "endColumns": "107,107,122,99,100,85,104,117,86,81,79,106,102,96,105,98,103,118,98,79,100", - "endOffsets": "158,266,389,489,590,676,781,899,986,1068,1148,1255,1358,1455,1561,1660,1764,1883,1982,2062,2163" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hi/values-hi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,508,615,700,802,924,1001,1079,1169,1278,1380,1478,1588,1688,1803,1928,2034,2113", - "endColumns": "116,107,122,104,106,84,101,121,76,77,89,108,101,97,109,99,114,124,105,78,100", - "endOffsets": "167,275,398,503,610,695,797,919,996,1074,1164,1273,1375,1473,1583,1683,1798,1923,2029,2108,2209" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v18/values-v18.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "48", - "endOffsets": "99" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ca/values-ca.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,700,808,934,1018,1099,1182,1293,1402,1500,1610,1714,1822,1945,2044,2125", - "endColumns": "117,107,122,105,106,82,107,125,83,80,82,110,108,97,109,103,107,122,98,80,100", - "endOffsets": "168,276,399,505,612,695,803,929,1013,1094,1177,1288,1397,1495,1605,1709,1817,1940,2039,2120,2221" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-port/values-port.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "55", - "endOffsets": "106" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pa/values-pa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,497,602,688,788,901,978,1054,1133,1234,1335,1432,1541,1640,1750,1872,1972,2051", - "endColumns": "105,107,122,104,104,85,99,112,76,75,78,100,100,96,108,98,109,121,99,78,100", - "endOffsets": "156,264,387,492,597,683,783,896,973,1049,1128,1229,1330,1427,1536,1635,1745,1867,1967,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-af.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-af.json deleted file mode 100644 index 0ca4313..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-af.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-af/values-af.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,596,681,784,902,978,1055,1136,1243,1346,1443,1551,1653,1755,1872,1970,2050", - "endColumns": "103,107,122,99,105,84,102,117,75,76,80,106,102,96,107,101,101,116,97,79,100", - "endOffsets": "154,262,385,485,591,676,779,897,973,1050,1131,1238,1341,1438,1546,1648,1750,1867,1965,2045,2146" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-am.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-am.json deleted file mode 100644 index 5d50375..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-am.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-am/values-am.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,157,265,388,487,593,679,782,895,973,1051,1130,1230,1330,1426,1529,1628,1735,1851,1947,2026", - "endColumns": "101,107,122,98,105,85,102,112,77,77,78,99,99,95,102,98,106,115,95,78,100", - "endOffsets": "152,260,383,482,588,674,777,890,968,1046,1125,1225,1325,1421,1524,1623,1730,1846,1942,2021,2122" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ar.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ar.json deleted file mode 100644 index 98dd683..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ar.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ar/values-ar.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,507,616,698,799,913,992,1071,1150,1255,1356,1452,1560,1663,1766,1885,1982,2063", - "endColumns": "116,107,122,103,108,81,100,113,78,78,78,104,100,95,107,102,102,118,96,80,100", - "endOffsets": "167,275,398,502,611,693,794,908,987,1066,1145,1250,1351,1447,1555,1658,1761,1880,1977,2058,2159" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-az.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-az.json deleted file mode 100644 index 9737cd6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-az.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-az/values-az.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,493,605,693,800,914,995,1074,1159,1266,1373,1473,1582,1686,1796,1893,1976", - "endColumns": "107,107,122,98,111,87,106,113,80,78,84,106,106,99,108,103,109,96,82,100", - "endOffsets": "158,266,389,488,600,688,795,909,990,1069,1154,1261,1368,1468,1577,1681,1791,1888,1971,2072" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-b+sr+Latn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-b+sr+Latn.json deleted file mode 100644 index 42e96f2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-b+sr+Latn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-b+sr+Latn/values-b+sr+Latn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,605,691,795,913,995,1076,1164,1270,1378,1479,1584,1692,1793,1921,2018,2102", - "endColumns": "108,107,122,103,105,85,103,117,81,80,87,105,107,100,104,107,100,127,96,83,100", - "endOffsets": "159,267,390,494,600,686,790,908,990,1071,1159,1265,1373,1474,1579,1687,1788,1916,2013,2097,2198" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-be.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-be.json deleted file mode 100644 index 56577d9..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-be.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-be/values-be.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,509,625,711,819,937,1016,1094,1177,1283,1389,1487,1595,1700,1805,1925,2025,2106", - "endColumns": "119,107,122,102,115,85,107,117,78,77,82,105,105,97,107,104,104,119,99,80,108", - "endOffsets": "170,278,401,504,620,706,814,932,1011,1089,1172,1278,1384,1482,1590,1695,1800,1920,2020,2101,2210" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bg.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bg.json deleted file mode 100644 index 55dcb7d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bg.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bg/values-bg.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,281,409,516,621,707,812,933,1012,1090,1173,1287,1396,1496,1610,1716,1824,1947,2046,2129", - "endColumns": "114,110,127,106,104,85,104,120,78,77,82,113,108,99,113,105,107,122,98,82,100", - "endOffsets": "165,276,404,511,616,702,807,928,1007,1085,1168,1282,1391,1491,1605,1711,1819,1942,2041,2124,2225" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bn.json deleted file mode 100644 index 0b63f75..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bn/values-bn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,507,613,707,812,941,1019,1097,1184,1294,1410,1517,1627,1733,1846,1974,2079,2169", - "endColumns": "108,107,122,111,105,93,104,128,77,77,86,109,115,106,109,105,112,127,104,89,100", - "endOffsets": "159,267,390,502,608,702,807,936,1014,1092,1179,1289,1405,1512,1622,1728,1841,1969,2074,2164,2265" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bs.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bs.json deleted file mode 100644 index f9a0c8c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bs/values-bs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,514,621,707,808,930,1012,1093,1179,1282,1387,1485,1590,1701,1806,1926,2023,2107", - "endColumns": "118,107,122,108,106,85,100,121,81,80,85,102,104,97,104,110,104,119,96,83,100", - "endOffsets": "169,277,400,509,616,702,803,925,1007,1088,1174,1277,1382,1480,1585,1696,1801,1921,2018,2102,2203" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ca.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ca.json deleted file mode 100644 index 5542df2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ca.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ca/values-ca.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,700,808,934,1018,1099,1182,1293,1402,1500,1610,1714,1822,1945,2044,2125", - "endColumns": "117,107,122,105,106,82,107,125,83,80,82,110,108,97,109,103,107,122,98,80,100", - "endOffsets": "168,276,399,505,612,695,803,929,1013,1094,1177,1288,1397,1495,1605,1709,1817,1940,2039,2120,2221" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-cs.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-cs.json deleted file mode 100644 index 6c86885..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-cs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-cs/values-cs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,271,395,497,606,692,797,914,995,1076,1160,1264,1373,1472,1578,1688,1795,1917,2015,2097", - "endColumns": "106,108,123,101,108,85,104,116,80,80,83,103,108,98,105,109,106,121,97,81,100", - "endOffsets": "157,266,390,492,601,687,792,909,990,1071,1155,1259,1368,1467,1573,1683,1790,1912,2010,2092,2193" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-da.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-da.json deleted file mode 100644 index ff72436..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-da.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-da/values-da.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,488,600,683,783,896,973,1050,1129,1238,1346,1442,1556,1658,1759,1875,1972,2051", - "endColumns": "102,107,122,98,111,82,99,112,76,76,78,108,107,95,113,101,100,115,96,78,100", - "endOffsets": "153,261,384,483,595,678,778,891,968,1045,1124,1233,1341,1437,1551,1653,1754,1870,1967,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-de.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-de.json deleted file mode 100644 index aa82bed..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-de.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-de/values-de.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,601,687,792,907,984,1060,1142,1253,1356,1455,1566,1668,1775,1897,1999,2081", - "endColumns": "104,107,122,97,111,85,104,114,76,75,81,110,102,98,110,101,106,121,101,81,100", - "endOffsets": "155,263,386,484,596,682,787,902,979,1055,1137,1248,1351,1450,1561,1663,1770,1892,1994,2076,2177" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-el.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-el.json deleted file mode 100644 index 50f4a1e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-el.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-el/values-el.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,515,632,717,822,948,1036,1122,1207,1318,1428,1530,1641,1750,1858,1981,2081,2166", - "endColumns": "117,107,122,110,116,84,104,125,87,85,84,110,109,101,110,108,107,122,99,84,100", - "endOffsets": "168,276,399,510,627,712,817,943,1031,1117,1202,1313,1423,1525,1636,1745,1853,1976,2076,2161,2262" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rAU.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rAU.json deleted file mode 100644 index 66a7fbc..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rAU.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rAU/values-en-rAU.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rGB.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rGB.json deleted file mode 100644 index acf1545..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rGB.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rGB/values-en-rGB.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rIN.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rIN.json deleted file mode 100644 index 90420d7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rIN.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rIN/values-en-rIN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es-rUS.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es-rUS.json deleted file mode 100644 index 803a9d6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es-rUS.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es-rUS/values-es-rUS.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,515,623,708,809,932,1017,1099,1181,1293,1393,1494,1602,1709,1816,1938,2038,2120", - "endColumns": "119,107,122,108,107,84,100,122,84,81,81,111,99,100,107,106,106,121,99,81,100", - "endOffsets": "170,278,401,510,618,703,804,927,1012,1094,1176,1288,1388,1489,1597,1704,1811,1933,2033,2115,2216" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es.json deleted file mode 100644 index 90682e0..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es/values-es.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,516,624,709,810,938,1023,1105,1187,1294,1394,1493,1601,1708,1815,1937,2037,2119", - "endColumns": "116,107,122,112,107,84,100,127,84,81,81,106,99,98,107,106,106,121,99,81,100", - "endOffsets": "167,275,398,511,619,704,805,933,1018,1100,1182,1289,1389,1488,1596,1703,1810,1932,2032,2114,2215" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-et.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-et.json deleted file mode 100644 index 18353d6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-et.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-et/values-et.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,510,621,707,809,926,1006,1084,1167,1278,1383,1482,1592,1693,1796,1924,2026,2108", - "endColumns": "116,107,122,106,110,85,101,116,79,77,82,110,104,98,109,100,102,127,101,81,100", - "endOffsets": "167,275,398,505,616,702,804,921,1001,1079,1162,1273,1378,1477,1587,1688,1791,1919,2021,2103,2204" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-eu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-eu.json deleted file mode 100644 index 68c1ec6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-eu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-eu/values-eu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,493,603,689,795,919,1006,1090,1172,1281,1391,1490,1599,1712,1823,1960,2059,2141", - "endColumns": "108,107,122,97,109,85,105,123,86,83,81,108,109,98,108,112,110,136,98,81,100", - "endOffsets": "159,267,390,488,598,684,790,914,1001,1085,1167,1276,1386,1485,1594,1707,1818,1955,2054,2136,2237" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fa.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fa.json deleted file mode 100644 index 4d4119e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fa.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fa/values-fa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,275,401,504,615,699,802,917,996,1074,1155,1267,1370,1468,1578,1682,1791,1916,2017,2098", - "endColumns": "109,109,125,102,110,83,102,114,78,77,80,111,102,97,109,103,108,124,100,80,100", - "endOffsets": "160,270,396,499,610,694,797,912,991,1069,1150,1262,1365,1463,1573,1677,1786,1911,2012,2093,2194" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fi.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fi.json deleted file mode 100644 index 63f6e40..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fi.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fi/values-fi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,494,595,681,786,904,991,1073,1153,1260,1363,1460,1566,1665,1769,1888,1987,2067", - "endColumns": "107,107,122,99,100,85,104,117,86,81,79,106,102,96,105,98,103,118,98,79,100", - "endOffsets": "158,266,389,489,590,676,781,899,986,1068,1148,1255,1358,1455,1561,1660,1764,1883,1982,2062,2163" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr-rCA.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr-rCA.json deleted file mode 100644 index b8c1d56..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr-rCA.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr-rCA/values-fr-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,710,826,956,1039,1119,1215,1325,1437,1540,1651,1758,1860,1982,2081,2167", - "endColumns": "110,107,122,114,110,86,115,129,82,79,95,109,111,102,110,106,101,121,98,85,100", - "endOffsets": "161,269,392,507,618,705,821,951,1034,1114,1210,1320,1432,1535,1646,1753,1855,1977,2076,2162,2263" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr.json deleted file mode 100644 index 00fe39b..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr/values-fr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,705,811,941,1024,1104,1190,1300,1412,1515,1626,1733,1840,1962,2061,2147", - "endColumns": "110,107,122,114,110,81,105,129,82,79,85,109,111,102,110,106,106,121,98,85,100", - "endOffsets": "161,269,392,507,618,700,806,936,1019,1099,1185,1295,1407,1510,1621,1728,1835,1957,2056,2142,2243" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gl.json deleted file mode 100644 index 6cc729a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gl/values-gl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,510,618,703,805,931,1015,1096,1178,1285,1394,1493,1601,1705,1812,1934,2034,2116", - "endColumns": "111,107,122,111,107,84,101,125,83,80,81,106,108,98,107,103,106,121,99,81,100", - "endOffsets": "162,270,393,505,613,698,800,926,1010,1091,1173,1280,1389,1488,1596,1700,1807,1929,2029,2111,2212" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gu.json deleted file mode 100644 index c20edd3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gu/values-gu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,606,693,794,917,994,1072,1152,1258,1360,1457,1566,1665,1775,1896,1999,2079", - "endColumns": "108,107,122,103,106,86,100,122,76,77,79,105,101,96,108,98,109,120,102,79,100", - "endOffsets": "159,267,390,494,601,688,789,912,989,1067,1147,1253,1355,1452,1561,1660,1770,1891,1994,2074,2175" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-h720dp-v13.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-h720dp-v13.json deleted file mode 100644 index f16efd8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-h720dp-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-h720dp-v13/values-h720dp-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "66", - "endOffsets": "117" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hdpi-v4.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hdpi-v4.json deleted file mode 100644 index 19d2471..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hdpi-v4.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hdpi-v4/values-hdpi-v4.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "6", - "endColumns": "13", - "endOffsets": "327" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hi.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hi.json deleted file mode 100644 index 2ee5ff5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hi.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hi/values-hi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,508,615,700,802,924,1001,1079,1169,1278,1380,1478,1588,1688,1803,1928,2034,2113", - "endColumns": "116,107,122,104,106,84,101,121,76,77,89,108,101,97,109,99,114,124,105,78,100", - "endOffsets": "167,275,398,503,610,695,797,919,996,1074,1164,1273,1375,1473,1583,1683,1798,1923,2029,2108,2209" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hr.json deleted file mode 100644 index 1bb48cb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hr/values-hr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,488,598,684,788,907,991,1074,1160,1264,1377,1483,1588,1701,1808,1931,2028,2117", - "endColumns": "104,107,122,96,109,85,103,118,83,82,85,103,112,105,104,112,106,122,96,88,100", - "endOffsets": "155,263,386,483,593,679,783,902,986,1069,1155,1259,1372,1478,1583,1696,1803,1926,2023,2112,2213" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hu.json deleted file mode 100644 index bb518df..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hu/values-hu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,499,614,698,810,940,1016,1092,1175,1285,1396,1496,1607,1715,1834,1968,2071,2154", - "endColumns": "107,107,122,104,114,83,111,129,75,75,82,109,110,99,110,107,118,133,102,82,100", - "endOffsets": "158,266,389,494,609,693,805,935,1011,1087,1170,1280,1391,1491,1602,1710,1829,1963,2066,2149,2250" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hy.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hy.json deleted file mode 100644 index 0f8789e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hy.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hy/values-hy.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,490,600,689,795,910,992,1073,1158,1265,1372,1471,1581,1688,1788,1913,2012,2094", - "endColumns": "102,107,122,100,109,88,105,114,81,80,84,106,106,98,109,106,99,124,98,81,100", - "endOffsets": "153,261,384,485,595,684,790,905,987,1068,1153,1260,1367,1466,1576,1683,1783,1908,2007,2089,2190" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-in.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-in.json deleted file mode 100644 index 365bbc4..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-in.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-in/values-in.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,603,690,794,910,992,1071,1157,1260,1369,1470,1574,1682,1790,1913,2012,2096", - "endColumns": "109,107,122,101,104,86,103,115,81,78,85,102,108,100,103,107,107,122,98,83,100", - "endOffsets": "160,268,391,493,598,685,789,905,987,1066,1152,1255,1364,1465,1569,1677,1785,1908,2007,2091,2192" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-is.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-is.json deleted file mode 100644 index 7431c0c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-is.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-is/values-is.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,155,263,386,483,595,680,781,895,975,1055,1136,1246,1354,1452,1561,1660,1763,1881,1979,2060", - "endColumns": "99,107,122,96,111,84,100,113,79,79,80,109,107,97,108,98,102,117,97,80,100", - "endOffsets": "150,258,381,478,590,675,776,890,970,1050,1131,1241,1349,1447,1556,1655,1758,1876,1974,2055,2156" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-it.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-it.json deleted file mode 100644 index acb6874..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-it.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-it/values-it.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,495,604,688,797,922,999,1075,1156,1262,1370,1468,1572,1677,1784,1906,2006,2089", - "endColumns": "108,107,122,99,108,83,108,124,76,75,80,105,107,97,103,104,106,121,99,82,100", - "endOffsets": "159,267,390,490,599,683,792,917,994,1070,1151,1257,1365,1463,1567,1672,1779,1901,2001,2084,2185" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-iw.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-iw.json deleted file mode 100644 index 9664536..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-iw.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-iw/values-iw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,269,395,494,602,686,786,900,978,1056,1135,1237,1341,1437,1540,1641,1741,1857,1953,2032", - "endColumns": "103,109,125,98,107,83,99,113,77,77,78,101,103,95,102,100,99,115,95,78,102", - "endOffsets": "154,264,390,489,597,681,781,895,973,1051,1130,1232,1336,1432,1535,1636,1736,1852,1948,2027,2130" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ja.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ja.json deleted file mode 100644 index fdff794..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ja.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ja/values-ja.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,152,259,380,473,578,660,758,866,943,1019,1097,1199,1298,1393,1496,1591,1687,1798,1895,1973", - "endColumns": "96,106,120,92,104,81,97,107,76,75,77,101,98,94,102,94,95,110,96,77,100", - "endOffsets": "147,254,375,468,573,655,753,861,938,1014,1092,1194,1293,1388,1491,1586,1682,1793,1890,1968,2069" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ka.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ka.json deleted file mode 100644 index 079254c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ka.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ka/values-ka.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,610,698,803,916,1000,1082,1165,1278,1385,1483,1596,1700,1804,1926,2024,2105", - "endColumns": "108,107,122,103,110,87,104,112,83,81,82,112,106,97,112,103,103,121,97,80,100", - "endOffsets": "159,267,390,494,605,693,798,911,995,1077,1160,1273,1380,1478,1591,1695,1799,1921,2019,2100,2201" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kk.json deleted file mode 100644 index ac88f70..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kk/values-kk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,501,611,696,802,921,1002,1082,1163,1266,1371,1469,1576,1685,1785,1900,1999,2080", - "endColumns": "111,107,122,102,109,84,105,118,80,79,80,102,104,97,106,108,99,114,98,80,100", - "endOffsets": "162,270,393,496,606,691,797,916,997,1077,1158,1261,1366,1464,1571,1680,1780,1895,1994,2075,2176" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-km.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-km.json deleted file mode 100644 index 5dab2ef..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-km.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-km/values-km.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,489,601,688,792,910,987,1064,1147,1251,1356,1456,1566,1673,1781,1904,2002,2085", - "endColumns": "102,107,122,99,111,86,103,117,76,76,82,103,104,99,109,106,107,122,97,82,100", - "endOffsets": "153,261,384,484,596,683,787,905,982,1059,1142,1246,1351,1451,1561,1668,1776,1899,1997,2080,2181" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kn.json deleted file mode 100644 index 905a8fc..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kn/values-kn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,516,629,717,824,951,1028,1105,1187,1303,1414,1513,1626,1730,1844,1970,2070,2152", - "endColumns": "117,107,122,111,112,87,106,126,76,76,81,115,110,98,112,103,113,125,99,81,100", - "endOffsets": "168,276,399,511,624,712,819,946,1023,1100,1182,1298,1409,1508,1621,1725,1839,1965,2065,2147,2248" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ko.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ko.json deleted file mode 100644 index 02a6c6f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ko.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ko/values-ko.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,258,381,475,577,659,757,863,942,1018,1098,1196,1291,1386,1486,1582,1681,1796,1890,1968", - "endColumns": "94,107,122,93,101,81,97,105,78,75,79,97,94,94,99,95,98,114,93,77,100", - "endOffsets": "145,253,376,470,572,654,752,858,937,1013,1093,1191,1286,1381,1481,1577,1676,1791,1885,1963,2064" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ky.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ky.json deleted file mode 100644 index 2decbe5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ky.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ky/values-ky.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,485,604,688,795,912,990,1069,1150,1260,1367,1465,1571,1678,1779,1903,2006,2087", - "endColumns": "103,107,122,94,118,83,106,116,77,78,80,109,106,97,105,106,100,123,102,80,100", - "endOffsets": "154,262,385,480,599,683,790,907,985,1064,1145,1255,1362,1460,1566,1673,1774,1898,2001,2082,2183" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-land.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-land.json deleted file mode 100644 index 279a9b8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-land.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-land/values-land.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,125,189,260", - "endColumns": "69,63,70,67", - "endOffsets": "120,184,255,323" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-large-v4.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-large-v4.json deleted file mode 100644 index 828f018..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-large-v4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-large-v4/values-large-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4,4,4,4", - "startOffsets": "55,114,185,256,326,396,464,532,636", - "endColumns": "58,70,70,69,69,67,67,103,115", - "endOffsets": "109,180,251,321,391,459,527,631,747" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ldltr-v21.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ldltr-v21.json deleted file mode 100644 index 07eaed9..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ldltr-v21.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ldltr-v21/values-ldltr-v21.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "112", - "endOffsets": "163" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lo.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lo.json deleted file mode 100644 index 5dfbe4c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lo.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo/values-lo.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lo/values-lo.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,486,593,678,783,895,972,1050,1130,1237,1334,1432,1537,1640,1744,1866,1962,2043", - "endColumns": "102,107,122,96,106,84,104,111,76,77,79,106,96,97,104,102,103,121,95,80,100", - "endOffsets": "153,261,384,481,588,673,778,890,967,1045,1125,1232,1329,1427,1532,1635,1739,1861,1957,2038,2139" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lt.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lt.json deleted file mode 100644 index 901b8bf..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lt/values-lt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,503,616,703,812,933,1015,1096,1181,1290,1399,1499,1609,1713,1826,1956,2057,2140", - "endColumns": "115,107,122,100,112,86,108,120,81,80,84,108,108,99,109,103,112,129,100,82,100", - "endOffsets": "166,274,397,498,611,698,807,928,1010,1091,1176,1285,1394,1494,1604,1708,1821,1951,2052,2135,2236" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lv.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lv.json deleted file mode 100644 index 927117a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lv.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lv/values-lv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,514,623,709,813,935,1017,1099,1184,1293,1405,1504,1615,1724,1829,1948,2047,2129", - "endColumns": "119,107,122,107,108,85,103,121,81,81,84,108,111,98,110,108,104,118,98,81,100", - "endOffsets": "170,278,401,509,618,704,808,930,1012,1094,1179,1288,1400,1499,1610,1719,1824,1943,2042,2124,2225" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mk.json deleted file mode 100644 index a315459..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk/values-mk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mk/values-mk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,286,390,498,584,689,808,891,973,1060,1166,1273,1374,1481,1592,1696,1794,1878", - "endColumns": "107,122,103,107,85,104,118,82,81,86,105,106,100,106,110,103,97,83,100", - "endOffsets": "158,281,385,493,579,684,803,886,968,1055,1161,1268,1369,1476,1587,1691,1789,1873,1974" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ml.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ml.json deleted file mode 100644 index b74e4eb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ml.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml/values-ml.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ml/values-ml.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,523,638,731,836,968,1045,1121,1203,1314,1420,1518,1632,1732,1843,1971,2072,2154", - "endColumns": "118,107,122,117,114,92,104,131,76,75,81,110,105,97,113,99,110,127,100,81,100", - "endOffsets": "169,277,400,518,633,726,831,963,1040,1116,1198,1309,1415,1513,1627,1727,1838,1966,2067,2149,2250" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mn.json deleted file mode 100644 index c3e1103..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn/values-mn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mn/values-mn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,168,276,399,499,612,699,805,917,999,1081,1163,1272,1376,1473,1581,1682,1785,1907,2004,2085", - "endColumns": "112,107,122,99,112,86,105,111,81,81,81,108,103,96,107,100,102,121,96,80,100", - "endOffsets": "163,271,394,494,607,694,800,912,994,1076,1158,1267,1371,1468,1576,1677,1780,1902,1999,2080,2181" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mr.json deleted file mode 100644 index 66d19bf..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr/values-mr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mr/values-mr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,707,808,923,1000,1078,1158,1270,1372,1468,1577,1678,1793,1916,2021,2101", - "endColumns": "117,107,122,105,106,89,100,114,76,77,79,111,101,95,108,100,114,122,104,79,100", - "endOffsets": "168,276,399,505,612,702,803,918,995,1073,1153,1265,1367,1463,1572,1673,1788,1911,2016,2096,2197" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ms.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ms.json deleted file mode 100644 index 4ad3f6e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ms.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms/values-ms.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ms/values-ms.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,502,610,697,801,912,990,1069,1149,1261,1370,1467,1576,1679,1786,1908,2009,2089", - "endColumns": "110,107,122,104,107,86,103,110,77,78,79,111,108,96,108,102,106,121,100,79,100", - "endOffsets": "161,269,392,497,605,692,796,907,985,1064,1144,1256,1365,1462,1571,1674,1781,1903,2004,2084,2185" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-my.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-my.json deleted file mode 100644 index df0c6ef..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-my.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my/values-my.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-my/values-my.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,397,502,619,712,824,952,1030,1109,1195,1318,1430,1532,1658,1769,1879,2002,2102,2186", - "endColumns": "108,107,124,104,116,92,111,127,77,78,85,122,111,101,125,110,109,122,99,83,100", - "endOffsets": "159,267,392,497,614,707,819,947,1025,1104,1190,1313,1425,1527,1653,1764,1874,1997,2097,2181,2282" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nb.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nb.json deleted file mode 100644 index 5ad309e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nb.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nb/values-nb.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,272,397,492,606,692,792,905,981,1057,1137,1240,1339,1435,1539,1637,1738,1854,1951,2030", - "endColumns": "107,108,124,94,113,85,99,112,75,75,79,102,98,95,103,97,100,115,96,78,100", - "endOffsets": "158,267,392,487,601,687,787,900,976,1052,1132,1235,1334,1430,1534,1632,1733,1849,1946,2025,2126" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ne.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ne.json deleted file mode 100644 index 928e2c6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ne.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne/values-ne.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ne/values-ne.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,603,694,801,928,1022,1112,1200,1310,1426,1529,1644,1746,1861,1992,2104,2190", - "endColumns": "104,107,122,103,107,90,106,126,93,89,87,109,115,102,114,101,114,130,111,85,100", - "endOffsets": "155,263,386,490,598,689,796,923,1017,1107,1195,1305,1421,1524,1639,1741,1856,1987,2099,2185,2286" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-night-v8.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-night-v8.json deleted file mode 100644 index 99b146d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-night-v8.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-night-v8/values-night-v8.xml", - "from": { - "startLines": "2,3,4,5,6,7,8", - "startColumns": "4,4,4,4,4,4,4", - "startOffsets": "55,125,209,293,389,491,593", - "endColumns": "69,83,83,95,101,101,93", - "endOffsets": "120,204,288,384,486,588,682" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nl.json deleted file mode 100644 index 4bfd976..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nl/values-nl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,509,616,702,810,930,1007,1084,1166,1277,1381,1480,1595,1708,1811,1929,2032,2114", - "endColumns": "117,107,122,104,106,85,107,119,76,76,81,110,103,98,114,112,102,117,102,81,100", - "endOffsets": "168,276,399,504,611,697,805,925,1002,1079,1161,1272,1376,1475,1590,1703,1806,1924,2027,2109,2210" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pa.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pa.json deleted file mode 100644 index e1a69a0..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pa.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa/values-pa.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pa/values-pa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,497,602,688,788,901,978,1054,1133,1234,1335,1432,1541,1640,1750,1872,1972,2051", - "endColumns": "105,107,122,104,104,85,99,112,76,75,78,100,100,96,108,98,109,121,99,78,100", - "endOffsets": "156,264,387,492,597,683,783,896,973,1049,1128,1229,1330,1427,1536,1635,1745,1867,1967,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pl.json deleted file mode 100644 index ac8225d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pl/values-pl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,504,612,698,807,926,1004,1081,1163,1272,1381,1480,1589,1700,1808,1931,2027,2109", - "endColumns": "115,107,122,101,107,85,108,118,77,76,81,108,108,98,108,110,107,122,95,81,100", - "endOffsets": "166,274,397,499,607,693,802,921,999,1076,1158,1267,1376,1475,1584,1695,1803,1926,2022,2104,2205" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-port.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-port.json deleted file mode 100644 index 009cb17..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-port.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-port/values-port.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "55", - "endOffsets": "106" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rBR.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rBR.json deleted file mode 100644 index 84b8b99..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rBR.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rBR/values-pt-rBR.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rPT.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rPT.json deleted file mode 100644 index 44c0d93..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rPT.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rPT/values-pt-rPT.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,933,1017,1098,1185,1292,1404,1506,1614,1721,1828,1950,2049,2134", - "endColumns": "119,107,122,105,106,88,100,123,83,80,86,106,111,101,107,106,106,121,98,84,100", - "endOffsets": "170,278,401,507,614,703,804,928,1012,1093,1180,1287,1399,1501,1609,1716,1823,1945,2044,2129,2230" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt.json deleted file mode 100644 index 896a82e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt/values-pt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ro.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ro.json deleted file mode 100644 index 2b7b839..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ro.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ro/values-ro.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,176,284,407,511,624,712,824,945,1030,1111,1194,1306,1419,1519,1633,1738,1844,1965,2068,2151", - "endColumns": "120,107,122,103,112,87,111,120,84,80,82,111,112,99,113,104,105,120,102,82,100", - "endOffsets": "171,279,402,506,619,707,819,940,1025,1106,1189,1301,1414,1514,1628,1733,1839,1960,2063,2146,2247" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ru.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ru.json deleted file mode 100644 index 03ce42a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ru.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ru/values-ru.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,278,401,503,615,701,806,926,1005,1083,1163,1269,1377,1475,1584,1690,1798,1934,2034,2115", - "endColumns": "114,107,122,101,111,85,104,119,78,77,79,105,107,97,108,105,107,135,99,80,100", - "endOffsets": "165,273,396,498,610,696,801,921,1000,1078,1158,1264,1372,1470,1579,1685,1793,1929,2029,2110,2211" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-si.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-si.json deleted file mode 100644 index aca93e3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-si.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si/values-si.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-si/values-si.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,503,610,698,803,919,1008,1095,1179,1288,1393,1491,1601,1700,1806,1927,2026,2108", - "endColumns": "109,107,122,106,106,87,104,115,88,86,83,108,104,97,109,98,105,120,98,81,100", - "endOffsets": "160,268,391,498,605,693,798,914,1003,1090,1174,1283,1388,1486,1596,1695,1801,1922,2021,2103,2204" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sk.json deleted file mode 100644 index 51be0da..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sk/values-sk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,493,604,690,798,916,997,1078,1162,1267,1376,1475,1581,1692,1801,1925,2023,2111", - "endColumns": "106,107,122,99,110,85,107,117,80,80,83,104,108,98,105,110,108,123,97,87,100", - "endOffsets": "157,265,388,488,599,685,793,911,992,1073,1157,1262,1371,1470,1576,1687,1796,1920,2018,2106,2207" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sl.json deleted file mode 100644 index 498b46c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sl/values-sl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,500,608,695,798,917,1002,1086,1170,1278,1387,1487,1600,1707,1811,1928,2025,2108", - "endColumns": "106,107,122,106,107,86,102,118,84,83,83,107,108,99,112,106,103,116,96,82,100", - "endOffsets": "157,265,388,495,603,690,793,912,997,1081,1165,1273,1382,1482,1595,1702,1806,1923,2020,2103,2204" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sq.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sq.json deleted file mode 100644 index 3bb723c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sq.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq/values-sq.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sq/values-sq.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,500,612,699,809,932,1013,1092,1175,1281,1386,1484,1590,1693,1809,1940,2039,2120", - "endColumns": "113,107,122,99,111,86,109,122,80,78,82,105,104,97,105,102,115,130,98,80,100", - "endOffsets": "164,272,395,495,607,694,804,927,1008,1087,1170,1276,1381,1479,1585,1688,1804,1935,2034,2115,2216" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sr.json deleted file mode 100644 index 7ca7b74..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sr/values-sr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,498,604,690,794,912,993,1073,1161,1266,1374,1475,1579,1687,1788,1916,2013,2097", - "endColumns": "108,107,122,102,105,85,103,117,80,79,87,104,107,100,103,107,100,127,96,83,100", - "endOffsets": "159,267,390,493,599,685,789,907,988,1068,1156,1261,1369,1470,1574,1682,1783,1911,2008,2092,2193" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sv.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sv.json deleted file mode 100644 index 048e74d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sv.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sv/values-sv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,495,606,691,793,906,982,1058,1138,1244,1344,1440,1545,1647,1749,1866,1968,2047", - "endColumns": "105,107,122,102,110,84,101,112,75,75,79,105,99,95,104,101,101,116,101,78,100", - "endOffsets": "156,264,387,490,601,686,788,901,977,1053,1133,1239,1339,1435,1540,1642,1744,1861,1963,2042,2143" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw.json deleted file mode 100644 index 10ea250..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw/values-sw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,487,595,685,790,907,989,1072,1154,1255,1364,1463,1570,1679,1784,1903,2000,2082", - "endColumns": "102,107,122,97,107,89,104,116,81,82,81,100,108,98,106,108,104,118,96,81,100", - "endOffsets": "153,261,384,482,590,680,785,902,984,1067,1149,1250,1359,1458,1565,1674,1779,1898,1995,2077,2178" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw600dp-v13.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw600dp-v13.json deleted file mode 100644 index 46dd01f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw600dp-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw600dp-v13/values-sw600dp-v13.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,124,193,263,337,413,472,543", - "endColumns": "68,68,69,73,75,58,70,67", - "endOffsets": "119,188,258,332,408,467,538,606" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ta.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ta.json deleted file mode 100644 index e9f0bdd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ta/values-ta.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,505,620,709,816,942,1023,1103,1185,1287,1391,1488,1598,1700,1807,1926,2026,2106", - "endColumns": "113,107,122,104,114,88,106,125,80,79,81,101,103,96,109,101,106,118,99,79,100", - "endOffsets": "164,272,395,500,615,704,811,937,1018,1098,1180,1282,1386,1483,1593,1695,1802,1921,2021,2101,2202" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-te.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-te.json deleted file mode 100644 index 57510c5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-te.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te/values-te.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-te/values-te.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,509,620,710,815,940,1022,1104,1189,1302,1410,1510,1621,1723,1840,1967,2068,2151", - "endColumns": "113,107,122,108,110,89,104,124,81,81,84,112,107,99,110,101,116,126,100,82,100", - "endOffsets": "164,272,395,504,615,705,810,935,1017,1099,1184,1297,1405,1505,1616,1718,1835,1962,2063,2146,2247" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-th.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-th.json deleted file mode 100644 index 915a010..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-th.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-th/values-th.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,597,686,788,898,975,1053,1134,1242,1346,1444,1552,1657,1758,1874,1969,2050", - "endColumns": "104,107,122,97,107,88,101,109,76,77,80,107,103,97,107,104,100,115,94,80,100", - "endOffsets": "155,263,386,484,592,681,783,893,970,1048,1129,1237,1341,1439,1547,1652,1753,1869,1964,2045,2146" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tl.json deleted file mode 100644 index 80bb81a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tl/values-tl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,513,630,718,824,945,1024,1102,1186,1295,1406,1507,1617,1734,1842,1965,2067,2151", - "endColumns": "118,107,122,107,116,87,105,120,78,77,83,108,110,100,109,116,107,122,101,83,100", - "endOffsets": "169,277,400,508,625,713,819,940,1019,1097,1181,1290,1401,1502,1612,1729,1837,1960,2062,2146,2247" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tr.json deleted file mode 100644 index 3b02814..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tr/values-tr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,490,602,687,793,913,992,1068,1147,1254,1359,1455,1562,1664,1772,1891,1989,2068", - "endColumns": "104,107,122,98,111,84,105,119,78,75,78,106,104,95,106,101,107,118,97,78,100", - "endOffsets": "155,263,386,485,597,682,788,908,987,1063,1142,1249,1354,1450,1557,1659,1767,1886,1984,2063,2164" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uk.json deleted file mode 100644 index f14f55c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uk/values-uk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,604,690,798,916,995,1075,1156,1262,1369,1467,1575,1681,1790,1914,2014,2095", - "endColumns": "109,107,122,101,105,85,107,117,78,79,80,105,106,97,107,105,108,123,99,80,100", - "endOffsets": "160,268,391,493,599,685,793,911,990,1070,1151,1257,1364,1462,1570,1676,1785,1909,2009,2090,2191" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ur.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ur.json deleted file mode 100644 index 3d87fdd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ur.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ur/values-ur.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,502,611,697,801,921,997,1073,1158,1266,1375,1477,1588,1688,1796,1925,2023,2103", - "endColumns": "109,107,122,105,108,85,103,119,75,75,84,107,108,101,110,99,107,128,97,79,102", - "endOffsets": "160,268,391,497,606,692,796,916,992,1068,1153,1261,1370,1472,1583,1683,1791,1920,2018,2098,2201" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uz.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uz.json deleted file mode 100644 index 792077f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uz.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uz/values-uz.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,609,695,806,922,1002,1081,1165,1274,1381,1482,1590,1695,1802,1926,2025,2109", - "endColumns": "104,107,122,103,113,85,110,115,79,78,83,108,106,100,107,104,106,123,98,83,100", - "endOffsets": "155,263,386,490,604,690,801,917,997,1076,1160,1269,1376,1477,1585,1690,1797,1921,2020,2104,2205" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v11.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v11.json deleted file mode 100644 index 0d8bc20..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v11.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v11/values-v11.xml", - "from": { - "startLines": "2,8,14,20,26,32,38,39,43,47,48,52,56,57,61,66,71,76,78,80,81,82,136,191", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,474,899,1327,1753,2180,2605,2694,2940,3189,3290,3542,3797,3900,4153,4561,4981,5403,5510,5639,5710,5793,9818,13986", - "endLines": "7,13,19,25,31,37,38,42,46,47,51,55,56,60,65,70,75,77,79,80,81,135,190,191", - "endColumns": "12,12,12,12,12,12,88,12,12,100,12,12,102,12,12,12,12,12,12,70,82,12,12,90", - "endOffsets": "469,894,1322,1748,2175,2600,2689,2935,3184,3285,3537,3792,3895,4148,4556,4976,5398,5505,5634,5705,5788,9813,13981,14072" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v12.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v12.json deleted file mode 100644 index 83ccbc8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v12.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v12/values-v12.xml", - "from": { - "startLines": "2,5,8,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,279,479,598", - "endLines": "4,7,8,9", - "endColumns": "12,12,118,94", - "endOffsets": "274,474,593,688" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v13.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v13.json deleted file mode 100644 index 7ec711a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v13/values-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "58", - "endOffsets": "109" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v14.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v14.json deleted file mode 100644 index 659ae70..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v14.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v14/values-v14.xml", - "from": { - "startLines": "2,7,8,9,15", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,331,402,485,895", - "endLines": "6,7,8,14,20", - "endColumns": "12,70,82,12,12", - "endOffsets": "326,397,480,890,1312" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v16.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v16.json deleted file mode 100644 index 9d59b8b..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v16.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "5", - "endColumns": "12", - "endOffsets": "223" - }, - "to": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "121", - "endLines": "6", - "endColumns": "12", - "endOffsets": "289" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "65", - "endOffsets": "116" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v17.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v17.json deleted file mode 100644 index 62cda22..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v17.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v17/values-v17.xml", - "from": { - "startLines": "2,5,9,12,15,18,22,26,29,32,35,39,42,46", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,228,456,614,764,936,1164,1406,1577,1751,1920,2193,2393,2597", - "endLines": "4,8,11,14,17,21,25,28,31,34,38,41,45,49", - "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12", - "endOffsets": "223,451,609,759,931,1159,1401,1572,1746,1915,2188,2388,2592,2921" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v18.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v18.json deleted file mode 100644 index 03dd279..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v18.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v18/values-v18.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "48", - "endOffsets": "99" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v21.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v21.json deleted file mode 100644 index ce1b20d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v21.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247,259,260,261,264,267,268,271,272", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8800,11880,12078,12278,12401,12524,12637,12820,12951,13152,13241,13352,13585,13686,13781,13904,14033,14150,14327,14426,14561,14704,14839,14958,15159,15278,15371,15482,15538,15645,15840,15951,16084,16179,16270,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966,19085,19214,19385,19551,19680,19851,19982", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258,259,260,263,266,267,270,271,274", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8795,11875,12073,12273,12396,12519,12632,12815,12946,13147,13236,13347,13580,13681,13776,13899,14028,14145,14322,14421,14556,14699,14834,14953,15154,15273,15366,15477,15533,15640,15835,15946,16079,16174,16265,16356,16473,16612,16683,16766,17446,17503,17561,18255,18961,19080,19209,19380,19546,19675,19846,19977,20147" - }, - "to": { - "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251,263,264,265,268,271,272,275,276", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9099,12179,12377,12577,12700,12823,12936,13119,13250,13451,13540,13651,13884,13985,14080,14203,14332,14449,14626,14725,14860,15003,15138,15257,15458,15577,15670,15781,15837,15944,16139,16250,16383,16478,16569,16660,16777,16916,16987,17070,17750,17807,17865,18559,19265,19384,19513,19684,19850,19979,20150,20281", - "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262,263,264,267,270,271,274,275,278", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9094,12174,12372,12572,12695,12818,12931,13114,13245,13446,13535,13646,13879,13980,14075,14198,14327,14444,14621,14720,14855,14998,15133,15252,15453,15572,15665,15776,15832,15939,16134,16245,16378,16473,16564,16655,16772,16911,16982,17065,17745,17802,17860,18554,19260,19379,19508,19679,19845,19974,20145,20276,20446" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,5,8,11", - "startColumns": "4,4,4,4", - "startOffsets": "55,223,386,554", - "endLines": "4,7,10,13", - "endColumns": "12,12,12,12", - "endOffsets": "218,381,549,716" - }, - "to": { - "startLines": "281,284,288,292", - "startColumns": "4,4,4,4", - "startOffsets": "20693,20861,21150,21446", - "endLines": "283,286,290,294", - "endColumns": "12,12,12,12", - "endOffsets": "20856,21019,21313,21608" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,13", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,354,470,596,722,850,1022", - "endLines": "2,3,4,5,6,7,8,9,12,17", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" - }, - "to": { - "startLines": "2,3,4,5,279,280,287,291,295,298", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,20451,20567,21024,21318,21613,21785", - "endLines": "2,3,4,5,279,280,287,291,297,302", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,20562,20688,21145,21441,21780,22118" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v22.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v22.json deleted file mode 100644 index ab9e391..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v22.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v22/values-v22.xml", - "from": { - "startLines": "2,3,4,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,553", - "endLines": "2,3,8,13", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,548,896" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v23.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v23.json deleted file mode 100644 index b7ee469..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v23.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v23/values-v23.xml", - "from": { - "startLines": "2,3,4,5,6,19,32,33,34,35,36", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", - "endLines": "2,3,4,5,18,31,32,33,34,35,36", - "endColumns": "134,134,74,86,12,12,126,104,114,106,112", - "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v24.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v24.json deleted file mode 100644 index 0b9fe1d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v24.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,121,182,248", - "endColumns": "65,60,65,66", - "endOffsets": "116,177,243,310" - }, - "to": { - "startLines": "8,9,10,11", - "startColumns": "4,4,4,4", - "startOffsets": "619,685,746,812", - "endColumns": "65,60,65,66", - "endOffsets": "680,741,807,874" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,212,347,416,480,549", - "endColumns": "156,134,68,63,68,69", - "endOffsets": "207,342,411,475,544,614" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v25.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v25.json deleted file mode 100644 index 73e3b6e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v25.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v25/values-v25.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v25/values-v25.xml", - "from": { - "startLines": "2,3,4,6", - "startColumns": "4,4,4,4", - "startOffsets": "55,126,209,308", - "endLines": "2,3,5,7", - "endColumns": "70,82,12,12", - "endOffsets": "121,204,303,414" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v26.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v26.json deleted file mode 100644 index 726a2e7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v26.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v26/values-v26.xml", - "from": { - "startLines": "2,3,4,8,12,16", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,130,217,431,657,896", - "endLines": "2,3,7,11,15,16", - "endColumns": "74,86,12,12,12,92", - "endOffsets": "125,212,426,652,891,984" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-vi.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-vi.json deleted file mode 100644 index dc8c9e2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-vi.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-vi/values-vi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,508,617,701,804,923,1000,1077,1161,1265,1374,1475,1580,1694,1799,1919,2018,2102", - "endColumns": "113,107,122,107,108,83,102,118,76,76,83,103,108,100,104,113,104,119,98,83,100", - "endOffsets": "164,272,395,503,612,696,799,918,995,1072,1156,1260,1369,1470,1575,1689,1794,1914,2013,2097,2198" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-xlarge-v4.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-xlarge-v4.json deleted file mode 100644 index a7539a3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-xlarge-v4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-xlarge-v4/values-xlarge-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,126,197,267,337,405", - "endColumns": "70,70,69,69,67,67", - "endOffsets": "121,192,262,332,400,468" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rCN.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rCN.json deleted file mode 100644 index 54f63fa..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rCN.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rCN/values-zh-rCN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,151,258,381,476,576,658,755,861,937,1013,1091,1187,1283,1378,1475,1570,1668,1780,1874,1952", - "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", - "endOffsets": "146,253,376,471,571,653,750,856,932,1008,1086,1182,1278,1373,1470,1565,1663,1775,1869,1947,2048" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rHK.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rHK.json deleted file mode 100644 index 34f479c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rHK.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rHK/values-zh-rHK.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1667,1780,1874,1952", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,97,112,93,77,101", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1662,1775,1869,1947,2049" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rTW.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rTW.json deleted file mode 100644 index 42a03fb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rTW.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rTW/values-zh-rTW.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1669,1782,1876,1954", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,99,112,93,77,100", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1664,1777,1871,1949,2050" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zu.json deleted file mode 100644 index 7eba594..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zu/values-zu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,501,615,703,806,933,1013,1093,1179,1283,1389,1487,1594,1700,1806,1926,2022,2103", - "endColumns": "107,107,122,106,113,87,102,126,79,79,85,103,105,97,106,105,105,119,95,80,100", - "endOffsets": "158,266,389,496,610,698,801,928,1008,1088,1174,1278,1384,1482,1589,1695,1801,1921,2017,2098,2199" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values.json deleted file mode 100644 index 735cb73..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/multi-v2/values.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/res/values/values.xml", - "from": { - "startLines": "2,3,11,12,13,14,15,19,20,21,22,25,26,29,32,33,34,35,36,39,42,43,44,45,50,53,56,57,58,63,64,65,68,71,72,75,78,81,84,85,88,91,92,97,98,103,106,109,110,111,112,113,114,115,116,117,118", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,614,741,802,862,932,1065,1133,1262,1388,1450,1515,1583,1650,1773,1898,1965,2030,2095,2276,2397,2518,2584,2651,2861,2930,2996,3121,3247,3314,3440,3567,3692,3819,3884,4010,4133,4198,4406,4473,4653,4773,4893,4958,5020,5082,5144,5203,5263,5324,5385,5444", - "endLines": "2,10,11,12,13,14,18,19,20,21,24,25,28,31,32,33,34,35,38,41,42,43,44,49,52,55,56,57,62,63,64,67,70,71,74,77,80,83,84,87,90,91,96,97,102,105,108,109,110,111,112,113,114,115,116,117,125", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,736,797,857,927,1060,1128,1257,1383,1445,1510,1578,1645,1768,1893,1960,2025,2090,2271,2392,2513,2579,2646,2856,2925,2991,3116,3242,3309,3435,3562,3687,3814,3879,4005,4128,4193,4401,4468,4648,4768,4888,4953,5015,5077,5139,5198,5258,5319,5380,5439,5779" - }, - "to": { - "startLines": "2,3,11,12,13,14,16,22,23,24,25,28,29,32,35,36,37,38,39,42,45,46,47,48,53,56,59,60,61,66,67,68,71,74,75,78,81,84,87,88,91,94,95,100,101,106,109,112,113,114,115,116,117,118,119,120,121", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,669,890,951,1011,1081,1214,1282,1411,1537,1599,1664,1732,1799,1922,2047,2114,2179,2244,2425,2546,2667,2733,2800,3010,3079,3145,3270,3396,3463,3589,3716,3841,3968,4033,4159,4282,4347,4555,4622,4802,4922,5042,5107,5169,5231,5293,5352,5412,5473,5534,5593", - "endLines": "2,10,11,12,13,14,19,22,23,24,27,28,31,34,35,36,37,38,41,44,45,46,47,52,55,58,59,60,65,66,67,70,73,74,77,80,83,86,87,90,93,94,99,100,105,108,111,112,113,114,115,116,117,118,119,120,128", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,791,946,1006,1076,1209,1277,1406,1532,1594,1659,1727,1794,1917,2042,2109,2174,2239,2420,2541,2662,2728,2795,3005,3074,3140,3265,3391,3458,3584,3711,3836,3963,4028,4154,4277,4342,4550,4617,4797,4917,5037,5102,5164,5226,5288,5347,5407,5468,5529,5588,5928" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values/values.xml", - "from": { - "startLines": "2,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,348,414,536,597,663", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "139,409,531,592,658,725" - }, - "to": { - "startLines": "176,1820,1822,1823,1828,1830", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "9122,134408,134584,134706,134968,135163", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "9206,134469,134701,134762,135029,135225" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values/values.xml", - "from": { - "startLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,53,54,58,59,60", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,124,1153,1223,1291,1363,1433,1494,1555,1616,1678,1742,1804,1865,1933,2033,2093,2159,2232,2301,2358,2410,2472,2544,2620,2655,2690,2724,2759,2794,2864,2935,3052,3253,3363,3564,3693,3765", - "endLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,52,53,57,58,59,60", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "119,182,1218,1286,1358,1428,1489,1550,1611,1673,1737,1799,1860,1928,2028,2088,2154,2227,2296,2353,2405,2467,2539,2615,2650,2685,2719,2754,2789,2859,2930,3047,3248,3358,3559,3688,3760,3827" - }, - "to": { - "startLines": "174,175,463,464,465,466,467,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,500,501,507,508,512,513,514,520,553,1815,1816,1821,1824,1829,1967,1968", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "8990,9059,44471,44541,44609,44681,44751,45596,45657,45718,45780,45844,45906,45967,46035,46135,46195,46261,46334,46403,46460,46512,47027,47099,47414,47449,47626,47660,47695,48005,50366,134090,134207,134474,134767,135034,146056,146128", - "endLines": "174,175,463,464,465,466,467,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,500,501,507,508,512,513,514,520,553,1815,1819,1821,1827,1829,1967,1968", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "9054,9117,44536,44604,44676,44746,44807,45652,45713,45775,45839,45901,45962,46030,46130,46190,46256,46329,46398,46455,46507,46569,47094,47170,47444,47479,47655,47690,47725,48070,50432,134202,134403,134579,134963,135158,146123,146190" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values/values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,393,394,398,402,406,411,417,424,428,432,437,441,445,449,453,457,461,465,469,473,477,481,485,490,494,497,501,505,509,513,517,521,524,528,532,536,540,544,545,546,547,550,553,556,559,563,564,565,566,567,570,572,574,576,581,582,586,592,596,597,599,610,611,615,621,625,626,627,631,658,662,663,667,695,861,883,1049,1071,1098,1105,1110,1124,1146,1151,1156,1166,1175,1184,1188,1195,1203,1210,1211,1220,1223,1226,1230,1234,1238,1241,1242,1246,1250,1260,1265,1272,1278,1279,1282,1286,1291,1293,1295,1298,1301,1303,1307,1310,1317,1320,1323,1327,1329,1333,1335,1341,1343,1347,1355,1363,1375,1381,1390,1393,1404,1407,1412,1413,1418,1460,1503,1504,1514,1523,1524,1526,1530,1533,1536,1539,1542,1546,1549,1552,1555,1559,1562,1566,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1595,1596,1597,1598,1599,1603,1604,1605,1606,1608,1610,1611,1612,1613,1614,1615,1616,1617,1619,1620,1622,1623,1625,1627,1628,1630,1631,1632,1633,1634,1635,1637,1638,1639,1640,1641,1642,1644,1646,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1662,1663,1664,1665,1666,1667,1669,1673,1677,1678,1679,1680,1681,1682,1683,1684,1686,1688,1690,1692,1694,1695,1696,1697,1699,1701,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1717,1718,1719,1720,1722,1724,1725,1727,1728,1730,1732,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1747,1748,1749,1750,1752,1753,1754,1755,1756,1758,1760,1762,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1333,1410,1488,1594,1700,1779,1859,1916,1974,2048,2123,2188,2254,2309,2381,2454,2521,2589,2648,2707,2766,2825,2884,2938,2992,3045,3099,3153,3207,3261,3335,3414,3487,3561,3632,3704,3776,3849,3906,3964,4037,4111,4185,4260,4332,4405,4475,4546,4606,26813,26882,26951,27021,27095,27171,27235,27312,27388,27465,27529,27594,27663,27740,27815,27884,27952,28029,28095,28192,28257,28326,28425,28496,28555,28613,28670,28729,28800,28872,28944,29016,29088,29155,29223,29291,29350,29413,29477,29567,29658,29718,29784,29851,29917,29987,30051,30104,30217,30275,30338,30403,30468,30543,30616,30688,30737,30798,30859,30920,30982,31046,31110,31174,31239,31302,31362,31423,31489,31548,31608,31670,31741,31801,31869,31955,32042,32132,32219,32307,32389,32472,32562,32653,32705,32763,32808,32874,32938,32995,33052,33106,33163,33211,33260,33311,33345,33392,33441,33487,33519,33583,33645,33705,33762,33836,33914,34007,34077,34155,34209,34279,34364,34412,34458,34529,34607,34685,34757,34831,34905,34979,35059,35132,35201,35273,35350,35402,35475,35549,35618,35693,35767,35841,35930,36000,36053,36131,36221,36309,36405,36495,36996,37085,37332,37613,37857,38142,38535,39012,39234,39456,39724,39951,40181,40411,40641,40871,41098,41337,41563,41808,42038,42286,42505,42788,42996,43127,43354,43600,43825,44072,44293,44538,44658,44934,45235,45559,45850,46164,46301,46432,46537,46779,46946,47150,47358,47629,47741,47853,47958,48075,48289,48435,48575,48661,49009,49097,49327,49745,49978,50060,50158,50775,50875,51111,51535,51774,51868,51957,52194,54246,54488,54590,54827,57011,67548,68799,79433,80696,82188,82724,83054,84115,85380,85636,85872,86419,86913,87518,87716,88296,88860,89235,89353,89891,90048,90244,90517,90773,90943,91084,91148,91430,91716,92392,92656,92994,93347,93441,93627,93933,94195,94320,94447,94686,94897,95016,95209,95386,95841,96022,96144,96403,96516,96703,96805,97249,97373,97648,98156,98652,99529,99823,100393,100542,101274,101446,101782,101874,102152,105338,108667,108729,109359,109973,110059,110172,110401,110561,110713,110884,111051,111294,111464,111637,111808,112082,112281,112486,112816,112900,112996,113092,113190,113290,113392,113494,113596,113698,113800,113900,113996,114108,114237,114360,114491,114622,114720,114834,114928,115048,115252,115321,115437,115565,115629,115833,115902,116034,116104,116244,116378,116474,116586,116686,116802,116898,117010,117110,117250,117386,117550,117680,117838,117988,118129,118273,118408,118520,118670,118798,118926,119062,119194,119324,119454,119566,119706,119852,119996,120134,120200,120290,120366,120470,120560,120662,120770,120878,120978,121058,121150,121248,121358,121436,121542,121634,121738,121848,121970,122133,122290,122370,122470,122560,122670,122764,122870,122962,123062,123174,123288,123404,123520,123614,123728,123840,123942,124062,124184,124266,124370,124490,124616,124714,124808,124896,125008,125124,125246,125358,125533,125649,125735,125827,125939,126063,126130,126256,126324,126452,126596,126724,126793,126888,127003,127116,127215,127324,127435,127546,127647,127752,127852,127982,128073,128196,128290,128402,128488,128592,128688,128776,128894,128998,129102,129228,129316,129424,129524,129614,129724,129808,129910,129994,130048,130112,130218,130328,130412", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,392,393,397,401,405,410,416,423,427,431,436,440,444,448,452,456,460,464,468,472,476,480,484,489,493,496,500,504,508,512,516,520,523,527,531,535,539,543,544,545,546,549,552,555,558,562,563,564,565,566,569,571,573,575,580,581,585,591,595,596,598,609,610,614,620,624,625,626,630,657,661,662,666,694,860,882,1048,1070,1097,1104,1109,1123,1145,1150,1155,1165,1174,1183,1187,1194,1202,1209,1210,1219,1222,1225,1229,1233,1237,1240,1241,1245,1249,1259,1264,1271,1277,1278,1281,1285,1290,1292,1294,1297,1300,1302,1306,1309,1316,1319,1322,1326,1328,1332,1334,1340,1342,1346,1354,1362,1374,1380,1389,1392,1403,1406,1411,1412,1417,1459,1502,1503,1513,1522,1523,1525,1529,1532,1535,1538,1541,1545,1548,1551,1554,1558,1561,1565,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1594,1595,1596,1597,1598,1602,1603,1604,1605,1607,1609,1610,1611,1612,1613,1614,1615,1616,1618,1619,1621,1622,1624,1626,1627,1629,1630,1631,1632,1633,1634,1636,1637,1638,1639,1640,1641,1643,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1661,1662,1663,1664,1665,1666,1668,1672,1676,1677,1678,1679,1680,1681,1682,1683,1685,1687,1689,1691,1693,1694,1695,1696,1698,1700,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1716,1717,1718,1719,1721,1723,1724,1726,1727,1729,1731,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1746,1747,1748,1749,1751,1752,1753,1754,1755,1757,1759,1761,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1405,1483,1589,1695,1774,1854,1911,1969,2043,2118,2183,2249,2304,2376,2449,2516,2584,2643,2702,2761,2820,2879,2933,2987,3040,3094,3148,3202,3256,3330,3409,3482,3556,3627,3699,3771,3844,3901,3959,4032,4106,4180,4255,4327,4400,4470,4541,4601,4662,26877,26946,27016,27090,27166,27230,27307,27383,27460,27524,27589,27658,27735,27810,27879,27947,28024,28090,28187,28252,28321,28420,28491,28550,28608,28665,28724,28795,28867,28939,29011,29083,29150,29218,29286,29345,29408,29472,29562,29653,29713,29779,29846,29912,29982,30046,30099,30212,30270,30333,30398,30463,30538,30611,30683,30732,30793,30854,30915,30977,31041,31105,31169,31234,31297,31357,31418,31484,31543,31603,31665,31736,31796,31864,31950,32037,32127,32214,32302,32384,32467,32557,32648,32700,32758,32803,32869,32933,32990,33047,33101,33158,33206,33255,33306,33340,33387,33436,33482,33514,33578,33640,33700,33757,33831,33909,34002,34072,34150,34204,34274,34359,34407,34453,34524,34602,34680,34752,34826,34900,34974,35054,35127,35196,35268,35345,35397,35470,35544,35613,35688,35762,35836,35925,35995,36048,36126,36216,36304,36400,36490,36991,37080,37327,37608,37852,38137,38530,39007,39229,39451,39719,39946,40176,40406,40636,40866,41093,41332,41558,41803,42033,42281,42500,42783,42991,43122,43349,43595,43820,44067,44288,44533,44653,44929,45230,45554,45845,46159,46296,46427,46532,46774,46941,47145,47353,47624,47736,47848,47953,48070,48284,48430,48570,48656,49004,49092,49322,49740,49973,50055,50153,50770,50870,51106,51530,51769,51863,51952,52189,54241,54483,54585,54822,57006,67543,68794,79428,80691,82183,82719,83049,84110,85375,85631,85867,86414,86908,87513,87711,88291,88855,89230,89348,89886,90043,90239,90512,90768,90938,91079,91143,91425,91711,92387,92651,92989,93342,93436,93622,93928,94190,94315,94442,94681,94892,95011,95204,95381,95836,96017,96139,96398,96511,96698,96800,97244,97368,97643,98151,98647,99524,99818,100388,100537,101269,101441,101777,101869,102147,105333,108662,108724,109354,109968,110054,110167,110396,110556,110708,110879,111046,111289,111459,111632,111803,112077,112276,112481,112811,112895,112991,113087,113185,113285,113387,113489,113591,113693,113795,113895,113991,114103,114232,114355,114486,114617,114715,114829,114923,115043,115247,115316,115432,115560,115624,115828,115897,116029,116099,116239,116373,116469,116581,116681,116797,116893,117005,117105,117245,117381,117545,117675,117833,117983,118124,118268,118403,118515,118665,118793,118921,119057,119189,119319,119449,119561,119701,119847,119991,120129,120195,120285,120361,120465,120555,120657,120765,120873,120973,121053,121145,121243,121353,121431,121537,121629,121733,121843,121965,122128,122285,122365,122465,122555,122665,122759,122865,122957,123057,123169,123283,123399,123515,123609,123723,123835,123937,124057,124179,124261,124365,124485,124611,124709,124803,124891,125003,125119,125241,125353,125528,125644,125730,125822,125934,126058,126125,126251,126319,126447,126591,126719,126788,126883,126998,127111,127210,127319,127430,127541,127642,127747,127847,127977,128068,128191,128285,128397,128483,128587,128683,128771,128889,128993,129097,129223,129311,129419,129519,129609,129719,129803,129905,129989,130043,130107,130213,130323,130407,130527" - }, - "to": { - "startLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,468,469,470,471,472,473,474,475,476,492,493,494,495,496,497,498,499,502,503,504,505,506,509,510,511,515,516,517,518,519,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,554,555,556,557,558,559,566,567,571,575,579,584,590,597,601,605,610,614,618,622,626,630,634,638,642,646,650,654,658,663,667,670,674,678,682,686,690,694,697,701,705,709,713,717,718,719,720,723,726,729,732,736,737,738,739,740,743,745,747,749,754,755,759,765,769,770,772,783,784,788,794,798,799,800,804,831,835,836,840,868,1034,1056,1222,1244,1271,1278,1283,1297,1319,1324,1329,1339,1348,1357,1361,1368,1376,1383,1384,1393,1396,1399,1403,1407,1411,1414,1415,1419,1423,1433,1438,1445,1451,1452,1455,1459,1464,1466,1468,1471,1474,1476,1480,1483,1490,1493,1496,1500,1502,1506,1508,1514,1516,1520,1528,1536,1548,1554,1563,1566,1577,1580,1585,1586,1591,1633,1676,1677,1687,1696,1697,1699,1703,1706,1709,1712,1715,1719,1722,1725,1728,1732,1735,1739,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1768,1769,1770,1771,1772,1776,1777,1778,1779,1781,1783,1784,1785,1786,1787,1788,1789,1790,1792,1793,1795,1796,1798,1800,1801,1803,1804,1805,1806,1807,1808,1810,1811,1812,1813,1814,1831,1833,1835,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1851,1852,1853,1854,1855,1856,1858,1862,1866,1867,1868,1869,1870,1871,1872,1873,1875,1877,1879,1881,1883,1884,1885,1886,1888,1890,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1906,1907,1908,1909,1911,1913,1914,1916,1917,1919,1921,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1936,1937,1938,1939,1941,1942,1943,1944,1945,1947,1949,1951,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "614,796,841,5933,5974,6029,6087,6149,6217,6295,6376,6437,6512,6588,6665,6743,6828,6910,6986,7062,7139,7217,7323,7429,7508,7588,7645,7703,7777,7852,7917,7983,8038,8110,8183,8250,8318,8377,8436,8495,8554,8613,8667,8721,8774,8828,8882,8936,9211,9285,9364,9437,9511,9582,9654,9726,9799,9856,9914,9987,10061,10135,10210,10282,10355,10425,10496,10556,39415,39484,39553,39623,39697,39773,39837,39914,39990,40067,40131,40196,40265,40342,40417,40486,40554,40631,40697,40794,40859,40928,41027,41098,41157,41215,41272,41331,41402,41474,41546,41618,41690,41757,41825,41893,41952,42015,42079,42169,42260,42320,42386,42453,42519,42589,42653,42706,42819,42877,42940,43005,43070,43145,43218,43290,43339,43400,43461,43522,43584,43648,43712,43776,43841,43904,43964,44025,44091,44150,44210,44272,44343,44403,44812,44898,44985,45075,45162,45250,45332,45415,45505,46574,46626,46684,46729,46795,46859,46916,46973,47175,47232,47280,47329,47380,47484,47531,47580,47730,47762,47826,47888,47948,48075,48149,48227,48320,48390,48468,48522,48592,48677,48725,48771,48842,48920,48998,49070,49144,49218,49292,49372,49445,49514,49586,49663,49715,49788,49862,49931,50006,50080,50154,50243,50313,50437,50515,50605,50693,50789,50879,51380,51469,51716,51997,52241,52526,52919,53396,53618,53840,54108,54335,54565,54795,55025,55255,55482,55721,55947,56192,56422,56670,56889,57172,57380,57511,57738,57984,58209,58456,58677,58922,59042,59318,59619,59943,60234,60548,60685,60816,60921,61163,61330,61534,61742,62013,62125,62237,62342,62459,62673,62819,62959,63045,63393,63481,63711,64129,64362,64444,64542,65159,65259,65495,65919,66158,66252,66341,66578,68630,68872,68974,69211,71395,81932,83183,93817,95080,96572,97108,97438,98499,99764,100020,100256,100803,101297,101902,102100,102680,103244,103619,103737,104275,104432,104628,104901,105157,105327,105468,105532,105814,106100,106776,107040,107378,107731,107825,108011,108317,108579,108704,108831,109070,109281,109400,109593,109770,110225,110406,110528,110787,110900,111087,111189,111633,111757,112032,112540,113036,113913,114207,114777,114926,115658,115830,116166,116258,116536,119722,123051,123113,123743,124357,124443,124556,124785,124945,125097,125268,125435,125678,125848,126021,126192,126466,126665,126870,127200,127284,127380,127476,127574,127674,127776,127878,127980,128082,128184,128284,128380,128492,128621,128744,128875,129006,129104,129218,129312,129432,129636,129705,129821,129949,130013,130217,130286,130418,130488,130628,130762,130858,130970,131070,131186,131282,131394,131494,131634,131770,131934,132064,132222,132372,132513,132657,132792,132904,133054,133182,133310,133446,133578,133708,133838,133950,135230,135376,135520,135658,135724,135814,135890,135994,136084,136186,136294,136402,136502,136582,136674,136772,136882,136960,137066,137158,137262,137372,137494,137657,137814,137894,137994,138084,138194,138288,138394,138486,138586,138698,138812,138928,139044,139138,139252,139364,139466,139586,139708,139790,139894,140014,140140,140238,140332,140420,140532,140648,140770,140882,141057,141173,141259,141351,141463,141587,141654,141780,141848,141976,142120,142248,142317,142412,142527,142640,142739,142848,142959,143070,143171,143276,143376,143506,143597,143720,143814,143926,144012,144116,144212,144300,144418,144522,144626,144752,144840,144948,145048,145138,145248,145332,145434,145518,145572,145636,145742,145852,145936", - "endLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,468,469,470,471,472,473,474,475,476,492,493,494,495,496,497,498,499,502,503,504,505,506,509,510,511,515,516,517,518,519,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,554,555,556,557,558,565,566,570,574,578,583,589,596,600,604,609,613,617,621,625,629,633,637,641,645,649,653,657,662,666,669,673,677,681,685,689,693,696,700,704,708,712,716,717,718,719,722,725,728,731,735,736,737,738,739,742,744,746,748,753,754,758,764,768,769,771,782,783,787,793,797,798,799,803,830,834,835,839,867,1033,1055,1221,1243,1270,1277,1282,1296,1318,1323,1328,1338,1347,1356,1360,1367,1375,1382,1383,1392,1395,1398,1402,1406,1410,1413,1414,1418,1422,1432,1437,1444,1450,1451,1454,1458,1463,1465,1467,1470,1473,1475,1479,1482,1489,1492,1495,1499,1501,1505,1507,1513,1515,1519,1527,1535,1547,1553,1562,1565,1576,1579,1584,1585,1590,1632,1675,1676,1686,1695,1696,1698,1702,1705,1708,1711,1714,1718,1721,1724,1727,1731,1734,1738,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1767,1768,1769,1770,1771,1775,1776,1777,1778,1780,1782,1783,1784,1785,1786,1787,1788,1789,1791,1792,1794,1795,1797,1799,1800,1802,1803,1804,1805,1806,1807,1809,1810,1811,1812,1813,1814,1832,1834,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1850,1851,1852,1853,1854,1855,1857,1861,1865,1866,1867,1868,1869,1870,1871,1872,1874,1876,1878,1880,1882,1883,1884,1885,1887,1889,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1905,1906,1907,1908,1910,1912,1913,1915,1916,1918,1920,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1935,1936,1937,1938,1940,1941,1942,1943,1944,1946,1948,1950,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "664,836,885,5969,6024,6082,6144,6212,6290,6371,6432,6507,6583,6660,6738,6823,6905,6981,7057,7134,7212,7318,7424,7503,7583,7640,7698,7772,7847,7912,7978,8033,8105,8178,8245,8313,8372,8431,8490,8549,8608,8662,8716,8769,8823,8877,8931,8985,9280,9359,9432,9506,9577,9649,9721,9794,9851,9909,9982,10056,10130,10205,10277,10350,10420,10491,10551,10612,39479,39548,39618,39692,39768,39832,39909,39985,40062,40126,40191,40260,40337,40412,40481,40549,40626,40692,40789,40854,40923,41022,41093,41152,41210,41267,41326,41397,41469,41541,41613,41685,41752,41820,41888,41947,42010,42074,42164,42255,42315,42381,42448,42514,42584,42648,42701,42814,42872,42935,43000,43065,43140,43213,43285,43334,43395,43456,43517,43579,43643,43707,43771,43836,43899,43959,44020,44086,44145,44205,44267,44338,44398,44466,44893,44980,45070,45157,45245,45327,45410,45500,45591,46621,46679,46724,46790,46854,46911,46968,47022,47227,47275,47324,47375,47409,47526,47575,47621,47757,47821,47883,47943,48000,48144,48222,48315,48385,48463,48517,48587,48672,48720,48766,48837,48915,48993,49065,49139,49213,49287,49367,49440,49509,49581,49658,49710,49783,49857,49926,50001,50075,50149,50238,50308,50361,50510,50600,50688,50784,50874,51375,51464,51711,51992,52236,52521,52914,53391,53613,53835,54103,54330,54560,54790,55020,55250,55477,55716,55942,56187,56417,56665,56884,57167,57375,57506,57733,57979,58204,58451,58672,58917,59037,59313,59614,59938,60229,60543,60680,60811,60916,61158,61325,61529,61737,62008,62120,62232,62337,62454,62668,62814,62954,63040,63388,63476,63706,64124,64357,64439,64537,65154,65254,65490,65914,66153,66247,66336,66573,68625,68867,68969,69206,71390,81927,83178,93812,95075,96567,97103,97433,98494,99759,100015,100251,100798,101292,101897,102095,102675,103239,103614,103732,104270,104427,104623,104896,105152,105322,105463,105527,105809,106095,106771,107035,107373,107726,107820,108006,108312,108574,108699,108826,109065,109276,109395,109588,109765,110220,110401,110523,110782,110895,111082,111184,111628,111752,112027,112535,113031,113908,114202,114772,114921,115653,115825,116161,116253,116531,119717,123046,123108,123738,124352,124438,124551,124780,124940,125092,125263,125430,125673,125843,126016,126187,126461,126660,126865,127195,127279,127375,127471,127569,127669,127771,127873,127975,128077,128179,128279,128375,128487,128616,128739,128870,129001,129099,129213,129307,129427,129631,129700,129816,129944,130008,130212,130281,130413,130483,130623,130757,130853,130965,131065,131181,131277,131389,131489,131629,131765,131929,132059,132217,132367,132508,132652,132787,132899,133049,133177,133305,133441,133573,133703,133833,133945,134085,135371,135515,135653,135719,135809,135885,135989,136079,136181,136289,136397,136497,136577,136669,136767,136877,136955,137061,137153,137257,137367,137489,137652,137809,137889,137989,138079,138189,138283,138389,138481,138581,138693,138807,138923,139039,139133,139247,139359,139461,139581,139703,139785,139889,140009,140135,140233,140327,140415,140527,140643,140765,140877,141052,141168,141254,141346,141458,141582,141649,141775,141843,141971,142115,142243,142312,142407,142522,142635,142734,142843,142954,143065,143166,143271,143371,143501,143592,143715,143809,143921,144007,144111,144207,144295,144413,144517,144621,144747,144835,144943,145043,145133,145243,145327,145429,145513,145567,145631,145737,145847,145931,146051" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/single/debug.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/single/debug.json deleted file mode 100644 index 70066a8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/androidTest/debug/single/debug.json +++ /dev/null @@ -1,1538 +0,0 @@ -[ - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_clear_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_dialog_material_background.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_dialog_material_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_tick_mark_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_part_chronometer.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_simple.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_cab_background_top_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_cancel_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_media_cancel_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_edit_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/switch_thumb_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_action_bar_item_background_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_fade_out.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_menu_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_fade_in.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_popup_menu_header_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/tooltip_enter.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_borderless_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_btn_colored_borderless_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_btn_colored_borderless_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_icon_group.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_icon_group.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_background_transition_holo_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/tooltip_exit.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_item_background_holo_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_item_background_holo_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_popup_enter.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v23/abc_control_background_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_seek_thumb.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_btn_checkable.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_template_icon_group.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_colored_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_colored_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_grow_fade_in_from_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_borderless_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_action_tombstone.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_textfield_search_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_tile_bg.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_spinner_textfield_background_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_holo_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_icon.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_text_cursor_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_dialog_title_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_vector_test.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_hint_foreground_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_icon_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_btn_checkable.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_out_top.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_ab_back_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_btn_colored_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_default.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_select_dialog_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_spinner.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_search_api_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_shrink_fade_out_from_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_edittext.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_bg_low.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_cab_background_internal_bg.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_toolbar.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_in_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/support_simple_spinner_dropdown_item.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v11/abc_background_cache_hint_selector_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_thumb_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_disable_only_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_part_time.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_custom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_custom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_checkbox.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_small_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_title_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_search_view.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_media.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout-v26/abc_screen_toolbar.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_menu_overflow_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_bg.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_background_transition_holo_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_popup_menu_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_search_dropdown_item_icons_2line.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_indicator_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_spinner.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-v21/notification_action_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v16_notification_template_custom_big.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v16/notification_template_custom_big.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_disable_only_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_multichoice_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_secondary_text_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_seek_thumb.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_simple_overlay_action_mode.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_title_item.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_radio_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_track_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_menu_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_default_mtrl_shape.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_go_search_api_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_voice_search_api_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_activity_chooser_view.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_view_list_nav_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media_custom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_media_custom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow_custom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_narrow_custom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_secondary_text_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_switch_track.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_switch_track.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_lines_media.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_lines_media.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action_tombstone.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_action_tombstone.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_activity_chooser_view_list_item.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_check_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_holo_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_radio.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_edit_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_edit_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_mode_close_item_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_btn_colored_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_search_url_text.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_media_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_color_highlight_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_default.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_out_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_popup_exit.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v11/abc_background_cache_hint_selector_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_singlechoice_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_expanded_menu_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_template_custom_big.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/tooltip.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/tooltip_frame_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_up_container.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/switch_thumb_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_narrow.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_edittext.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_content_include.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/tooltip_frame_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_mode_bar.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_switch_thumb_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_custom_big.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_custom_big.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_btn_colored_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_button_bar_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_hint_foreground_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_item_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_tab_indicator_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_in_top.xml" - } -] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/debug.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/debug.json deleted file mode 100644 index 79d991c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/debug.json +++ /dev/null @@ -1,1773 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v17/values-v17.xml", - "from": { - "startLines": "2,5,9,12,15,18,22,26,29,32,35,39,42,46", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,228,456,614,764,936,1164,1406,1577,1751,1920,2193,2393,2597", - "endLines": "4,8,11,14,17,21,25,28,31,34,38,41,45,49", - "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12", - "endOffsets": "223,451,609,759,931,1159,1401,1572,1746,1915,2188,2388,2592,2921" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v13/values-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "58", - "endOffsets": "109" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bs/values-bs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,514,621,707,808,930,1012,1093,1179,1282,1387,1485,1590,1701,1806,1926,2023,2107", - "endColumns": "118,107,122,108,106,85,100,121,81,80,85,102,104,97,104,110,104,119,96,83,100", - "endOffsets": "169,277,400,509,616,702,803,925,1007,1088,1174,1277,1382,1480,1585,1696,1801,1921,2018,2102,2203" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values_values.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/res/values/values.xml", - "from": { - "startLines": "2,3,11,12,13,14,15,19,20,21,22,25,26,29,32,33,34,35,36,39,42,43,44,45,50,53,56,57,58,63,64,65,68,71,72,75,78,81,84,85,88,91,92,97,98,103,106,109,110,111,112,113,114,115,116,117,118", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,614,741,802,862,932,1065,1133,1262,1388,1450,1515,1583,1650,1773,1898,1965,2030,2095,2276,2397,2518,2584,2651,2861,2930,2996,3121,3247,3314,3440,3567,3692,3819,3884,4010,4133,4198,4406,4473,4653,4773,4893,4958,5020,5082,5144,5203,5263,5324,5385,5444", - "endLines": "2,10,11,12,13,14,18,19,20,21,24,25,28,31,32,33,34,35,38,41,42,43,44,49,52,55,56,57,62,63,64,67,70,71,74,77,80,83,84,87,90,91,96,97,102,105,108,109,110,111,112,113,114,115,116,117,125", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,736,797,857,927,1060,1128,1257,1383,1445,1510,1578,1645,1768,1893,1960,2025,2090,2271,2392,2513,2579,2646,2856,2925,2991,3116,3242,3309,3435,3562,3687,3814,3879,4005,4128,4193,4401,4468,4648,4768,4888,4953,5015,5077,5139,5198,5258,5319,5380,5439,5779" - }, - "to": { - "startLines": "2,3,11,12,13,14,16,22,23,24,25,28,29,32,35,36,37,38,39,42,45,46,47,48,53,56,59,60,61,66,67,68,71,74,75,78,81,84,87,88,91,94,95,100,101,106,109,112,113,114,115,116,117,118,119,120,121", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,669,890,951,1011,1081,1214,1282,1411,1537,1599,1664,1732,1799,1922,2047,2114,2179,2244,2425,2546,2667,2733,2800,3010,3079,3145,3270,3396,3463,3589,3716,3841,3968,4033,4159,4282,4347,4555,4622,4802,4922,5042,5107,5169,5231,5293,5352,5412,5473,5534,5593", - "endLines": "2,10,11,12,13,14,19,22,23,24,27,28,31,34,35,36,37,38,41,44,45,46,47,52,55,58,59,60,65,66,67,70,73,74,77,80,83,86,87,90,93,94,99,100,105,108,111,112,113,114,115,116,117,118,119,120,128", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,791,946,1006,1076,1209,1277,1406,1532,1594,1659,1727,1794,1917,2042,2109,2174,2239,2420,2541,2662,2728,2795,3005,3074,3140,3265,3391,3458,3584,3711,3836,3963,4028,4154,4277,4342,4550,4617,4797,4917,5037,5102,5164,5226,5288,5347,5407,5468,5529,5588,5928" - } - }, - { - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/values/colors.xml", - "from": { - "startLines": "4,2,3", - "startColumns": "4,4,4", - "startOffsets": "153,55,102", - "endColumns": "45,46,50", - "endOffsets": "194,97,148" - }, - "to": { - "startLines": "153,154,155", - "startColumns": "4,4,4", - "startOffsets": "7703,7749,7796", - "endColumns": "45,46,50", - "endOffsets": "7744,7791,7842" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values/values.xml", - "from": { - "startLines": "2,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,348,414,536,597,663", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "139,409,531,592,658,725" - }, - "to": { - "startLines": "179,1830,1832,1833,1838,1840", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "9266,134921,135097,135219,135481,135676", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "9350,134982,135214,135275,135542,135738" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values/values.xml", - "from": { - "startLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,53,54,58,59,60", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,124,1153,1223,1291,1363,1433,1494,1555,1616,1678,1742,1804,1865,1933,2033,2093,2159,2232,2301,2358,2410,2472,2544,2620,2655,2690,2724,2759,2794,2864,2935,3052,3253,3363,3564,3693,3765", - "endLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,52,53,57,58,59,60", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "119,182,1218,1286,1358,1428,1489,1550,1611,1673,1737,1799,1860,1928,2028,2088,2154,2227,2296,2353,2405,2467,2539,2615,2650,2685,2719,2754,2789,2859,2930,3047,3248,3358,3559,3688,3760,3827" - }, - "to": { - "startLines": "177,178,466,467,468,469,470,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,503,504,510,511,515,516,517,523,557,1825,1826,1831,1834,1839,1977,1978", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "9134,9203,44615,44685,44753,44825,44895,45740,45801,45862,45924,45988,46050,46111,46179,46279,46339,46405,46478,46547,46604,46656,47171,47243,47558,47593,47770,47804,47839,48149,50560,134603,134720,134987,135280,135547,146569,146641", - "endLines": "177,178,466,467,468,469,470,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,503,504,510,511,515,516,517,523,557,1825,1829,1831,1837,1839,1977,1978", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "9198,9261,44680,44748,44820,44890,44951,45796,45857,45919,45983,46045,46106,46174,46274,46334,46400,46473,46542,46599,46651,46713,47238,47314,47588,47623,47799,47834,47869,48214,50626,134715,134916,135092,135476,135671,146636,146703" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values/values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,393,394,398,402,406,411,417,424,428,432,437,441,445,449,453,457,461,465,469,473,477,481,485,490,494,497,501,505,509,513,517,521,524,528,532,536,540,544,545,546,547,550,553,556,559,563,564,565,566,567,570,572,574,576,581,582,586,592,596,597,599,610,611,615,621,625,626,627,631,658,662,663,667,695,861,883,1049,1071,1098,1105,1110,1124,1146,1151,1156,1166,1175,1184,1188,1195,1203,1210,1211,1220,1223,1226,1230,1234,1238,1241,1242,1246,1250,1260,1265,1272,1278,1279,1282,1286,1291,1293,1295,1298,1301,1303,1307,1310,1317,1320,1323,1327,1329,1333,1335,1341,1343,1347,1355,1363,1375,1381,1390,1393,1404,1407,1412,1413,1418,1460,1503,1504,1514,1523,1524,1526,1530,1533,1536,1539,1542,1546,1549,1552,1555,1559,1562,1566,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1595,1596,1597,1598,1599,1603,1604,1605,1606,1608,1610,1611,1612,1613,1614,1615,1616,1617,1619,1620,1622,1623,1625,1627,1628,1630,1631,1632,1633,1634,1635,1637,1638,1639,1640,1641,1642,1644,1646,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1662,1663,1664,1665,1666,1667,1669,1673,1677,1678,1679,1680,1681,1682,1683,1684,1686,1688,1690,1692,1694,1695,1696,1697,1699,1701,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1717,1718,1719,1720,1722,1724,1725,1727,1728,1730,1732,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1747,1748,1749,1750,1752,1753,1754,1755,1756,1758,1760,1762,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1333,1410,1488,1594,1700,1779,1859,1916,1974,2048,2123,2188,2254,2309,2381,2454,2521,2589,2648,2707,2766,2825,2884,2938,2992,3045,3099,3153,3207,3261,3335,3414,3487,3561,3632,3704,3776,3849,3906,3964,4037,4111,4185,4260,4332,4405,4475,4546,4606,26813,26882,26951,27021,27095,27171,27235,27312,27388,27465,27529,27594,27663,27740,27815,27884,27952,28029,28095,28192,28257,28326,28425,28496,28555,28613,28670,28729,28800,28872,28944,29016,29088,29155,29223,29291,29350,29413,29477,29567,29658,29718,29784,29851,29917,29987,30051,30104,30217,30275,30338,30403,30468,30543,30616,30688,30737,30798,30859,30920,30982,31046,31110,31174,31239,31302,31362,31423,31489,31548,31608,31670,31741,31801,31869,31955,32042,32132,32219,32307,32389,32472,32562,32653,32705,32763,32808,32874,32938,32995,33052,33106,33163,33211,33260,33311,33345,33392,33441,33487,33519,33583,33645,33705,33762,33836,33914,34007,34077,34155,34209,34279,34364,34412,34458,34529,34607,34685,34757,34831,34905,34979,35059,35132,35201,35273,35350,35402,35475,35549,35618,35693,35767,35841,35930,36000,36053,36131,36221,36309,36405,36495,36996,37085,37332,37613,37857,38142,38535,39012,39234,39456,39724,39951,40181,40411,40641,40871,41098,41337,41563,41808,42038,42286,42505,42788,42996,43127,43354,43600,43825,44072,44293,44538,44658,44934,45235,45559,45850,46164,46301,46432,46537,46779,46946,47150,47358,47629,47741,47853,47958,48075,48289,48435,48575,48661,49009,49097,49327,49745,49978,50060,50158,50775,50875,51111,51535,51774,51868,51957,52194,54246,54488,54590,54827,57011,67548,68799,79433,80696,82188,82724,83054,84115,85380,85636,85872,86419,86913,87518,87716,88296,88860,89235,89353,89891,90048,90244,90517,90773,90943,91084,91148,91430,91716,92392,92656,92994,93347,93441,93627,93933,94195,94320,94447,94686,94897,95016,95209,95386,95841,96022,96144,96403,96516,96703,96805,97249,97373,97648,98156,98652,99529,99823,100393,100542,101274,101446,101782,101874,102152,105338,108667,108729,109359,109973,110059,110172,110401,110561,110713,110884,111051,111294,111464,111637,111808,112082,112281,112486,112816,112900,112996,113092,113190,113290,113392,113494,113596,113698,113800,113900,113996,114108,114237,114360,114491,114622,114720,114834,114928,115048,115252,115321,115437,115565,115629,115833,115902,116034,116104,116244,116378,116474,116586,116686,116802,116898,117010,117110,117250,117386,117550,117680,117838,117988,118129,118273,118408,118520,118670,118798,118926,119062,119194,119324,119454,119566,119706,119852,119996,120134,120200,120290,120366,120470,120560,120662,120770,120878,120978,121058,121150,121248,121358,121436,121542,121634,121738,121848,121970,122133,122290,122370,122470,122560,122670,122764,122870,122962,123062,123174,123288,123404,123520,123614,123728,123840,123942,124062,124184,124266,124370,124490,124616,124714,124808,124896,125008,125124,125246,125358,125533,125649,125735,125827,125939,126063,126130,126256,126324,126452,126596,126724,126793,126888,127003,127116,127215,127324,127435,127546,127647,127752,127852,127982,128073,128196,128290,128402,128488,128592,128688,128776,128894,128998,129102,129228,129316,129424,129524,129614,129724,129808,129910,129994,130048,130112,130218,130328,130412", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,392,393,397,401,405,410,416,423,427,431,436,440,444,448,452,456,460,464,468,472,476,480,484,489,493,496,500,504,508,512,516,520,523,527,531,535,539,543,544,545,546,549,552,555,558,562,563,564,565,566,569,571,573,575,580,581,585,591,595,596,598,609,610,614,620,624,625,626,630,657,661,662,666,694,860,882,1048,1070,1097,1104,1109,1123,1145,1150,1155,1165,1174,1183,1187,1194,1202,1209,1210,1219,1222,1225,1229,1233,1237,1240,1241,1245,1249,1259,1264,1271,1277,1278,1281,1285,1290,1292,1294,1297,1300,1302,1306,1309,1316,1319,1322,1326,1328,1332,1334,1340,1342,1346,1354,1362,1374,1380,1389,1392,1403,1406,1411,1412,1417,1459,1502,1503,1513,1522,1523,1525,1529,1532,1535,1538,1541,1545,1548,1551,1554,1558,1561,1565,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1594,1595,1596,1597,1598,1602,1603,1604,1605,1607,1609,1610,1611,1612,1613,1614,1615,1616,1618,1619,1621,1622,1624,1626,1627,1629,1630,1631,1632,1633,1634,1636,1637,1638,1639,1640,1641,1643,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1661,1662,1663,1664,1665,1666,1668,1672,1676,1677,1678,1679,1680,1681,1682,1683,1685,1687,1689,1691,1693,1694,1695,1696,1698,1700,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1716,1717,1718,1719,1721,1723,1724,1726,1727,1729,1731,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1746,1747,1748,1749,1751,1752,1753,1754,1755,1757,1759,1761,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1405,1483,1589,1695,1774,1854,1911,1969,2043,2118,2183,2249,2304,2376,2449,2516,2584,2643,2702,2761,2820,2879,2933,2987,3040,3094,3148,3202,3256,3330,3409,3482,3556,3627,3699,3771,3844,3901,3959,4032,4106,4180,4255,4327,4400,4470,4541,4601,4662,26877,26946,27016,27090,27166,27230,27307,27383,27460,27524,27589,27658,27735,27810,27879,27947,28024,28090,28187,28252,28321,28420,28491,28550,28608,28665,28724,28795,28867,28939,29011,29083,29150,29218,29286,29345,29408,29472,29562,29653,29713,29779,29846,29912,29982,30046,30099,30212,30270,30333,30398,30463,30538,30611,30683,30732,30793,30854,30915,30977,31041,31105,31169,31234,31297,31357,31418,31484,31543,31603,31665,31736,31796,31864,31950,32037,32127,32214,32302,32384,32467,32557,32648,32700,32758,32803,32869,32933,32990,33047,33101,33158,33206,33255,33306,33340,33387,33436,33482,33514,33578,33640,33700,33757,33831,33909,34002,34072,34150,34204,34274,34359,34407,34453,34524,34602,34680,34752,34826,34900,34974,35054,35127,35196,35268,35345,35397,35470,35544,35613,35688,35762,35836,35925,35995,36048,36126,36216,36304,36400,36490,36991,37080,37327,37608,37852,38137,38530,39007,39229,39451,39719,39946,40176,40406,40636,40866,41093,41332,41558,41803,42033,42281,42500,42783,42991,43122,43349,43595,43820,44067,44288,44533,44653,44929,45230,45554,45845,46159,46296,46427,46532,46774,46941,47145,47353,47624,47736,47848,47953,48070,48284,48430,48570,48656,49004,49092,49322,49740,49973,50055,50153,50770,50870,51106,51530,51769,51863,51952,52189,54241,54483,54585,54822,57006,67543,68794,79428,80691,82183,82719,83049,84110,85375,85631,85867,86414,86908,87513,87711,88291,88855,89230,89348,89886,90043,90239,90512,90768,90938,91079,91143,91425,91711,92387,92651,92989,93342,93436,93622,93928,94190,94315,94442,94681,94892,95011,95204,95381,95836,96017,96139,96398,96511,96698,96800,97244,97368,97643,98151,98647,99524,99818,100388,100537,101269,101441,101777,101869,102147,105333,108662,108724,109354,109968,110054,110167,110396,110556,110708,110879,111046,111289,111459,111632,111803,112077,112276,112481,112811,112895,112991,113087,113185,113285,113387,113489,113591,113693,113795,113895,113991,114103,114232,114355,114486,114617,114715,114829,114923,115043,115247,115316,115432,115560,115624,115828,115897,116029,116099,116239,116373,116469,116581,116681,116797,116893,117005,117105,117245,117381,117545,117675,117833,117983,118124,118268,118403,118515,118665,118793,118921,119057,119189,119319,119449,119561,119701,119847,119991,120129,120195,120285,120361,120465,120555,120657,120765,120873,120973,121053,121145,121243,121353,121431,121537,121629,121733,121843,121965,122128,122285,122365,122465,122555,122665,122759,122865,122957,123057,123169,123283,123399,123515,123609,123723,123835,123937,124057,124179,124261,124365,124485,124611,124709,124803,124891,125003,125119,125241,125353,125528,125644,125730,125822,125934,126058,126125,126251,126319,126447,126591,126719,126788,126883,126998,127111,127210,127319,127430,127541,127642,127747,127847,127977,128068,128191,128285,128397,128483,128587,128683,128771,128889,128993,129097,129223,129311,129419,129519,129609,129719,129803,129905,129989,130043,130107,130213,130323,130407,130527" - }, - "to": { - "startLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,471,472,473,474,475,476,477,478,479,495,496,497,498,499,500,501,502,505,506,507,508,509,512,513,514,518,519,520,521,522,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,556,558,559,560,561,562,569,576,577,581,585,589,594,600,607,611,615,620,624,628,632,636,640,644,648,652,656,660,664,668,673,677,680,684,688,692,696,700,704,707,711,715,719,723,727,728,729,730,733,736,739,742,746,747,748,749,750,753,755,757,759,764,765,769,775,779,780,782,793,794,798,804,808,809,810,814,841,845,846,850,878,1044,1066,1232,1254,1281,1288,1293,1307,1329,1334,1339,1349,1358,1367,1371,1378,1386,1393,1394,1403,1406,1409,1413,1417,1421,1424,1425,1429,1433,1443,1448,1455,1461,1462,1465,1469,1474,1476,1478,1481,1484,1486,1490,1493,1500,1503,1506,1510,1512,1516,1518,1524,1526,1530,1538,1546,1558,1564,1573,1576,1587,1590,1595,1596,1601,1643,1686,1687,1697,1706,1707,1709,1713,1716,1719,1722,1725,1729,1732,1735,1738,1742,1745,1749,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1778,1779,1780,1781,1782,1786,1787,1788,1789,1791,1793,1794,1795,1796,1797,1798,1799,1800,1802,1803,1805,1806,1808,1810,1811,1813,1814,1815,1816,1817,1818,1820,1821,1822,1823,1824,1841,1843,1845,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1861,1862,1863,1864,1865,1866,1868,1872,1876,1877,1878,1879,1880,1881,1882,1883,1885,1887,1889,1891,1893,1894,1895,1896,1898,1900,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1916,1917,1918,1919,1921,1923,1924,1926,1927,1929,1931,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1946,1947,1948,1949,1951,1952,1953,1954,1955,1957,1959,1961,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "614,796,841,5933,5974,6029,6087,6149,6217,6295,6376,6437,6512,6588,6665,6743,6828,6910,6986,7062,7139,7217,7323,7429,7508,7588,7645,7847,7921,7996,8061,8127,8182,8254,8327,8394,8462,8521,8580,8639,8698,8757,8811,8865,8918,8972,9026,9080,9355,9429,9508,9581,9655,9726,9798,9870,9943,10000,10058,10131,10205,10279,10354,10426,10499,10569,10640,10700,39559,39628,39697,39767,39841,39917,39981,40058,40134,40211,40275,40340,40409,40486,40561,40630,40698,40775,40841,40938,41003,41072,41171,41242,41301,41359,41416,41475,41546,41618,41690,41762,41834,41901,41969,42037,42096,42159,42223,42313,42404,42464,42530,42597,42663,42733,42797,42850,42963,43021,43084,43149,43214,43289,43362,43434,43483,43544,43605,43666,43728,43792,43856,43920,43985,44048,44108,44169,44235,44294,44354,44416,44487,44547,44956,45042,45129,45219,45306,45394,45476,45559,45649,46718,46770,46828,46873,46939,47003,47060,47117,47319,47376,47424,47473,47524,47628,47675,47724,47874,47906,47970,48032,48092,48219,48293,48371,48464,48534,48612,48666,48736,48821,48869,48915,48986,49064,49142,49214,49288,49362,49436,49516,49589,49658,49730,49807,49859,49932,50006,50075,50150,50224,50298,50387,50507,50631,50709,50799,50887,50983,51392,51893,51982,52229,52510,52754,53039,53432,53909,54131,54353,54621,54848,55078,55308,55538,55768,55995,56234,56460,56705,56935,57183,57402,57685,57893,58024,58251,58497,58722,58969,59190,59435,59555,59831,60132,60456,60747,61061,61198,61329,61434,61676,61843,62047,62255,62526,62638,62750,62855,62972,63186,63332,63472,63558,63906,63994,64224,64642,64875,64957,65055,65672,65772,66008,66432,66671,66765,66854,67091,69143,69385,69487,69724,71908,82445,83696,94330,95593,97085,97621,97951,99012,100277,100533,100769,101316,101810,102415,102613,103193,103757,104132,104250,104788,104945,105141,105414,105670,105840,105981,106045,106327,106613,107289,107553,107891,108244,108338,108524,108830,109092,109217,109344,109583,109794,109913,110106,110283,110738,110919,111041,111300,111413,111600,111702,112146,112270,112545,113053,113549,114426,114720,115290,115439,116171,116343,116679,116771,117049,120235,123564,123626,124256,124870,124956,125069,125298,125458,125610,125781,125948,126191,126361,126534,126705,126979,127178,127383,127713,127797,127893,127989,128087,128187,128289,128391,128493,128595,128697,128797,128893,129005,129134,129257,129388,129519,129617,129731,129825,129945,130149,130218,130334,130462,130526,130730,130799,130931,131001,131141,131275,131371,131483,131583,131699,131795,131907,132007,132147,132283,132447,132577,132735,132885,133026,133170,133305,133417,133567,133695,133823,133959,134091,134221,134351,134463,135743,135889,136033,136171,136237,136327,136403,136507,136597,136699,136807,136915,137015,137095,137187,137285,137395,137473,137579,137671,137775,137885,138007,138170,138327,138407,138507,138597,138707,138801,138907,138999,139099,139211,139325,139441,139557,139651,139765,139877,139979,140099,140221,140303,140407,140527,140653,140751,140845,140933,141045,141161,141283,141395,141570,141686,141772,141864,141976,142100,142167,142293,142361,142489,142633,142761,142830,142925,143040,143153,143252,143361,143472,143583,143684,143789,143889,144019,144110,144233,144327,144439,144525,144629,144725,144813,144931,145035,145139,145265,145353,145461,145561,145651,145761,145845,145947,146031,146085,146149,146255,146365,146449", - "endLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,471,472,473,474,475,476,477,478,479,495,496,497,498,499,500,501,502,505,506,507,508,509,512,513,514,518,519,520,521,522,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,556,558,559,560,561,562,575,576,580,584,588,593,599,606,610,614,619,623,627,631,635,639,643,647,651,655,659,663,667,672,676,679,683,687,691,695,699,703,706,710,714,718,722,726,727,728,729,732,735,738,741,745,746,747,748,749,752,754,756,758,763,764,768,774,778,779,781,792,793,797,803,807,808,809,813,840,844,845,849,877,1043,1065,1231,1253,1280,1287,1292,1306,1328,1333,1338,1348,1357,1366,1370,1377,1385,1392,1393,1402,1405,1408,1412,1416,1420,1423,1424,1428,1432,1442,1447,1454,1460,1461,1464,1468,1473,1475,1477,1480,1483,1485,1489,1492,1499,1502,1505,1509,1511,1515,1517,1523,1525,1529,1537,1545,1557,1563,1572,1575,1586,1589,1594,1595,1600,1642,1685,1686,1696,1705,1706,1708,1712,1715,1718,1721,1724,1728,1731,1734,1737,1741,1744,1748,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1777,1778,1779,1780,1781,1785,1786,1787,1788,1790,1792,1793,1794,1795,1796,1797,1798,1799,1801,1802,1804,1805,1807,1809,1810,1812,1813,1814,1815,1816,1817,1819,1820,1821,1822,1823,1824,1842,1844,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1860,1861,1862,1863,1864,1865,1867,1871,1875,1876,1877,1878,1879,1880,1881,1882,1884,1886,1888,1890,1892,1893,1894,1895,1897,1899,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1915,1916,1917,1918,1920,1922,1923,1925,1926,1928,1930,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1945,1946,1947,1948,1950,1951,1952,1953,1954,1956,1958,1960,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "664,836,885,5969,6024,6082,6144,6212,6290,6371,6432,6507,6583,6660,6738,6823,6905,6981,7057,7134,7212,7318,7424,7503,7583,7640,7698,7916,7991,8056,8122,8177,8249,8322,8389,8457,8516,8575,8634,8693,8752,8806,8860,8913,8967,9021,9075,9129,9424,9503,9576,9650,9721,9793,9865,9938,9995,10053,10126,10200,10274,10349,10421,10494,10564,10635,10695,10756,39623,39692,39762,39836,39912,39976,40053,40129,40206,40270,40335,40404,40481,40556,40625,40693,40770,40836,40933,40998,41067,41166,41237,41296,41354,41411,41470,41541,41613,41685,41757,41829,41896,41964,42032,42091,42154,42218,42308,42399,42459,42525,42592,42658,42728,42792,42845,42958,43016,43079,43144,43209,43284,43357,43429,43478,43539,43600,43661,43723,43787,43851,43915,43980,44043,44103,44164,44230,44289,44349,44411,44482,44542,44610,45037,45124,45214,45301,45389,45471,45554,45644,45735,46765,46823,46868,46934,46998,47055,47112,47166,47371,47419,47468,47519,47553,47670,47719,47765,47901,47965,48027,48087,48144,48288,48366,48459,48529,48607,48661,48731,48816,48864,48910,48981,49059,49137,49209,49283,49357,49431,49511,49584,49653,49725,49802,49854,49927,50001,50070,50145,50219,50293,50382,50452,50555,50704,50794,50882,50978,51068,51888,51977,52224,52505,52749,53034,53427,53904,54126,54348,54616,54843,55073,55303,55533,55763,55990,56229,56455,56700,56930,57178,57397,57680,57888,58019,58246,58492,58717,58964,59185,59430,59550,59826,60127,60451,60742,61056,61193,61324,61429,61671,61838,62042,62250,62521,62633,62745,62850,62967,63181,63327,63467,63553,63901,63989,64219,64637,64870,64952,65050,65667,65767,66003,66427,66666,66760,66849,67086,69138,69380,69482,69719,71903,82440,83691,94325,95588,97080,97616,97946,99007,100272,100528,100764,101311,101805,102410,102608,103188,103752,104127,104245,104783,104940,105136,105409,105665,105835,105976,106040,106322,106608,107284,107548,107886,108239,108333,108519,108825,109087,109212,109339,109578,109789,109908,110101,110278,110733,110914,111036,111295,111408,111595,111697,112141,112265,112540,113048,113544,114421,114715,115285,115434,116166,116338,116674,116766,117044,120230,123559,123621,124251,124865,124951,125064,125293,125453,125605,125776,125943,126186,126356,126529,126700,126974,127173,127378,127708,127792,127888,127984,128082,128182,128284,128386,128488,128590,128692,128792,128888,129000,129129,129252,129383,129514,129612,129726,129820,129940,130144,130213,130329,130457,130521,130725,130794,130926,130996,131136,131270,131366,131478,131578,131694,131790,131902,132002,132142,132278,132442,132572,132730,132880,133021,133165,133300,133412,133562,133690,133818,133954,134086,134216,134346,134458,134598,135884,136028,136166,136232,136322,136398,136502,136592,136694,136802,136910,137010,137090,137182,137280,137390,137468,137574,137666,137770,137880,138002,138165,138322,138402,138502,138592,138702,138796,138902,138994,139094,139206,139320,139436,139552,139646,139760,139872,139974,140094,140216,140298,140402,140522,140648,140746,140840,140928,141040,141156,141278,141390,141565,141681,141767,141859,141971,142095,142162,142288,142356,142484,142628,142756,142825,142920,143035,143148,143247,143356,143467,143578,143679,143784,143884,144014,144105,144228,144322,144434,144520,144624,144720,144808,144926,145030,145134,145260,145348,145456,145556,145646,145756,145840,145942,146026,146080,146144,146250,146360,146444,146564" - } - }, - { - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/values/styles.xml", - "from": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "54", - "endLines": "8", - "endColumns": "12", - "endOffsets": "368" - }, - "to": { - "startLines": "563", - "startColumns": "4", - "startOffsets": "51073", - "endLines": "568", - "endColumns": "12", - "endOffsets": "51387" - } - }, - { - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/values/strings.xml", - "from": { - "startLines": "1", - "startColumns": "4", - "startOffsets": "16", - "endColumns": "49", - "endOffsets": "61" - }, - "to": { - "startLines": "555", - "startColumns": "4", - "startOffsets": "50457", - "endColumns": "49", - "endOffsets": "50502" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ca/values-ca.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,700,808,934,1018,1099,1182,1293,1402,1500,1610,1714,1822,1945,2044,2125", - "endColumns": "117,107,122,105,106,82,107,125,83,80,82,110,108,97,109,103,107,122,98,80,100", - "endOffsets": "168,276,399,505,612,695,803,929,1013,1094,1177,1288,1397,1495,1605,1709,1817,1940,2039,2120,2221" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-te/values-te.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,509,620,710,815,940,1022,1104,1189,1302,1410,1510,1621,1723,1840,1967,2068,2151", - "endColumns": "113,107,122,108,110,89,104,124,81,81,84,112,107,99,110,101,116,126,100,82,100", - "endOffsets": "164,272,395,504,615,705,810,935,1017,1099,1184,1297,1405,1505,1616,1718,1835,1962,2063,2146,2247" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es-rUS/values-es-rUS.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,515,623,708,809,932,1017,1099,1181,1293,1393,1494,1602,1709,1816,1938,2038,2120", - "endColumns": "119,107,122,108,107,84,100,122,84,81,81,111,99,100,107,106,106,121,99,81,100", - "endOffsets": "170,278,401,510,618,703,804,927,1012,1094,1176,1288,1388,1489,1597,1704,1811,1933,2033,2115,2216" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sr/values-sr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,498,604,690,794,912,993,1073,1161,1266,1374,1475,1579,1687,1788,1916,2013,2097", - "endColumns": "108,107,122,102,105,85,103,117,80,79,87,104,107,100,103,107,100,127,96,83,100", - "endOffsets": "159,267,390,493,599,685,789,907,988,1068,1156,1261,1369,1470,1574,1682,1783,1911,2008,2092,2193" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-cs/values-cs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,271,395,497,606,692,797,914,995,1076,1160,1264,1373,1472,1578,1688,1795,1917,2015,2097", - "endColumns": "106,108,123,101,108,85,104,116,80,80,83,103,108,98,105,109,106,121,97,81,100", - "endOffsets": "157,266,390,492,601,687,792,909,990,1071,1155,1259,1368,1467,1573,1683,1790,1912,2010,2092,2193" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw/values-sw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,487,595,685,790,907,989,1072,1154,1255,1364,1463,1570,1679,1784,1903,2000,2082", - "endColumns": "102,107,122,97,107,89,104,116,81,82,81,100,108,98,106,108,104,118,96,81,100", - "endOffsets": "153,261,384,482,590,680,785,902,984,1067,1149,1250,1359,1458,1565,1674,1779,1898,1995,2077,2178" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bn/values-bn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,507,613,707,812,941,1019,1097,1184,1294,1410,1517,1627,1733,1846,1974,2079,2169", - "endColumns": "108,107,122,111,105,93,104,128,77,77,86,109,115,106,109,105,112,127,104,89,100", - "endOffsets": "159,267,390,502,608,702,807,936,1014,1092,1179,1289,1405,1512,1622,1728,1841,1969,2074,2164,2265" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ky/values-ky.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,485,604,688,795,912,990,1069,1150,1260,1367,1465,1571,1678,1779,1903,2006,2087", - "endColumns": "103,107,122,94,118,83,106,116,77,78,80,109,106,97,105,106,100,123,102,80,100", - "endOffsets": "154,262,385,480,599,683,790,907,985,1064,1145,1255,1362,1460,1566,1673,1774,1898,2001,2082,2183" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ml/values-ml.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,523,638,731,836,968,1045,1121,1203,1314,1420,1518,1632,1732,1843,1971,2072,2154", - "endColumns": "118,107,122,117,114,92,104,131,76,75,81,110,105,97,113,99,110,127,100,81,100", - "endOffsets": "169,277,400,518,633,726,831,963,1040,1116,1198,1309,1415,1513,1627,1727,1838,1966,2067,2149,2250" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-be/values-be.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,509,625,711,819,937,1016,1094,1177,1283,1389,1487,1595,1700,1805,1925,2025,2106", - "endColumns": "119,107,122,102,115,85,107,117,78,77,82,105,105,97,107,104,104,119,99,80,108", - "endOffsets": "170,278,401,504,620,706,814,932,1011,1089,1172,1278,1384,1482,1590,1695,1800,1920,2020,2101,2210" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-it/values-it.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,495,604,688,797,922,999,1075,1156,1262,1370,1468,1572,1677,1784,1906,2006,2089", - "endColumns": "108,107,122,99,108,83,108,124,76,75,80,105,107,97,103,104,106,121,99,82,100", - "endOffsets": "159,267,390,490,599,683,792,917,994,1070,1151,1257,1365,1463,1567,1672,1779,1901,2001,2084,2185" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-da/values-da.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,488,600,683,783,896,973,1050,1129,1238,1346,1442,1556,1658,1759,1875,1972,2051", - "endColumns": "102,107,122,98,111,82,99,112,76,76,78,108,107,95,113,101,100,115,96,78,100", - "endOffsets": "153,261,384,483,595,678,778,891,968,1045,1124,1233,1341,1437,1551,1653,1754,1870,1967,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-port/values-port.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "55", - "endOffsets": "106" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tr/values-tr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,490,602,687,793,913,992,1068,1147,1254,1359,1455,1562,1664,1772,1891,1989,2068", - "endColumns": "104,107,122,98,111,84,105,119,78,75,78,106,104,95,106,101,107,118,97,78,100", - "endOffsets": "155,263,386,485,597,682,788,908,987,1063,1142,1249,1354,1450,1557,1659,1767,1886,1984,2063,2164" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rIN/values-en-rIN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ta/values-ta.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,505,620,709,816,942,1023,1103,1185,1287,1391,1488,1598,1700,1807,1926,2026,2106", - "endColumns": "113,107,122,104,114,88,106,125,80,79,81,101,103,96,109,101,106,118,99,79,100", - "endOffsets": "164,272,395,500,615,704,811,937,1018,1098,1180,1282,1386,1483,1593,1695,1802,1921,2021,2101,2202" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nl/values-nl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,509,616,702,810,930,1007,1084,1166,1277,1381,1480,1595,1708,1811,1929,2032,2114", - "endColumns": "117,107,122,104,106,85,107,119,76,76,81,110,103,98,114,112,102,117,102,81,100", - "endOffsets": "168,276,399,504,611,697,805,925,1002,1079,1161,1272,1376,1475,1590,1703,1806,1924,2027,2109,2210" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-et/values-et.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,510,621,707,809,926,1006,1084,1167,1278,1383,1482,1592,1693,1796,1924,2026,2108", - "endColumns": "116,107,122,106,110,85,101,116,79,77,82,110,104,98,109,100,102,127,101,81,100", - "endOffsets": "167,275,398,505,616,702,804,921,1001,1079,1162,1273,1378,1477,1587,1688,1791,1919,2021,2103,2204" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hy/values-hy.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,490,600,689,795,910,992,1073,1158,1265,1372,1471,1581,1688,1788,1913,2012,2094", - "endColumns": "102,107,122,100,109,88,105,114,81,80,84,106,106,98,109,106,99,124,98,81,100", - "endOffsets": "153,261,384,485,595,684,790,905,987,1068,1153,1260,1367,1466,1576,1683,1783,1908,2007,2089,2190" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-xlarge-v4/values-xlarge-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,126,197,267,337,405", - "endColumns": "70,70,69,69,67,67", - "endOffsets": "121,192,262,332,400,468" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ur/values-ur.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,502,611,697,801,921,997,1073,1158,1266,1375,1477,1588,1688,1796,1925,2023,2103", - "endColumns": "109,107,122,105,108,85,103,119,75,75,84,107,108,101,110,99,107,128,97,79,102", - "endOffsets": "160,268,391,497,606,692,796,916,992,1068,1153,1261,1370,1472,1583,1683,1791,1920,2018,2098,2201" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zu/values-zu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,501,615,703,806,933,1013,1093,1179,1283,1389,1487,1594,1700,1806,1926,2022,2103", - "endColumns": "107,107,122,106,113,87,102,126,79,79,85,103,105,97,106,105,105,119,95,80,100", - "endOffsets": "158,266,389,496,610,698,801,928,1008,1088,1174,1278,1384,1482,1589,1695,1801,1921,2017,2098,2199" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rAU/values-en-rAU.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-am/values-am.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,157,265,388,487,593,679,782,895,973,1051,1130,1230,1330,1426,1529,1628,1735,1851,1947,2026", - "endColumns": "101,107,122,98,105,85,102,112,77,77,78,99,99,95,102,98,106,115,95,78,100", - "endOffsets": "152,260,383,482,588,674,777,890,968,1046,1125,1225,1325,1421,1524,1623,1730,1846,1942,2021,2122" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hdpi-v4/values-hdpi-v4.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "6", - "endColumns": "13", - "endOffsets": "327" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fa/values-fa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,275,401,504,615,699,802,917,996,1074,1155,1267,1370,1468,1578,1682,1791,1916,2017,2098", - "endColumns": "109,109,125,102,110,83,102,114,78,77,80,111,102,97,109,103,108,124,100,80,100", - "endOffsets": "160,270,396,499,610,694,797,912,991,1069,1150,1262,1365,1463,1573,1677,1786,1911,2012,2093,2194" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-large-v4/values-large-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4,4,4,4", - "startOffsets": "55,114,185,256,326,396,464,532,636", - "endColumns": "58,70,70,69,69,67,67,103,115", - "endOffsets": "109,180,251,321,391,459,527,631,747" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uk/values-uk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,604,690,798,916,995,1075,1156,1262,1369,1467,1575,1681,1790,1914,2014,2095", - "endColumns": "109,107,122,101,105,85,107,117,78,79,80,105,106,97,107,105,108,123,99,80,100", - "endOffsets": "160,268,391,493,599,685,793,911,990,1070,1151,1257,1364,1462,1570,1676,1785,1909,2009,2090,2191" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kk/values-kk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,501,611,696,802,921,1002,1082,1163,1266,1371,1469,1576,1685,1785,1900,1999,2080", - "endColumns": "111,107,122,102,109,84,105,118,80,79,80,102,104,97,106,108,99,114,98,80,100", - "endOffsets": "162,270,393,496,606,691,797,916,997,1077,1158,1261,1366,1464,1571,1680,1780,1895,1994,2075,2176" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sv/values-sv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,495,606,691,793,906,982,1058,1138,1244,1344,1440,1545,1647,1749,1866,1968,2047", - "endColumns": "105,107,122,102,110,84,101,112,75,75,79,105,99,95,104,101,101,116,101,78,100", - "endOffsets": "156,264,387,490,601,686,788,901,977,1053,1133,1239,1339,1435,1540,1642,1744,1861,1963,2042,2143" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sq/values-sq.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,500,612,699,809,932,1013,1092,1175,1281,1386,1484,1590,1693,1809,1940,2039,2120", - "endColumns": "113,107,122,99,111,86,109,122,80,78,82,105,104,97,105,102,115,130,98,80,100", - "endOffsets": "164,272,395,495,607,694,804,927,1008,1087,1170,1276,1381,1479,1585,1688,1804,1935,2034,2115,2216" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hu/values-hu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,499,614,698,810,940,1016,1092,1175,1285,1396,1496,1607,1715,1834,1968,2071,2154", - "endColumns": "107,107,122,104,114,83,111,129,75,75,82,109,110,99,110,107,118,133,102,82,100", - "endOffsets": "158,266,389,494,609,693,805,935,1011,1087,1170,1280,1391,1491,1602,1710,1829,1963,2066,2149,2250" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sk/values-sk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,493,604,690,798,916,997,1078,1162,1267,1376,1475,1581,1692,1801,1925,2023,2111", - "endColumns": "106,107,122,99,110,85,107,117,80,80,83,104,108,98,105,110,108,123,97,87,100", - "endOffsets": "157,265,388,488,599,685,793,911,992,1073,1157,1262,1371,1470,1576,1687,1796,1920,2018,2106,2207" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mk/values-mk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,286,390,498,584,689,808,891,973,1060,1166,1273,1374,1481,1592,1696,1794,1878", - "endColumns": "107,122,103,107,85,104,118,82,81,86,105,106,100,106,110,103,97,83,100", - "endOffsets": "158,281,385,493,579,684,803,886,968,1055,1161,1268,1369,1476,1587,1691,1789,1873,1974" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-vi/values-vi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,508,617,701,804,923,1000,1077,1161,1265,1374,1475,1580,1694,1799,1919,2018,2102", - "endColumns": "113,107,122,107,108,83,102,118,76,76,83,103,108,100,104,113,104,119,98,83,100", - "endOffsets": "164,272,395,503,612,696,799,918,995,1072,1156,1260,1369,1470,1575,1689,1794,1914,2013,2097,2198" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es/values-es.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,516,624,709,810,938,1023,1105,1187,1294,1394,1493,1601,1708,1815,1937,2037,2119", - "endColumns": "116,107,122,112,107,84,100,127,84,81,81,106,99,98,107,106,106,121,99,81,100", - "endOffsets": "167,275,398,511,619,704,805,933,1018,1100,1182,1289,1389,1488,1596,1703,1810,1932,2032,2114,2215" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v25/values-v25.xml", - "from": { - "startLines": "2,3,4,6", - "startColumns": "4,4,4,4", - "startOffsets": "55,126,209,308", - "endLines": "2,3,5,7", - "endColumns": "70,82,12,12", - "endOffsets": "121,204,303,414" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uz/values-uz.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,609,695,806,922,1002,1081,1165,1274,1381,1482,1590,1695,1802,1926,2025,2109", - "endColumns": "104,107,122,103,113,85,110,115,79,78,83,108,106,100,107,104,106,123,98,83,100", - "endOffsets": "155,263,386,490,604,690,801,917,997,1076,1160,1269,1376,1477,1585,1690,1797,1921,2020,2104,2205" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-is/values-is.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,155,263,386,483,595,680,781,895,975,1055,1136,1246,1354,1452,1561,1660,1763,1881,1979,2060", - "endColumns": "99,107,122,96,111,84,100,113,79,79,80,109,107,97,108,98,102,117,97,80,100", - "endOffsets": "150,258,381,478,590,675,776,890,970,1050,1131,1241,1349,1447,1556,1655,1758,1876,1974,2055,2156" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v23/values-v23.xml", - "from": { - "startLines": "2,3,4,5,6,19,32,33,34,35,36", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", - "endLines": "2,3,4,5,18,31,32,33,34,35,36", - "endColumns": "134,134,74,86,12,12,126,104,114,106,112", - "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lv/values-lv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,514,623,709,813,935,1017,1099,1184,1293,1405,1504,1615,1724,1829,1948,2047,2129", - "endColumns": "119,107,122,107,108,85,103,121,81,81,84,108,111,98,110,108,104,118,98,81,100", - "endOffsets": "170,278,401,509,618,704,808,930,1012,1094,1179,1288,1400,1499,1610,1719,1824,1943,2042,2124,2225" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rHK/values-zh-rHK.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1667,1780,1874,1952", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,97,112,93,77,101", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1662,1775,1869,1947,2049" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v11/values-v11.xml", - "from": { - "startLines": "2,8,14,20,26,32,38,39,43,47,48,52,56,57,61,66,71,76,78,80,81,82,136,191", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,474,899,1327,1753,2180,2605,2694,2940,3189,3290,3542,3797,3900,4153,4561,4981,5403,5510,5639,5710,5793,9818,13986", - "endLines": "7,13,19,25,31,37,38,42,46,47,51,55,56,60,65,70,75,77,79,80,81,135,190,191", - "endColumns": "12,12,12,12,12,12,88,12,12,100,12,12,102,12,12,12,12,12,12,70,82,12,12,90", - "endOffsets": "469,894,1322,1748,2175,2600,2689,2935,3184,3285,3537,3792,3895,4148,4556,4976,5398,5505,5634,5705,5788,9813,13981,14072" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-my/values-my.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,397,502,619,712,824,952,1030,1109,1195,1318,1430,1532,1658,1769,1879,2002,2102,2186", - "endColumns": "108,107,124,104,116,92,111,127,77,78,85,122,111,101,125,110,109,122,99,83,100", - "endOffsets": "159,267,392,497,614,707,819,947,1025,1104,1190,1313,1425,1527,1653,1764,1874,1997,2097,2181,2282" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ko/values-ko.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,258,381,475,577,659,757,863,942,1018,1098,1196,1291,1386,1486,1582,1681,1796,1890,1968", - "endColumns": "94,107,122,93,101,81,97,105,78,75,79,97,94,94,99,95,98,114,93,77,100", - "endOffsets": "145,253,376,470,572,654,752,858,937,1013,1093,1191,1286,1381,1481,1577,1676,1791,1885,1963,2064" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ar/values-ar.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,507,616,698,799,913,992,1071,1150,1255,1356,1452,1560,1663,1766,1885,1982,2063", - "endColumns": "116,107,122,103,108,81,100,113,78,78,78,104,100,95,107,102,102,118,96,80,100", - "endOffsets": "167,275,398,502,611,693,794,908,987,1066,1145,1250,1351,1447,1555,1658,1761,1880,1977,2058,2159" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr-rCA/values-fr-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,710,826,956,1039,1119,1215,1325,1437,1540,1651,1758,1860,1982,2081,2167", - "endColumns": "110,107,122,114,110,86,115,129,82,79,95,109,111,102,110,106,101,121,98,85,100", - "endOffsets": "161,269,392,507,618,705,821,951,1034,1114,1210,1320,1432,1535,1646,1753,1855,1977,2076,2162,2263" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ka/values-ka.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,610,698,803,916,1000,1082,1165,1278,1385,1483,1596,1700,1804,1926,2024,2105", - "endColumns": "108,107,122,103,110,87,104,112,83,81,82,112,106,97,112,103,103,121,97,80,100", - "endOffsets": "159,267,390,494,605,693,798,911,995,1077,1160,1273,1380,1478,1591,1695,1799,1921,2019,2100,2201" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-h720dp-v13/values-h720dp-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "66", - "endOffsets": "117" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tl/values-tl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,513,630,718,824,945,1024,1102,1186,1295,1406,1507,1617,1734,1842,1965,2067,2151", - "endColumns": "118,107,122,107,116,87,105,120,78,77,83,108,110,100,109,116,107,122,101,83,100", - "endOffsets": "169,277,400,508,625,713,819,940,1019,1097,1181,1290,1401,1502,1612,1729,1837,1960,2062,2146,2247" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sl/values-sl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,500,608,695,798,917,1002,1086,1170,1278,1387,1487,1600,1707,1811,1928,2025,2108", - "endColumns": "106,107,122,106,107,86,102,118,84,83,83,107,108,99,112,106,103,116,96,82,100", - "endOffsets": "157,265,388,495,603,690,793,912,997,1081,1165,1273,1382,1482,1595,1702,1806,1923,2020,2103,2204" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247,259,260,261,264,267,268,271,272", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8800,11880,12078,12278,12401,12524,12637,12820,12951,13152,13241,13352,13585,13686,13781,13904,14033,14150,14327,14426,14561,14704,14839,14958,15159,15278,15371,15482,15538,15645,15840,15951,16084,16179,16270,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966,19085,19214,19385,19551,19680,19851,19982", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258,259,260,263,266,267,270,271,274", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8795,11875,12073,12273,12396,12519,12632,12815,12946,13147,13236,13347,13580,13681,13776,13899,14028,14145,14322,14421,14556,14699,14834,14953,15154,15273,15366,15477,15533,15640,15835,15946,16079,16174,16265,16356,16473,16612,16683,16766,17446,17503,17561,18255,18961,19080,19209,19380,19546,19675,19846,19977,20147" - }, - "to": { - "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251,263,264,265,268,271,272,275,276", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9099,12179,12377,12577,12700,12823,12936,13119,13250,13451,13540,13651,13884,13985,14080,14203,14332,14449,14626,14725,14860,15003,15138,15257,15458,15577,15670,15781,15837,15944,16139,16250,16383,16478,16569,16660,16777,16916,16987,17070,17750,17807,17865,18559,19265,19384,19513,19684,19850,19979,20150,20281", - "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262,263,264,267,270,271,274,275,278", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9094,12174,12372,12572,12695,12818,12931,13114,13245,13446,13535,13646,13879,13980,14075,14198,14327,14444,14621,14720,14855,14998,15133,15252,15453,15572,15665,15776,15832,15939,16134,16245,16378,16473,16564,16655,16772,16911,16982,17065,17745,17802,17860,18554,19260,19379,19508,19679,19845,19974,20145,20276,20446" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,5,8,11", - "startColumns": "4,4,4,4", - "startOffsets": "55,223,386,554", - "endLines": "4,7,10,13", - "endColumns": "12,12,12,12", - "endOffsets": "218,381,549,716" - }, - "to": { - "startLines": "281,284,288,292", - "startColumns": "4,4,4,4", - "startOffsets": "20693,20861,21150,21446", - "endLines": "283,286,290,294", - "endColumns": "12,12,12,12", - "endOffsets": "20856,21019,21313,21608" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,13", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,354,470,596,722,850,1022", - "endLines": "2,3,4,5,6,7,8,9,12,17", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" - }, - "to": { - "startLines": "2,3,4,5,279,280,287,291,295,298", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,20451,20567,21024,21318,21613,21785", - "endLines": "2,3,4,5,279,280,287,291,297,302", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,20562,20688,21145,21441,21780,22118" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ja/values-ja.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,152,259,380,473,578,660,758,866,943,1019,1097,1199,1298,1393,1496,1591,1687,1798,1895,1973", - "endColumns": "96,106,120,92,104,81,97,107,76,75,77,101,98,94,102,94,95,110,96,77,100", - "endOffsets": "147,254,375,468,573,655,753,861,938,1014,1092,1194,1293,1388,1491,1586,1682,1793,1890,1968,2069" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-in/values-in.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,603,690,794,910,992,1071,1157,1260,1369,1470,1574,1682,1790,1913,2012,2096", - "endColumns": "109,107,122,101,104,86,103,115,81,78,85,102,108,100,103,107,107,122,98,83,100", - "endOffsets": "160,268,391,493,598,685,789,905,987,1066,1152,1255,1364,1465,1569,1677,1785,1908,2007,2091,2192" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hi/values-hi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,508,615,700,802,924,1001,1079,1169,1278,1380,1478,1588,1688,1803,1928,2034,2113", - "endColumns": "116,107,122,104,106,84,101,121,76,77,89,108,101,97,109,99,114,124,105,78,100", - "endOffsets": "167,275,398,503,610,695,797,919,996,1074,1164,1273,1375,1473,1583,1683,1798,1923,2029,2108,2209" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt/values-pt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-th/values-th.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,597,686,788,898,975,1053,1134,1242,1346,1444,1552,1657,1758,1874,1969,2050", - "endColumns": "104,107,122,97,107,88,101,109,76,77,80,107,103,97,107,104,100,115,94,80,100", - "endOffsets": "155,263,386,484,592,681,783,893,970,1048,1129,1237,1341,1439,1547,1652,1753,1869,1964,2045,2146" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr/values-fr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,705,811,941,1024,1104,1190,1300,1412,1515,1626,1733,1840,1962,2061,2147", - "endColumns": "110,107,122,114,110,81,105,129,82,79,85,109,111,102,110,106,106,121,98,85,100", - "endOffsets": "161,269,392,507,618,700,806,936,1019,1099,1185,1295,1407,1510,1621,1728,1835,1957,2056,2142,2243" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nb/values-nb.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,272,397,492,606,692,792,905,981,1057,1137,1240,1339,1435,1539,1637,1738,1854,1951,2030", - "endColumns": "107,108,124,94,113,85,99,112,75,75,79,102,98,95,103,97,100,115,96,78,100", - "endOffsets": "158,267,392,487,601,687,787,900,976,1052,1132,1235,1334,1430,1534,1632,1733,1849,1946,2025,2126" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-az/values-az.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,493,605,693,800,914,995,1074,1159,1266,1373,1473,1582,1686,1796,1893,1976", - "endColumns": "107,107,122,98,111,87,106,113,80,78,84,106,106,99,108,103,109,96,82,100", - "endOffsets": "158,266,389,488,600,688,795,909,990,1069,1154,1261,1368,1468,1577,1681,1791,1888,1971,2072" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bg/values-bg.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,281,409,516,621,707,812,933,1012,1090,1173,1287,1396,1496,1610,1716,1824,1947,2046,2129", - "endColumns": "114,110,127,106,104,85,104,120,78,77,82,113,108,99,113,105,107,122,98,82,100", - "endOffsets": "165,276,404,511,616,702,807,928,1007,1085,1168,1282,1391,1491,1605,1711,1819,1942,2041,2124,2225" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kn/values-kn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,516,629,717,824,951,1028,1105,1187,1303,1414,1513,1626,1730,1844,1970,2070,2152", - "endColumns": "117,107,122,111,112,87,106,126,76,76,81,115,110,98,112,103,113,125,99,81,100", - "endOffsets": "168,276,399,511,624,712,819,946,1023,1100,1182,1298,1409,1508,1621,1725,1839,1965,2065,2147,2248" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-b+sr+Latn/values-b+sr+Latn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,605,691,795,913,995,1076,1164,1270,1378,1479,1584,1692,1793,1921,2018,2102", - "endColumns": "108,107,122,103,105,85,103,117,81,80,87,105,107,100,104,107,100,127,96,83,100", - "endOffsets": "159,267,390,494,600,686,790,908,990,1071,1159,1265,1373,1474,1579,1687,1788,1916,2013,2097,2198" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-iw/values-iw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,269,395,494,602,686,786,900,978,1056,1135,1237,1341,1437,1540,1641,1741,1857,1953,2032", - "endColumns": "103,109,125,98,107,83,99,113,77,77,78,101,103,95,102,100,99,115,95,78,102", - "endOffsets": "154,264,390,489,597,681,781,895,973,1051,1130,1232,1336,1432,1535,1636,1736,1852,1948,2027,2130" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw600dp-v13/values-sw600dp-v13.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,124,193,263,337,413,472,543", - "endColumns": "68,68,69,73,75,58,70,67", - "endOffsets": "119,188,258,332,408,467,538,606" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ms/values-ms.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,502,610,697,801,912,990,1069,1149,1261,1370,1467,1576,1679,1786,1908,2009,2089", - "endColumns": "110,107,122,104,107,86,103,110,77,78,79,111,108,96,108,102,106,121,100,79,100", - "endOffsets": "161,269,392,497,605,692,796,907,985,1064,1144,1256,1365,1462,1571,1674,1781,1903,2004,2084,2185" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ro/values-ro.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,176,284,407,511,624,712,824,945,1030,1111,1194,1306,1419,1519,1633,1738,1844,1965,2068,2151", - "endColumns": "120,107,122,103,112,87,111,120,84,80,82,111,112,99,113,104,105,120,102,82,100", - "endOffsets": "171,279,402,506,619,707,819,940,1025,1106,1189,1301,1414,1514,1628,1733,1839,1960,2063,2146,2247" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-land/values-land.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,125,189,260", - "endColumns": "69,63,70,67", - "endOffsets": "120,184,255,323" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hr/values-hr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,488,598,684,788,907,991,1074,1160,1264,1377,1483,1588,1701,1808,1931,2028,2117", - "endColumns": "104,107,122,96,109,85,103,118,83,82,85,103,112,105,104,112,106,122,96,88,100", - "endOffsets": "155,263,386,483,593,679,783,902,986,1069,1155,1259,1372,1478,1583,1696,1803,1926,2023,2112,2213" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mn/values-mn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,168,276,399,499,612,699,805,917,999,1081,1163,1272,1376,1473,1581,1682,1785,1907,2004,2085", - "endColumns": "112,107,122,99,112,86,105,111,81,81,81,108,103,96,107,100,102,121,96,80,100", - "endOffsets": "163,271,394,494,607,694,800,912,994,1076,1158,1267,1371,1468,1576,1677,1780,1902,1999,2080,2181" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ne/values-ne.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,603,694,801,928,1022,1112,1200,1310,1426,1529,1644,1746,1861,1992,2104,2190", - "endColumns": "104,107,122,103,107,90,106,126,93,89,87,109,115,102,114,101,114,130,111,85,100", - "endOffsets": "155,263,386,490,598,689,796,923,1017,1107,1195,1305,1421,1524,1639,1741,1856,1987,2099,2185,2286" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pa/values-pa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,497,602,688,788,901,978,1054,1133,1234,1335,1432,1541,1640,1750,1872,1972,2051", - "endColumns": "105,107,122,104,104,85,99,112,76,75,78,100,100,96,108,98,109,121,99,78,100", - "endOffsets": "156,264,387,492,597,683,783,896,973,1049,1128,1229,1330,1427,1536,1635,1745,1867,1967,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ldltr-v21/values-ldltr-v21.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "112", - "endOffsets": "163" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "5", - "endColumns": "12", - "endOffsets": "223" - }, - "to": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "121", - "endLines": "6", - "endColumns": "12", - "endOffsets": "289" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "65", - "endOffsets": "116" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rBR/values-pt-rBR.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lt/values-lt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,503,616,703,812,933,1015,1096,1181,1290,1399,1499,1609,1713,1826,1956,2057,2140", - "endColumns": "115,107,122,100,112,86,108,120,81,80,84,108,108,99,109,103,112,129,100,82,100", - "endOffsets": "166,274,397,498,611,698,807,928,1010,1091,1176,1285,1394,1494,1604,1708,1821,1951,2052,2135,2236" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mr/values-mr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,707,808,923,1000,1078,1158,1270,1372,1468,1577,1678,1793,1916,2021,2101", - "endColumns": "117,107,122,105,106,89,100,114,76,77,79,111,101,95,108,100,114,122,104,79,100", - "endOffsets": "168,276,399,505,612,702,803,918,995,1073,1153,1265,1367,1463,1572,1673,1788,1911,2016,2096,2197" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pl/values-pl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,504,612,698,807,926,1004,1081,1163,1272,1381,1480,1589,1700,1808,1931,2027,2109", - "endColumns": "115,107,122,101,107,85,108,118,77,76,81,108,108,98,108,110,107,122,95,81,100", - "endOffsets": "166,274,397,499,607,693,802,921,999,1076,1158,1267,1376,1475,1584,1695,1803,1926,2022,2104,2205" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-de/values-de.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,601,687,792,907,984,1060,1142,1253,1356,1455,1566,1668,1775,1897,1999,2081", - "endColumns": "104,107,122,97,111,85,104,114,76,75,81,110,102,98,110,101,106,121,101,81,100", - "endOffsets": "155,263,386,484,596,682,787,902,979,1055,1137,1248,1351,1450,1561,1663,1770,1892,1994,2076,2177" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v14/values-v14.xml", - "from": { - "startLines": "2,7,8,9,15", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,331,402,485,895", - "endLines": "6,7,8,14,20", - "endColumns": "12,70,82,12,12", - "endOffsets": "326,397,480,890,1312" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gu/values-gu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,606,693,794,917,994,1072,1152,1258,1360,1457,1566,1665,1775,1896,1999,2079", - "endColumns": "108,107,122,103,106,86,100,122,76,77,79,105,101,96,108,98,109,120,102,79,100", - "endOffsets": "159,267,390,494,601,688,789,912,989,1067,1147,1253,1355,1452,1561,1660,1770,1891,1994,2074,2175" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rCN/values-zh-rCN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,151,258,381,476,576,658,755,861,937,1013,1091,1187,1283,1378,1475,1570,1668,1780,1874,1952", - "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", - "endOffsets": "146,253,376,471,571,653,750,856,932,1008,1086,1182,1278,1373,1470,1565,1663,1775,1869,1947,2048" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rGB/values-en-rGB.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-km/values-km.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,489,601,688,792,910,987,1064,1147,1251,1356,1456,1566,1673,1781,1904,2002,2085", - "endColumns": "102,107,122,99,111,86,103,117,76,76,82,103,104,99,109,106,107,122,97,82,100", - "endOffsets": "153,261,384,484,596,683,787,905,982,1059,1142,1246,1351,1451,1561,1668,1776,1899,1997,2080,2181" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-el/values-el.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,515,632,717,822,948,1036,1122,1207,1318,1428,1530,1641,1750,1858,1981,2081,2166", - "endColumns": "117,107,122,110,116,84,104,125,87,85,84,110,109,101,110,108,107,122,99,84,100", - "endOffsets": "168,276,399,510,627,712,817,943,1031,1117,1202,1313,1423,1525,1636,1745,1853,1976,2076,2161,2262" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v18/values-v18.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "48", - "endOffsets": "99" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v26/values-v26.xml", - "from": { - "startLines": "2,3,4,8,12,16", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,130,217,431,657,896", - "endLines": "2,3,7,11,15,16", - "endColumns": "74,86,12,12,12,92", - "endOffsets": "125,212,426,652,891,984" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ru/values-ru.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,278,401,503,615,701,806,926,1005,1083,1163,1269,1377,1475,1584,1690,1798,1934,2034,2115", - "endColumns": "114,107,122,101,111,85,104,119,78,77,79,105,107,97,108,105,107,135,99,80,100", - "endOffsets": "165,273,396,498,610,696,801,921,1000,1078,1158,1264,1372,1470,1579,1685,1793,1929,2029,2110,2211" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-night-v8/values-night-v8.xml", - "from": { - "startLines": "2,3,4,5,6,7,8", - "startColumns": "4,4,4,4,4,4,4", - "startOffsets": "55,125,209,293,389,491,593", - "endColumns": "69,83,83,95,101,101,93", - "endOffsets": "120,204,288,384,486,588,682" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-si/values-si.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,503,610,698,803,919,1008,1095,1179,1288,1393,1491,1601,1700,1806,1927,2026,2108", - "endColumns": "109,107,122,106,106,87,104,115,88,86,83,108,104,97,109,98,105,120,98,81,100", - "endOffsets": "160,268,391,498,605,693,798,914,1003,1090,1174,1283,1388,1486,1596,1695,1801,1922,2021,2103,2204" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,121,182,248", - "endColumns": "65,60,65,66", - "endOffsets": "116,177,243,310" - }, - "to": { - "startLines": "8,9,10,11", - "startColumns": "4,4,4,4", - "startOffsets": "619,685,746,812", - "endColumns": "65,60,65,66", - "endOffsets": "680,741,807,874" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,212,347,416,480,549", - "endColumns": "156,134,68,63,68,69", - "endOffsets": "207,342,411,475,544,614" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v22/values-v22.xml", - "from": { - "startLines": "2,3,4,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,553", - "endLines": "2,3,8,13", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,548,896" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rPT/values-pt-rPT.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,933,1017,1098,1185,1292,1404,1506,1614,1721,1828,1950,2049,2134", - "endColumns": "119,107,122,105,106,88,100,123,83,80,86,106,111,101,107,106,106,121,98,84,100", - "endOffsets": "170,278,401,507,614,703,804,928,1012,1093,1180,1287,1399,1501,1609,1716,1823,1945,2044,2129,2230" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-eu/values-eu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,493,603,689,795,919,1006,1090,1172,1281,1391,1490,1599,1712,1823,1960,2059,2141", - "endColumns": "108,107,122,97,109,85,105,123,86,83,81,108,109,98,108,112,110,136,98,81,100", - "endOffsets": "159,267,390,488,598,684,790,914,1001,1085,1167,1276,1386,1485,1594,1707,1818,1955,2054,2136,2237" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gl/values-gl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,510,618,703,805,931,1015,1096,1178,1285,1394,1493,1601,1705,1812,1934,2034,2116", - "endColumns": "111,107,122,111,107,84,101,125,83,80,81,106,108,98,107,103,106,121,99,81,100", - "endOffsets": "162,270,393,505,613,698,800,926,1010,1091,1173,1280,1389,1488,1596,1700,1807,1929,2029,2111,2212" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v12/values-v12.xml", - "from": { - "startLines": "2,5,8,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,279,479,598", - "endLines": "4,7,8,9", - "endColumns": "12,12,118,94", - "endOffsets": "274,474,593,688" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fi/values-fi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,494,595,681,786,904,991,1073,1153,1260,1363,1460,1566,1665,1769,1888,1987,2067", - "endColumns": "107,107,122,99,100,85,104,117,86,81,79,106,102,96,105,98,103,118,98,79,100", - "endOffsets": "158,266,389,489,590,676,781,899,986,1068,1148,1255,1358,1455,1561,1660,1764,1883,1982,2062,2163" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-af/values-af.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,596,681,784,902,978,1055,1136,1243,1346,1443,1551,1653,1755,1872,1970,2050", - "endColumns": "103,107,122,99,105,84,102,117,75,76,80,106,102,96,107,101,101,116,97,79,100", - "endOffsets": "154,262,385,485,591,676,779,897,973,1050,1131,1238,1341,1438,1546,1648,1750,1867,1965,2045,2146" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lo/values-lo.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,486,593,678,783,895,972,1050,1130,1237,1334,1432,1537,1640,1744,1866,1962,2043", - "endColumns": "102,107,122,96,106,84,104,111,76,77,79,106,96,97,104,102,103,121,95,80,100", - "endOffsets": "153,261,384,481,588,673,778,890,967,1045,1125,1232,1329,1427,1532,1635,1739,1861,1957,2038,2139" - } - } - ] - }, - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rTW/values-zh-rTW.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1669,1782,1876,1954", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,99,112,93,77,100", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1664,1777,1871,1949,2050" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-af.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-af.json deleted file mode 100644 index 7b96304..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-af.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-af/values-af.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,596,681,784,902,978,1055,1136,1243,1346,1443,1551,1653,1755,1872,1970,2050", - "endColumns": "103,107,122,99,105,84,102,117,75,76,80,106,102,96,107,101,101,116,97,79,100", - "endOffsets": "154,262,385,485,591,676,779,897,973,1050,1131,1238,1341,1438,1546,1648,1750,1867,1965,2045,2146" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-am.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-am.json deleted file mode 100644 index ae4926a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-am.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-am/values-am.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,157,265,388,487,593,679,782,895,973,1051,1130,1230,1330,1426,1529,1628,1735,1851,1947,2026", - "endColumns": "101,107,122,98,105,85,102,112,77,77,78,99,99,95,102,98,106,115,95,78,100", - "endOffsets": "152,260,383,482,588,674,777,890,968,1046,1125,1225,1325,1421,1524,1623,1730,1846,1942,2021,2122" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ar.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ar.json deleted file mode 100644 index 7cf21af..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ar.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ar/values-ar.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,507,616,698,799,913,992,1071,1150,1255,1356,1452,1560,1663,1766,1885,1982,2063", - "endColumns": "116,107,122,103,108,81,100,113,78,78,78,104,100,95,107,102,102,118,96,80,100", - "endOffsets": "167,275,398,502,611,693,794,908,987,1066,1145,1250,1351,1447,1555,1658,1761,1880,1977,2058,2159" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-az.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-az.json deleted file mode 100644 index 2a6ad50..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-az.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-az/values-az.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,493,605,693,800,914,995,1074,1159,1266,1373,1473,1582,1686,1796,1893,1976", - "endColumns": "107,107,122,98,111,87,106,113,80,78,84,106,106,99,108,103,109,96,82,100", - "endOffsets": "158,266,389,488,600,688,795,909,990,1069,1154,1261,1368,1468,1577,1681,1791,1888,1971,2072" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json deleted file mode 100644 index 3ba30b8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-b+sr+Latn/values-b+sr+Latn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,605,691,795,913,995,1076,1164,1270,1378,1479,1584,1692,1793,1921,2018,2102", - "endColumns": "108,107,122,103,105,85,103,117,81,80,87,105,107,100,104,107,100,127,96,83,100", - "endOffsets": "159,267,390,494,600,686,790,908,990,1071,1159,1265,1373,1474,1579,1687,1788,1916,2013,2097,2198" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-be.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-be.json deleted file mode 100644 index 3fb2cfb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-be.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-be/values-be.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,509,625,711,819,937,1016,1094,1177,1283,1389,1487,1595,1700,1805,1925,2025,2106", - "endColumns": "119,107,122,102,115,85,107,117,78,77,82,105,105,97,107,104,104,119,99,80,108", - "endOffsets": "170,278,401,504,620,706,814,932,1011,1089,1172,1278,1384,1482,1590,1695,1800,1920,2020,2101,2210" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bg.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bg.json deleted file mode 100644 index a3c69c5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bg.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bg/values-bg.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,281,409,516,621,707,812,933,1012,1090,1173,1287,1396,1496,1610,1716,1824,1947,2046,2129", - "endColumns": "114,110,127,106,104,85,104,120,78,77,82,113,108,99,113,105,107,122,98,82,100", - "endOffsets": "165,276,404,511,616,702,807,928,1007,1085,1168,1282,1391,1491,1605,1711,1819,1942,2041,2124,2225" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bn.json deleted file mode 100644 index c54958b..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bn/values-bn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,507,613,707,812,941,1019,1097,1184,1294,1410,1517,1627,1733,1846,1974,2079,2169", - "endColumns": "108,107,122,111,105,93,104,128,77,77,86,109,115,106,109,105,112,127,104,89,100", - "endOffsets": "159,267,390,502,608,702,807,936,1014,1092,1179,1289,1405,1512,1622,1728,1841,1969,2074,2164,2265" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bs.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bs.json deleted file mode 100644 index 5b21f44..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-bs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-bs/values-bs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,514,621,707,808,930,1012,1093,1179,1282,1387,1485,1590,1701,1806,1926,2023,2107", - "endColumns": "118,107,122,108,106,85,100,121,81,80,85,102,104,97,104,110,104,119,96,83,100", - "endOffsets": "169,277,400,509,616,702,803,925,1007,1088,1174,1277,1382,1480,1585,1696,1801,1921,2018,2102,2203" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ca.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ca.json deleted file mode 100644 index f9a89b6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ca.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ca/values-ca.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,700,808,934,1018,1099,1182,1293,1402,1500,1610,1714,1822,1945,2044,2125", - "endColumns": "117,107,122,105,106,82,107,125,83,80,82,110,108,97,109,103,107,122,98,80,100", - "endOffsets": "168,276,399,505,612,695,803,929,1013,1094,1177,1288,1397,1495,1605,1709,1817,1940,2039,2120,2221" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-cs.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-cs.json deleted file mode 100644 index 5dbca46..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-cs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-cs/values-cs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,271,395,497,606,692,797,914,995,1076,1160,1264,1373,1472,1578,1688,1795,1917,2015,2097", - "endColumns": "106,108,123,101,108,85,104,116,80,80,83,103,108,98,105,109,106,121,97,81,100", - "endOffsets": "157,266,390,492,601,687,792,909,990,1071,1155,1259,1368,1467,1573,1683,1790,1912,2010,2092,2193" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-da.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-da.json deleted file mode 100644 index 1b97545..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-da.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-da/values-da.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,488,600,683,783,896,973,1050,1129,1238,1346,1442,1556,1658,1759,1875,1972,2051", - "endColumns": "102,107,122,98,111,82,99,112,76,76,78,108,107,95,113,101,100,115,96,78,100", - "endOffsets": "153,261,384,483,595,678,778,891,968,1045,1124,1233,1341,1437,1551,1653,1754,1870,1967,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-de.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-de.json deleted file mode 100644 index f64fb26..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-de.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-de/values-de.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,601,687,792,907,984,1060,1142,1253,1356,1455,1566,1668,1775,1897,1999,2081", - "endColumns": "104,107,122,97,111,85,104,114,76,75,81,110,102,98,110,101,106,121,101,81,100", - "endOffsets": "155,263,386,484,596,682,787,902,979,1055,1137,1248,1351,1450,1561,1663,1770,1892,1994,2076,2177" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-el.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-el.json deleted file mode 100644 index 50d4bed..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-el.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-el/values-el.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,515,632,717,822,948,1036,1122,1207,1318,1428,1530,1641,1750,1858,1981,2081,2166", - "endColumns": "117,107,122,110,116,84,104,125,87,85,84,110,109,101,110,108,107,122,99,84,100", - "endOffsets": "168,276,399,510,627,712,817,943,1031,1117,1202,1313,1423,1525,1636,1745,1853,1976,2076,2161,2262" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json deleted file mode 100644 index d26c3aa..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rAU/values-en-rAU.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json deleted file mode 100644 index 9e346bd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rGB/values-en-rGB.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json deleted file mode 100644 index d1360d6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-en-rIN/values-en-rIN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", - "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", - "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json deleted file mode 100644 index 7f10a4c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es-rUS/values-es-rUS.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,515,623,708,809,932,1017,1099,1181,1293,1393,1494,1602,1709,1816,1938,2038,2120", - "endColumns": "119,107,122,108,107,84,100,122,84,81,81,111,99,100,107,106,106,121,99,81,100", - "endOffsets": "170,278,401,510,618,703,804,927,1012,1094,1176,1288,1388,1489,1597,1704,1811,1933,2033,2115,2216" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-es.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-es.json deleted file mode 100644 index 8a80b4e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-es.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-es/values-es.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,516,624,709,810,938,1023,1105,1187,1294,1394,1493,1601,1708,1815,1937,2037,2119", - "endColumns": "116,107,122,112,107,84,100,127,84,81,81,106,99,98,107,106,106,121,99,81,100", - "endOffsets": "167,275,398,511,619,704,805,933,1018,1100,1182,1289,1389,1488,1596,1703,1810,1932,2032,2114,2215" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-et.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-et.json deleted file mode 100644 index 566b224..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-et.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-et/values-et.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,510,621,707,809,926,1006,1084,1167,1278,1383,1482,1592,1693,1796,1924,2026,2108", - "endColumns": "116,107,122,106,110,85,101,116,79,77,82,110,104,98,109,100,102,127,101,81,100", - "endOffsets": "167,275,398,505,616,702,804,921,1001,1079,1162,1273,1378,1477,1587,1688,1791,1919,2021,2103,2204" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-eu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-eu.json deleted file mode 100644 index 7abf0f9..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-eu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-eu/values-eu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,493,603,689,795,919,1006,1090,1172,1281,1391,1490,1599,1712,1823,1960,2059,2141", - "endColumns": "108,107,122,97,109,85,105,123,86,83,81,108,109,98,108,112,110,136,98,81,100", - "endOffsets": "159,267,390,488,598,684,790,914,1001,1085,1167,1276,1386,1485,1594,1707,1818,1955,2054,2136,2237" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fa.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fa.json deleted file mode 100644 index 951cd33..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fa.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fa/values-fa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,275,401,504,615,699,802,917,996,1074,1155,1267,1370,1468,1578,1682,1791,1916,2017,2098", - "endColumns": "109,109,125,102,110,83,102,114,78,77,80,111,102,97,109,103,108,124,100,80,100", - "endOffsets": "160,270,396,499,610,694,797,912,991,1069,1150,1262,1365,1463,1573,1677,1786,1911,2012,2093,2194" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fi.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fi.json deleted file mode 100644 index 73ce682..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fi.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fi/values-fi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,494,595,681,786,904,991,1073,1153,1260,1363,1460,1566,1665,1769,1888,1987,2067", - "endColumns": "107,107,122,99,100,85,104,117,86,81,79,106,102,96,105,98,103,118,98,79,100", - "endOffsets": "158,266,389,489,590,676,781,899,986,1068,1148,1255,1358,1455,1561,1660,1764,1883,1982,2062,2163" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json deleted file mode 100644 index ad40740..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr-rCA/values-fr-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,710,826,956,1039,1119,1215,1325,1437,1540,1651,1758,1860,1982,2081,2167", - "endColumns": "110,107,122,114,110,86,115,129,82,79,95,109,111,102,110,106,101,121,98,85,100", - "endOffsets": "161,269,392,507,618,705,821,951,1034,1114,1210,1320,1432,1535,1646,1753,1855,1977,2076,2162,2263" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fr.json deleted file mode 100644 index f0c4eb7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-fr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-fr/values-fr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,512,623,705,811,941,1024,1104,1190,1300,1412,1515,1626,1733,1840,1962,2061,2147", - "endColumns": "110,107,122,114,110,81,105,129,82,79,85,109,111,102,110,106,106,121,98,85,100", - "endOffsets": "161,269,392,507,618,700,806,936,1019,1099,1185,1295,1407,1510,1621,1728,1835,1957,2056,2142,2243" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-gl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-gl.json deleted file mode 100644 index e868385..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-gl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gl/values-gl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,510,618,703,805,931,1015,1096,1178,1285,1394,1493,1601,1705,1812,1934,2034,2116", - "endColumns": "111,107,122,111,107,84,101,125,83,80,81,106,108,98,107,103,106,121,99,81,100", - "endOffsets": "162,270,393,505,613,698,800,926,1010,1091,1173,1280,1389,1488,1596,1700,1807,1929,2029,2111,2212" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-gu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-gu.json deleted file mode 100644 index 90f6ff2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-gu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-gu/values-gu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,606,693,794,917,994,1072,1152,1258,1360,1457,1566,1665,1775,1896,1999,2079", - "endColumns": "108,107,122,103,106,86,100,122,76,77,79,105,101,96,108,98,109,120,102,79,100", - "endOffsets": "159,267,390,494,601,688,789,912,989,1067,1147,1253,1355,1452,1561,1660,1770,1891,1994,2074,2175" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json deleted file mode 100644 index a17f7d5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-h720dp-v13/values-h720dp-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "66", - "endOffsets": "117" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json deleted file mode 100644 index 6e500c2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hdpi-v4/values-hdpi-v4.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "6", - "endColumns": "13", - "endOffsets": "327" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hi.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hi.json deleted file mode 100644 index 8bd4253..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hi.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hi/values-hi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,172,280,403,508,615,700,802,924,1001,1079,1169,1278,1380,1478,1588,1688,1803,1928,2034,2113", - "endColumns": "116,107,122,104,106,84,101,121,76,77,89,108,101,97,109,99,114,124,105,78,100", - "endOffsets": "167,275,398,503,610,695,797,919,996,1074,1164,1273,1375,1473,1583,1683,1798,1923,2029,2108,2209" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hr.json deleted file mode 100644 index b93cabe..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hr/values-hr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,488,598,684,788,907,991,1074,1160,1264,1377,1483,1588,1701,1808,1931,2028,2117", - "endColumns": "104,107,122,96,109,85,103,118,83,82,85,103,112,105,104,112,106,122,96,88,100", - "endOffsets": "155,263,386,483,593,679,783,902,986,1069,1155,1259,1372,1478,1583,1696,1803,1926,2023,2112,2213" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hu.json deleted file mode 100644 index e211297..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hu/values-hu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,499,614,698,810,940,1016,1092,1175,1285,1396,1496,1607,1715,1834,1968,2071,2154", - "endColumns": "107,107,122,104,114,83,111,129,75,75,82,109,110,99,110,107,118,133,102,82,100", - "endOffsets": "158,266,389,494,609,693,805,935,1011,1087,1170,1280,1391,1491,1602,1710,1829,1963,2066,2149,2250" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hy.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hy.json deleted file mode 100644 index cf0f74d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-hy.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-hy/values-hy.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,490,600,689,795,910,992,1073,1158,1265,1372,1471,1581,1688,1788,1913,2012,2094", - "endColumns": "102,107,122,100,109,88,105,114,81,80,84,106,106,98,109,106,99,124,98,81,100", - "endOffsets": "153,261,384,485,595,684,790,905,987,1068,1153,1260,1367,1466,1576,1683,1783,1908,2007,2089,2190" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-in.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-in.json deleted file mode 100644 index 007da38..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-in.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-in/values-in.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,603,690,794,910,992,1071,1157,1260,1369,1470,1574,1682,1790,1913,2012,2096", - "endColumns": "109,107,122,101,104,86,103,115,81,78,85,102,108,100,103,107,107,122,98,83,100", - "endOffsets": "160,268,391,493,598,685,789,905,987,1066,1152,1255,1364,1465,1569,1677,1785,1908,2007,2091,2192" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-is.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-is.json deleted file mode 100644 index 46b6135..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-is.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-is/values-is.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,155,263,386,483,595,680,781,895,975,1055,1136,1246,1354,1452,1561,1660,1763,1881,1979,2060", - "endColumns": "99,107,122,96,111,84,100,113,79,79,80,109,107,97,108,98,102,117,97,80,100", - "endOffsets": "150,258,381,478,590,675,776,890,970,1050,1131,1241,1349,1447,1556,1655,1758,1876,1974,2055,2156" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-it.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-it.json deleted file mode 100644 index 7552f6f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-it.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-it/values-it.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,495,604,688,797,922,999,1075,1156,1262,1370,1468,1572,1677,1784,1906,2006,2089", - "endColumns": "108,107,122,99,108,83,108,124,76,75,80,105,107,97,103,104,106,121,99,82,100", - "endOffsets": "159,267,390,490,599,683,792,917,994,1070,1151,1257,1365,1463,1567,1672,1779,1901,2001,2084,2185" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-iw.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-iw.json deleted file mode 100644 index cb52737..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-iw.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-iw/values-iw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,269,395,494,602,686,786,900,978,1056,1135,1237,1341,1437,1540,1641,1741,1857,1953,2032", - "endColumns": "103,109,125,98,107,83,99,113,77,77,78,101,103,95,102,100,99,115,95,78,102", - "endOffsets": "154,264,390,489,597,681,781,895,973,1051,1130,1232,1336,1432,1535,1636,1736,1852,1948,2027,2130" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ja.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ja.json deleted file mode 100644 index 23e4c1c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ja.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ja/values-ja.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,152,259,380,473,578,660,758,866,943,1019,1097,1199,1298,1393,1496,1591,1687,1798,1895,1973", - "endColumns": "96,106,120,92,104,81,97,107,76,75,77,101,98,94,102,94,95,110,96,77,100", - "endOffsets": "147,254,375,468,573,655,753,861,938,1014,1092,1194,1293,1388,1491,1586,1682,1793,1890,1968,2069" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ka.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ka.json deleted file mode 100644 index 34212dc..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ka.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ka/values-ka.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,499,610,698,803,916,1000,1082,1165,1278,1385,1483,1596,1700,1804,1926,2024,2105", - "endColumns": "108,107,122,103,110,87,104,112,83,81,82,112,106,97,112,103,103,121,97,80,100", - "endOffsets": "159,267,390,494,605,693,798,911,995,1077,1160,1273,1380,1478,1591,1695,1799,1921,2019,2100,2201" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-kk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-kk.json deleted file mode 100644 index 8d713f7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-kk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kk/values-kk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,167,275,398,501,611,696,802,921,1002,1082,1163,1266,1371,1469,1576,1685,1785,1900,1999,2080", - "endColumns": "111,107,122,102,109,84,105,118,80,79,80,102,104,97,106,108,99,114,98,80,100", - "endOffsets": "162,270,393,496,606,691,797,916,997,1077,1158,1261,1366,1464,1571,1680,1780,1895,1994,2075,2176" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-km.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-km.json deleted file mode 100644 index 8d27c3a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-km.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-km/values-km.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,489,601,688,792,910,987,1064,1147,1251,1356,1456,1566,1673,1781,1904,2002,2085", - "endColumns": "102,107,122,99,111,86,103,117,76,76,82,103,104,99,109,106,107,122,97,82,100", - "endOffsets": "153,261,384,484,596,683,787,905,982,1059,1142,1246,1351,1451,1561,1668,1776,1899,1997,2080,2181" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-kn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-kn.json deleted file mode 100644 index 9524f20..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-kn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-kn/values-kn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,516,629,717,824,951,1028,1105,1187,1303,1414,1513,1626,1730,1844,1970,2070,2152", - "endColumns": "117,107,122,111,112,87,106,126,76,76,81,115,110,98,112,103,113,125,99,81,100", - "endOffsets": "168,276,399,511,624,712,819,946,1023,1100,1182,1298,1409,1508,1621,1725,1839,1965,2065,2147,2248" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ko.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ko.json deleted file mode 100644 index 2b2a20a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ko.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ko/values-ko.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,258,381,475,577,659,757,863,942,1018,1098,1196,1291,1386,1486,1582,1681,1796,1890,1968", - "endColumns": "94,107,122,93,101,81,97,105,78,75,79,97,94,94,99,95,98,114,93,77,100", - "endOffsets": "145,253,376,470,572,654,752,858,937,1013,1093,1191,1286,1381,1481,1577,1676,1791,1885,1963,2064" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ky.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ky.json deleted file mode 100644 index 2298a95..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ky.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ky/values-ky.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,267,390,485,604,688,795,912,990,1069,1150,1260,1367,1465,1571,1678,1779,1903,2006,2087", - "endColumns": "103,107,122,94,118,83,106,116,77,78,80,109,106,97,105,106,100,123,102,80,100", - "endOffsets": "154,262,385,480,599,683,790,907,985,1064,1145,1255,1362,1460,1566,1673,1774,1898,2001,2082,2183" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-land.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-land.json deleted file mode 100644 index 0fcdf95..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-land.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-land/values-land.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,125,189,260", - "endColumns": "69,63,70,67", - "endOffsets": "120,184,255,323" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json deleted file mode 100644 index 081b5d3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-large-v4/values-large-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4,4,4,4", - "startOffsets": "55,114,185,256,326,396,464,532,636", - "endColumns": "58,70,70,69,69,67,67,103,115", - "endOffsets": "109,180,251,321,391,459,527,631,747" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json deleted file mode 100644 index c0947f4..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ldltr-v21/values-ldltr-v21.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "112", - "endOffsets": "163" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lo.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lo.json deleted file mode 100644 index 6d9cbf9..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lo.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo/values-lo.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lo/values-lo.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,486,593,678,783,895,972,1050,1130,1237,1334,1432,1537,1640,1744,1866,1962,2043", - "endColumns": "102,107,122,96,106,84,104,111,76,77,79,106,96,97,104,102,103,121,95,80,100", - "endOffsets": "153,261,384,481,588,673,778,890,967,1045,1125,1232,1329,1427,1532,1635,1739,1861,1957,2038,2139" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lt.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lt.json deleted file mode 100644 index ab945a8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lt/values-lt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,503,616,703,812,933,1015,1096,1181,1290,1399,1499,1609,1713,1826,1956,2057,2140", - "endColumns": "115,107,122,100,112,86,108,120,81,80,84,108,108,99,109,103,112,129,100,82,100", - "endOffsets": "166,274,397,498,611,698,807,928,1010,1091,1176,1285,1394,1494,1604,1708,1821,1951,2052,2135,2236" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lv.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lv.json deleted file mode 100644 index 5dd2368..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-lv.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-lv/values-lv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,514,623,709,813,935,1017,1099,1184,1293,1405,1504,1615,1724,1829,1948,2047,2129", - "endColumns": "119,107,122,107,108,85,103,121,81,81,84,108,111,98,110,108,104,118,98,81,100", - "endOffsets": "170,278,401,509,618,704,808,930,1012,1094,1179,1288,1400,1499,1610,1719,1824,1943,2042,2124,2225" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mk.json deleted file mode 100644 index 7a2ab9c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk/values-mk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mk/values-mk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,286,390,498,584,689,808,891,973,1060,1166,1273,1374,1481,1592,1696,1794,1878", - "endColumns": "107,122,103,107,85,104,118,82,81,86,105,106,100,106,110,103,97,83,100", - "endOffsets": "158,281,385,493,579,684,803,886,968,1055,1161,1268,1369,1476,1587,1691,1789,1873,1974" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ml.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ml.json deleted file mode 100644 index 4f339df..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ml.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml/values-ml.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ml/values-ml.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,523,638,731,836,968,1045,1121,1203,1314,1420,1518,1632,1732,1843,1971,2072,2154", - "endColumns": "118,107,122,117,114,92,104,131,76,75,81,110,105,97,113,99,110,127,100,81,100", - "endOffsets": "169,277,400,518,633,726,831,963,1040,1116,1198,1309,1415,1513,1627,1727,1838,1966,2067,2149,2250" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mn.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mn.json deleted file mode 100644 index 078836c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mn.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn/values-mn.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mn/values-mn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,168,276,399,499,612,699,805,917,999,1081,1163,1272,1376,1473,1581,1682,1785,1907,2004,2085", - "endColumns": "112,107,122,99,112,86,105,111,81,81,81,108,103,96,107,100,102,121,96,80,100", - "endOffsets": "163,271,394,494,607,694,800,912,994,1076,1158,1267,1371,1468,1576,1677,1780,1902,1999,2080,2181" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mr.json deleted file mode 100644 index 15acb7e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-mr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr/values-mr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-mr/values-mr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,510,617,707,808,923,1000,1078,1158,1270,1372,1468,1577,1678,1793,1916,2021,2101", - "endColumns": "117,107,122,105,106,89,100,114,76,77,79,111,101,95,108,100,114,122,104,79,100", - "endOffsets": "168,276,399,505,612,702,803,918,995,1073,1153,1265,1367,1463,1572,1673,1788,1911,2016,2096,2197" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ms.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ms.json deleted file mode 100644 index 4753508..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ms.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms/values-ms.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ms/values-ms.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,166,274,397,502,610,697,801,912,990,1069,1149,1261,1370,1467,1576,1679,1786,1908,2009,2089", - "endColumns": "110,107,122,104,107,86,103,110,77,78,79,111,108,96,108,102,106,121,100,79,100", - "endOffsets": "161,269,392,497,605,692,796,907,985,1064,1144,1256,1365,1462,1571,1674,1781,1903,2004,2084,2185" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-my.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-my.json deleted file mode 100644 index 68afba1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-my.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my/values-my.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-my/values-my.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,397,502,619,712,824,952,1030,1109,1195,1318,1430,1532,1658,1769,1879,2002,2102,2186", - "endColumns": "108,107,124,104,116,92,111,127,77,78,85,122,111,101,125,110,109,122,99,83,100", - "endOffsets": "159,267,392,497,614,707,819,947,1025,1104,1190,1313,1425,1527,1653,1764,1874,1997,2097,2181,2282" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-nb.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-nb.json deleted file mode 100644 index 9ec67ce..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-nb.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nb/values-nb.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,272,397,492,606,692,792,905,981,1057,1137,1240,1339,1435,1539,1637,1738,1854,1951,2030", - "endColumns": "107,108,124,94,113,85,99,112,75,75,79,102,98,95,103,97,100,115,96,78,100", - "endOffsets": "158,267,392,487,601,687,787,900,976,1052,1132,1235,1334,1430,1534,1632,1733,1849,1946,2025,2126" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ne.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ne.json deleted file mode 100644 index 092a2cd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ne.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne/values-ne.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ne/values-ne.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,603,694,801,928,1022,1112,1200,1310,1426,1529,1644,1746,1861,1992,2104,2190", - "endColumns": "104,107,122,103,107,90,106,126,93,89,87,109,115,102,114,101,114,130,111,85,100", - "endOffsets": "155,263,386,490,598,689,796,923,1017,1107,1195,1305,1421,1524,1639,1741,1856,1987,2099,2185,2286" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json deleted file mode 100644 index f24c638..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-night-v8/values-night-v8.xml", - "from": { - "startLines": "2,3,4,5,6,7,8", - "startColumns": "4,4,4,4,4,4,4", - "startOffsets": "55,125,209,293,389,491,593", - "endColumns": "69,83,83,95,101,101,93", - "endOffsets": "120,204,288,384,486,588,682" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-nl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-nl.json deleted file mode 100644 index 7bc594c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-nl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-nl/values-nl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,281,404,509,616,702,810,930,1007,1084,1166,1277,1381,1480,1595,1708,1811,1929,2032,2114", - "endColumns": "117,107,122,104,106,85,107,119,76,76,81,110,103,98,114,112,102,117,102,81,100", - "endOffsets": "168,276,399,504,611,697,805,925,1002,1079,1161,1272,1376,1475,1590,1703,1806,1924,2027,2109,2210" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pa.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pa.json deleted file mode 100644 index 93bc338..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pa.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa/values-pa.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pa/values-pa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,497,602,688,788,901,978,1054,1133,1234,1335,1432,1541,1640,1750,1872,1972,2051", - "endColumns": "105,107,122,104,104,85,99,112,76,75,78,100,100,96,108,98,109,121,99,78,100", - "endOffsets": "156,264,387,492,597,683,783,896,973,1049,1128,1229,1330,1427,1536,1635,1745,1867,1967,2046,2147" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pl.json deleted file mode 100644 index 3e40a6c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pl/values-pl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,171,279,402,504,612,698,807,926,1004,1081,1163,1272,1381,1480,1589,1700,1808,1931,2027,2109", - "endColumns": "115,107,122,101,107,85,108,118,77,76,81,108,108,98,108,110,107,122,95,81,100", - "endOffsets": "166,274,397,499,607,693,802,921,999,1076,1158,1267,1376,1475,1584,1695,1803,1926,2022,2104,2205" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-port.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-port.json deleted file mode 100644 index 2188eb6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-port.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-port/values-port.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "55", - "endOffsets": "106" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json deleted file mode 100644 index b4ee4fd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rBR/values-pt-rBR.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json deleted file mode 100644 index f0f9753..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt-rPT/values-pt-rPT.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,933,1017,1098,1185,1292,1404,1506,1614,1721,1828,1950,2049,2134", - "endColumns": "119,107,122,105,106,88,100,123,83,80,86,106,111,101,107,106,106,121,98,84,100", - "endOffsets": "170,278,401,507,614,703,804,928,1012,1093,1180,1287,1399,1501,1609,1716,1823,1945,2044,2129,2230" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt.json deleted file mode 100644 index 3d6037d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-pt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-pt/values-pt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", - "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", - "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ro.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ro.json deleted file mode 100644 index e15dc2f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ro.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ro/values-ro.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,176,284,407,511,624,712,824,945,1030,1111,1194,1306,1419,1519,1633,1738,1844,1965,2068,2151", - "endColumns": "120,107,122,103,112,87,111,120,84,80,82,111,112,99,113,104,105,120,102,82,100", - "endOffsets": "171,279,402,506,619,707,819,940,1025,1106,1189,1301,1414,1514,1628,1733,1839,1960,2063,2146,2247" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ru.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ru.json deleted file mode 100644 index f0f0f86..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ru.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ru/values-ru.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,170,278,401,503,615,701,806,926,1005,1083,1163,1269,1377,1475,1584,1690,1798,1934,2034,2115", - "endColumns": "114,107,122,101,111,85,104,119,78,77,79,105,107,97,108,105,107,135,99,80,100", - "endOffsets": "165,273,396,498,610,696,801,921,1000,1078,1158,1264,1372,1470,1579,1685,1793,1929,2029,2110,2211" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-si.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-si.json deleted file mode 100644 index 617e3e7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-si.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si/values-si.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-si/values-si.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,503,610,698,803,919,1008,1095,1179,1288,1393,1491,1601,1700,1806,1927,2026,2108", - "endColumns": "109,107,122,106,106,87,104,115,88,86,83,108,104,97,109,98,105,120,98,81,100", - "endOffsets": "160,268,391,498,605,693,798,914,1003,1090,1174,1283,1388,1486,1596,1695,1801,1922,2021,2103,2204" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sk.json deleted file mode 100644 index fbcc4cc..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sk/values-sk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,493,604,690,798,916,997,1078,1162,1267,1376,1475,1581,1692,1801,1925,2023,2111", - "endColumns": "106,107,122,99,110,85,107,117,80,80,83,104,108,98,105,110,108,123,97,87,100", - "endOffsets": "157,265,388,488,599,685,793,911,992,1073,1157,1262,1371,1470,1576,1687,1796,1920,2018,2106,2207" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sl.json deleted file mode 100644 index 7234805..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sl/values-sl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,162,270,393,500,608,695,798,917,1002,1086,1170,1278,1387,1487,1600,1707,1811,1928,2025,2108", - "endColumns": "106,107,122,106,107,86,102,118,84,83,83,107,108,99,112,106,103,116,96,82,100", - "endOffsets": "157,265,388,495,603,690,793,912,997,1081,1165,1273,1382,1482,1595,1702,1806,1923,2020,2103,2204" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sq.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sq.json deleted file mode 100644 index 65db31e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sq.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq/values-sq.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sq/values-sq.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,500,612,699,809,932,1013,1092,1175,1281,1386,1484,1590,1693,1809,1940,2039,2120", - "endColumns": "113,107,122,99,111,86,109,122,80,78,82,105,104,97,105,102,115,130,98,80,100", - "endOffsets": "164,272,395,495,607,694,804,927,1008,1087,1170,1276,1381,1479,1585,1688,1804,1935,2034,2115,2216" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sr.json deleted file mode 100644 index db13f25..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sr/values-sr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,164,272,395,498,604,690,794,912,993,1073,1161,1266,1374,1475,1579,1687,1788,1916,2013,2097", - "endColumns": "108,107,122,102,105,85,103,117,80,79,87,104,107,100,103,107,100,127,96,83,100", - "endOffsets": "159,267,390,493,599,685,789,907,988,1068,1156,1261,1369,1470,1574,1682,1783,1911,2008,2092,2193" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sv.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sv.json deleted file mode 100644 index 5cb9578..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sv.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sv/values-sv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,161,269,392,495,606,691,793,906,982,1058,1138,1244,1344,1440,1545,1647,1749,1866,1968,2047", - "endColumns": "105,107,122,102,110,84,101,112,75,75,79,105,99,95,104,101,101,116,101,78,100", - "endOffsets": "156,264,387,490,601,686,788,901,977,1053,1133,1239,1339,1435,1540,1642,1744,1861,1963,2042,2143" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sw.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sw.json deleted file mode 100644 index 5a4454a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sw.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw/values-sw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,158,266,389,487,595,685,790,907,989,1072,1154,1255,1364,1463,1570,1679,1784,1903,2000,2082", - "endColumns": "102,107,122,97,107,89,104,116,81,82,81,100,108,98,106,108,104,118,96,81,100", - "endOffsets": "153,261,384,482,590,680,785,902,984,1067,1149,1250,1359,1458,1565,1674,1779,1898,1995,2077,2178" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json deleted file mode 100644 index 3e75738..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-sw600dp-v13/values-sw600dp-v13.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,124,193,263,337,413,472,543", - "endColumns": "68,68,69,73,75,58,70,67", - "endOffsets": "119,188,258,332,408,467,538,606" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ta.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ta.json deleted file mode 100644 index f2c2d41..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ta/values-ta.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,505,620,709,816,942,1023,1103,1185,1287,1391,1488,1598,1700,1807,1926,2026,2106", - "endColumns": "113,107,122,104,114,88,106,125,80,79,81,101,103,96,109,101,106,118,99,79,100", - "endOffsets": "164,272,395,500,615,704,811,937,1018,1098,1180,1282,1386,1483,1593,1695,1802,1921,2021,2101,2202" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-te.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-te.json deleted file mode 100644 index 6128bd3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-te.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-te/values-te.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,509,620,710,815,940,1022,1104,1189,1302,1410,1510,1621,1723,1840,1967,2068,2151", - "endColumns": "113,107,122,108,110,89,104,124,81,81,84,112,107,99,110,101,116,126,100,82,100", - "endOffsets": "164,272,395,504,615,705,810,935,1017,1099,1184,1297,1405,1505,1616,1718,1835,1962,2063,2146,2247" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-th.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-th.json deleted file mode 100644 index 1edfae4..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-th.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-th/values-th.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,489,597,686,788,898,975,1053,1134,1242,1346,1444,1552,1657,1758,1874,1969,2050", - "endColumns": "104,107,122,97,107,88,101,109,76,77,80,107,103,97,107,104,100,115,94,80,100", - "endOffsets": "155,263,386,484,592,681,783,893,970,1048,1129,1237,1341,1439,1547,1652,1753,1869,1964,2045,2146" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-tl.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-tl.json deleted file mode 100644 index bf73217..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-tl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tl/values-tl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,174,282,405,513,630,718,824,945,1024,1102,1186,1295,1406,1507,1617,1734,1842,1965,2067,2151", - "endColumns": "118,107,122,107,116,87,105,120,78,77,83,108,110,100,109,116,107,122,101,83,100", - "endOffsets": "169,277,400,508,625,713,819,940,1019,1097,1181,1290,1401,1502,1612,1729,1837,1960,2062,2146,2247" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-tr.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-tr.json deleted file mode 100644 index abca3cd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-tr.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-tr/values-tr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,490,602,687,793,913,992,1068,1147,1254,1359,1455,1562,1664,1772,1891,1989,2068", - "endColumns": "104,107,122,98,111,84,105,119,78,75,78,106,104,95,106,101,107,118,97,78,100", - "endOffsets": "155,263,386,485,597,682,788,908,987,1063,1142,1249,1354,1450,1557,1659,1767,1886,1984,2063,2164" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-uk.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-uk.json deleted file mode 100644 index a60f30d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-uk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uk/values-uk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,498,604,690,798,916,995,1075,1156,1262,1369,1467,1575,1681,1790,1914,2014,2095", - "endColumns": "109,107,122,101,105,85,107,117,78,79,80,105,106,97,107,105,108,123,99,80,100", - "endOffsets": "160,268,391,493,599,685,793,911,990,1070,1151,1257,1364,1462,1570,1676,1785,1909,2009,2090,2191" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ur.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ur.json deleted file mode 100644 index 20cd0d8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-ur.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-ur/values-ur.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,165,273,396,502,611,697,801,921,997,1073,1158,1266,1375,1477,1588,1688,1796,1925,2023,2103", - "endColumns": "109,107,122,105,108,85,103,119,75,75,84,107,108,101,110,99,107,128,97,79,102", - "endOffsets": "160,268,391,497,606,692,796,916,992,1068,1153,1261,1370,1472,1583,1683,1791,1920,2018,2098,2201" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-uz.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-uz.json deleted file mode 100644 index a114b3b..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-uz.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-uz/values-uz.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,160,268,391,495,609,695,806,922,1002,1081,1165,1274,1381,1482,1590,1695,1802,1926,2025,2109", - "endColumns": "104,107,122,103,113,85,110,115,79,78,83,108,106,100,107,104,106,123,98,83,100", - "endOffsets": "155,263,386,490,604,690,801,917,997,1076,1160,1269,1376,1477,1585,1690,1797,1921,2020,2104,2205" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v11.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v11.json deleted file mode 100644 index 47473d7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v11.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v11/values-v11.xml", - "from": { - "startLines": "2,8,14,20,26,32,38,39,43,47,48,52,56,57,61,66,71,76,78,80,81,82,136,191", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,474,899,1327,1753,2180,2605,2694,2940,3189,3290,3542,3797,3900,4153,4561,4981,5403,5510,5639,5710,5793,9818,13986", - "endLines": "7,13,19,25,31,37,38,42,46,47,51,55,56,60,65,70,75,77,79,80,81,135,190,191", - "endColumns": "12,12,12,12,12,12,88,12,12,100,12,12,102,12,12,12,12,12,12,70,82,12,12,90", - "endOffsets": "469,894,1322,1748,2175,2600,2689,2935,3184,3285,3537,3792,3895,4148,4556,4976,5398,5505,5634,5705,5788,9813,13981,14072" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v12.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v12.json deleted file mode 100644 index 7093606..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v12.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v12/values-v12.xml", - "from": { - "startLines": "2,5,8,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,279,479,598", - "endLines": "4,7,8,9", - "endColumns": "12,12,118,94", - "endOffsets": "274,474,593,688" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v13.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v13.json deleted file mode 100644 index 6424571..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v13/values-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "58", - "endOffsets": "109" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v14.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v14.json deleted file mode 100644 index 1077854..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v14.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v14/values-v14.xml", - "from": { - "startLines": "2,7,8,9,15", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,331,402,485,895", - "endLines": "6,7,8,14,20", - "endColumns": "12,70,82,12,12", - "endOffsets": "326,397,480,890,1312" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v16.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v16.json deleted file mode 100644 index c1f43ab..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v16.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "5", - "endColumns": "12", - "endOffsets": "223" - }, - "to": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "121", - "endLines": "6", - "endColumns": "12", - "endOffsets": "289" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v16/values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "65", - "endOffsets": "116" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v17.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v17.json deleted file mode 100644 index c9d3077..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v17.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v17/values-v17.xml", - "from": { - "startLines": "2,5,9,12,15,18,22,26,29,32,35,39,42,46", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,228,456,614,764,936,1164,1406,1577,1751,1920,2193,2393,2597", - "endLines": "4,8,11,14,17,21,25,28,31,34,38,41,45,49", - "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12", - "endOffsets": "223,451,609,759,931,1159,1401,1572,1746,1915,2188,2388,2592,2921" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v18.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v18.json deleted file mode 100644 index 6195072..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v18.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v18/values-v18.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "48", - "endOffsets": "99" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v21.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v21.json deleted file mode 100644 index ef9d38e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v21.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247,259,260,261,264,267,268,271,272", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8800,11880,12078,12278,12401,12524,12637,12820,12951,13152,13241,13352,13585,13686,13781,13904,14033,14150,14327,14426,14561,14704,14839,14958,15159,15278,15371,15482,15538,15645,15840,15951,16084,16179,16270,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966,19085,19214,19385,19551,19680,19851,19982", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258,259,260,263,266,267,270,271,274", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8795,11875,12073,12273,12396,12519,12632,12815,12946,13147,13236,13347,13580,13681,13776,13899,14028,14145,14322,14421,14556,14699,14834,14953,15154,15273,15366,15477,15533,15640,15835,15946,16079,16174,16265,16356,16473,16612,16683,16766,17446,17503,17561,18255,18961,19080,19209,19380,19546,19675,19846,19977,20147" - }, - "to": { - "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251,263,264,265,268,271,272,275,276", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9099,12179,12377,12577,12700,12823,12936,13119,13250,13451,13540,13651,13884,13985,14080,14203,14332,14449,14626,14725,14860,15003,15138,15257,15458,15577,15670,15781,15837,15944,16139,16250,16383,16478,16569,16660,16777,16916,16987,17070,17750,17807,17865,18559,19265,19384,19513,19684,19850,19979,20150,20281", - "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262,263,264,267,270,271,274,275,278", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12", - "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9094,12174,12372,12572,12695,12818,12931,13114,13245,13446,13535,13646,13879,13980,14075,14198,14327,14444,14621,14720,14855,14998,15133,15252,15453,15572,15665,15776,15832,15939,16134,16245,16378,16473,16564,16655,16772,16911,16982,17065,17745,17802,17860,18554,19260,19379,19508,19679,19845,19974,20145,20276,20446" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,5,8,11", - "startColumns": "4,4,4,4", - "startOffsets": "55,223,386,554", - "endLines": "4,7,10,13", - "endColumns": "12,12,12,12", - "endOffsets": "218,381,549,716" - }, - "to": { - "startLines": "281,284,288,292", - "startColumns": "4,4,4,4", - "startOffsets": "20693,20861,21150,21446", - "endLines": "283,286,290,294", - "endColumns": "12,12,12,12", - "endOffsets": "20856,21019,21313,21608" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values-v21/values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,13", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,354,470,596,722,850,1022", - "endLines": "2,3,4,5,6,7,8,9,12,17", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" - }, - "to": { - "startLines": "2,3,4,5,279,280,287,291,295,298", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,159,223,290,20451,20567,21024,21318,21613,21785", - "endLines": "2,3,4,5,279,280,287,291,297,302", - "endColumns": "103,63,66,63,115,125,125,127,12,12", - "endOffsets": "154,218,285,349,20562,20688,21145,21441,21780,22118" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v22.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v22.json deleted file mode 100644 index fc620d0..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v22.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v22/values-v22.xml", - "from": { - "startLines": "2,3,4,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,553", - "endLines": "2,3,8,13", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,548,896" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v23.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v23.json deleted file mode 100644 index 74f91a5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v23.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v23/values-v23.xml", - "from": { - "startLines": "2,3,4,5,6,19,32,33,34,35,36", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", - "endLines": "2,3,4,5,18,31,32,33,34,35,36", - "endColumns": "134,134,74,86,12,12,126,104,114,106,112", - "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v24.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v24.json deleted file mode 100644 index de2acf1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v24.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5", - "startColumns": "4,4,4,4", - "startOffsets": "55,121,182,248", - "endColumns": "65,60,65,66", - "endOffsets": "116,177,243,310" - }, - "to": { - "startLines": "8,9,10,11", - "startColumns": "4,4,4,4", - "startOffsets": "619,685,746,812", - "endColumns": "65,60,65,66", - "endOffsets": "680,741,807,874" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v24/values-v24.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,212,347,416,480,549", - "endColumns": "156,134,68,63,68,69", - "endOffsets": "207,342,411,475,544,614" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v25.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v25.json deleted file mode 100644 index ab50f9e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v25.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v25/values-v25.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v25/values-v25.xml", - "from": { - "startLines": "2,3,4,6", - "startColumns": "4,4,4,4", - "startOffsets": "55,126,209,308", - "endLines": "2,3,5,7", - "endColumns": "70,82,12,12", - "endOffsets": "121,204,303,414" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v26.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v26.json deleted file mode 100644 index 68d02f2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-v26.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-v26/values-v26.xml", - "from": { - "startLines": "2,3,4,8,12,16", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,130,217,431,657,896", - "endLines": "2,3,7,11,15,16", - "endColumns": "74,86,12,12,12,92", - "endOffsets": "125,212,426,652,891,984" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-vi.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-vi.json deleted file mode 100644 index 48bce1d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-vi.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-vi/values-vi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,169,277,400,508,617,701,804,923,1000,1077,1161,1265,1374,1475,1580,1694,1799,1919,2018,2102", - "endColumns": "113,107,122,107,108,83,102,118,76,76,83,103,108,100,104,113,104,119,98,83,100", - "endOffsets": "164,272,395,503,612,696,799,918,995,1072,1156,1260,1369,1470,1575,1689,1794,1914,2013,2097,2198" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json deleted file mode 100644 index ce70ae3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-xlarge-v4/values-xlarge-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,126,197,267,337,405", - "endColumns": "70,70,69,69,67,67", - "endOffsets": "121,192,262,332,400,468" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json deleted file mode 100644 index 79534a1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rCN/values-zh-rCN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,151,258,381,476,576,658,755,861,937,1013,1091,1187,1283,1378,1475,1570,1668,1780,1874,1952", - "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", - "endOffsets": "146,253,376,471,571,653,750,856,932,1008,1086,1182,1278,1373,1470,1565,1663,1775,1869,1947,2048" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json deleted file mode 100644 index 94b1f7d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rHK/values-zh-rHK.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1667,1780,1874,1952", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,97,112,93,77,101", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1662,1775,1869,1947,2049" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json deleted file mode 100644 index 38b2deb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zh-rTW/values-zh-rTW.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1669,1782,1876,1954", - "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,99,112,93,77,100", - "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1664,1777,1871,1949,2050" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zu.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zu.json deleted file mode 100644 index a96df1e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values-zu.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values-zu/values-zu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,163,271,394,501,615,703,806,933,1013,1093,1179,1283,1389,1487,1594,1700,1806,1926,2022,2103", - "endColumns": "107,107,122,106,113,87,102,126,79,79,85,103,105,97,106,105,105,119,95,80,100", - "endOffsets": "158,266,389,496,610,698,801,928,1008,1088,1174,1278,1384,1482,1589,1695,1801,1921,2017,2098,2199" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values.json deleted file mode 100644 index 41ff81c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/multi-v2/values.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "logs": [ - { - "outputFile": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml", - "map": [ - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/res/values/values.xml", - "from": { - "startLines": "2,3,11,12,13,14,15,19,20,21,22,25,26,29,32,33,34,35,36,39,42,43,44,45,50,53,56,57,58,63,64,65,68,71,72,75,78,81,84,85,88,91,92,97,98,103,106,109,110,111,112,113,114,115,116,117,118", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,614,741,802,862,932,1065,1133,1262,1388,1450,1515,1583,1650,1773,1898,1965,2030,2095,2276,2397,2518,2584,2651,2861,2930,2996,3121,3247,3314,3440,3567,3692,3819,3884,4010,4133,4198,4406,4473,4653,4773,4893,4958,5020,5082,5144,5203,5263,5324,5385,5444", - "endLines": "2,10,11,12,13,14,18,19,20,21,24,25,28,31,32,33,34,35,38,41,42,43,44,49,52,55,56,57,62,63,64,67,70,71,74,77,80,83,84,87,90,91,96,97,102,105,108,109,110,111,112,113,114,115,116,117,125", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,736,797,857,927,1060,1128,1257,1383,1445,1510,1578,1645,1768,1893,1960,2025,2090,2271,2392,2513,2579,2646,2856,2925,2991,3116,3242,3309,3435,3562,3687,3814,3879,4005,4128,4193,4401,4468,4648,4768,4888,4953,5015,5077,5139,5198,5258,5319,5380,5439,5779" - }, - "to": { - "startLines": "2,3,11,12,13,14,16,22,23,24,25,28,29,32,35,36,37,38,39,42,45,46,47,48,53,56,59,60,61,66,67,68,71,74,75,78,81,84,87,88,91,94,95,100,101,106,109,112,113,114,115,116,117,118,119,120,121", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,116,407,455,507,568,669,890,951,1011,1081,1214,1282,1411,1537,1599,1664,1732,1799,1922,2047,2114,2179,2244,2425,2546,2667,2733,2800,3010,3079,3145,3270,3396,3463,3589,3716,3841,3968,4033,4159,4282,4347,4555,4622,4802,4922,5042,5107,5169,5231,5293,5352,5412,5473,5534,5593", - "endLines": "2,10,11,12,13,14,19,22,23,24,27,28,31,34,35,36,37,38,41,44,45,46,47,52,55,58,59,60,65,66,67,70,73,74,77,80,83,86,87,90,93,94,99,100,105,108,111,112,113,114,115,116,117,118,119,120,128", - "endColumns": "60,11,47,51,60,45,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11", - "endOffsets": "111,402,450,502,563,609,791,946,1006,1076,1209,1277,1406,1532,1594,1659,1727,1794,1917,2042,2109,2174,2239,2420,2541,2662,2728,2795,3005,3074,3140,3265,3391,3458,3584,3711,3836,3963,4028,4154,4277,4342,4550,4617,4797,4917,5037,5102,5164,5226,5288,5347,5407,5468,5529,5588,5928" - } - }, - { - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/values/colors.xml", - "from": { - "startLines": "4,2,3", - "startColumns": "4,4,4", - "startOffsets": "153,55,102", - "endColumns": "45,46,50", - "endOffsets": "194,97,148" - }, - "to": { - "startLines": "153,154,155", - "startColumns": "4,4,4", - "startOffsets": "7703,7749,7796", - "endColumns": "45,46,50", - "endOffsets": "7744,7791,7842" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/values/values.xml", - "from": { - "startLines": "2,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,348,414,536,597,663", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "139,409,531,592,658,725" - }, - "to": { - "startLines": "179,1830,1832,1833,1838,1840", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "9266,134921,135097,135219,135481,135676", - "endColumns": "88,65,121,60,65,66", - "endOffsets": "9350,134982,135214,135275,135542,135738" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/values/values.xml", - "from": { - "startLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,53,54,58,59,60", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,124,1153,1223,1291,1363,1433,1494,1555,1616,1678,1742,1804,1865,1933,2033,2093,2159,2232,2301,2358,2410,2472,2544,2620,2655,2690,2724,2759,2794,2864,2935,3052,3253,3363,3564,3693,3765", - "endLines": "2,3,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,52,53,57,58,59,60", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "119,182,1218,1286,1358,1428,1489,1550,1611,1673,1737,1799,1860,1928,2028,2088,2154,2227,2296,2353,2405,2467,2539,2615,2650,2685,2719,2754,2789,2859,2930,3047,3248,3358,3559,3688,3760,3827" - }, - "to": { - "startLines": "177,178,466,467,468,469,470,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,503,504,510,511,515,516,517,523,557,1825,1826,1831,1834,1839,1977,1978", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "9134,9203,44615,44685,44753,44825,44895,45740,45801,45862,45924,45988,46050,46111,46179,46279,46339,46405,46478,46547,46604,46656,47171,47243,47558,47593,47770,47804,47839,48149,50560,134603,134720,134987,135280,135547,146569,146641", - "endLines": "177,178,466,467,468,469,470,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,503,504,510,511,515,516,517,523,557,1825,1829,1831,1837,1839,1977,1978", - "endColumns": "68,62,69,67,71,69,60,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,33,34,34,69,70,116,12,109,12,128,71,66", - "endOffsets": "9198,9261,44680,44748,44820,44890,44951,45796,45857,45919,45983,46045,46106,46174,46274,46334,46400,46473,46542,46599,46651,46713,47238,47314,47588,47623,47799,47834,47869,48214,50626,134715,134916,135092,135476,135671,146636,146703" - } - }, - { - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/values/values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,393,394,398,402,406,411,417,424,428,432,437,441,445,449,453,457,461,465,469,473,477,481,485,490,494,497,501,505,509,513,517,521,524,528,532,536,540,544,545,546,547,550,553,556,559,563,564,565,566,567,570,572,574,576,581,582,586,592,596,597,599,610,611,615,621,625,626,627,631,658,662,663,667,695,861,883,1049,1071,1098,1105,1110,1124,1146,1151,1156,1166,1175,1184,1188,1195,1203,1210,1211,1220,1223,1226,1230,1234,1238,1241,1242,1246,1250,1260,1265,1272,1278,1279,1282,1286,1291,1293,1295,1298,1301,1303,1307,1310,1317,1320,1323,1327,1329,1333,1335,1341,1343,1347,1355,1363,1375,1381,1390,1393,1404,1407,1412,1413,1418,1460,1503,1504,1514,1523,1524,1526,1530,1533,1536,1539,1542,1546,1549,1552,1555,1559,1562,1566,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1595,1596,1597,1598,1599,1603,1604,1605,1606,1608,1610,1611,1612,1613,1614,1615,1616,1617,1619,1620,1622,1623,1625,1627,1628,1630,1631,1632,1633,1634,1635,1637,1638,1639,1640,1641,1642,1644,1646,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1662,1663,1664,1665,1666,1667,1669,1673,1677,1678,1679,1680,1681,1682,1683,1684,1686,1688,1690,1692,1694,1695,1696,1697,1699,1701,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1717,1718,1719,1720,1722,1724,1725,1727,1728,1730,1732,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1747,1748,1749,1750,1752,1753,1754,1755,1756,1758,1760,1762,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1333,1410,1488,1594,1700,1779,1859,1916,1974,2048,2123,2188,2254,2309,2381,2454,2521,2589,2648,2707,2766,2825,2884,2938,2992,3045,3099,3153,3207,3261,3335,3414,3487,3561,3632,3704,3776,3849,3906,3964,4037,4111,4185,4260,4332,4405,4475,4546,4606,26813,26882,26951,27021,27095,27171,27235,27312,27388,27465,27529,27594,27663,27740,27815,27884,27952,28029,28095,28192,28257,28326,28425,28496,28555,28613,28670,28729,28800,28872,28944,29016,29088,29155,29223,29291,29350,29413,29477,29567,29658,29718,29784,29851,29917,29987,30051,30104,30217,30275,30338,30403,30468,30543,30616,30688,30737,30798,30859,30920,30982,31046,31110,31174,31239,31302,31362,31423,31489,31548,31608,31670,31741,31801,31869,31955,32042,32132,32219,32307,32389,32472,32562,32653,32705,32763,32808,32874,32938,32995,33052,33106,33163,33211,33260,33311,33345,33392,33441,33487,33519,33583,33645,33705,33762,33836,33914,34007,34077,34155,34209,34279,34364,34412,34458,34529,34607,34685,34757,34831,34905,34979,35059,35132,35201,35273,35350,35402,35475,35549,35618,35693,35767,35841,35930,36000,36053,36131,36221,36309,36405,36495,36996,37085,37332,37613,37857,38142,38535,39012,39234,39456,39724,39951,40181,40411,40641,40871,41098,41337,41563,41808,42038,42286,42505,42788,42996,43127,43354,43600,43825,44072,44293,44538,44658,44934,45235,45559,45850,46164,46301,46432,46537,46779,46946,47150,47358,47629,47741,47853,47958,48075,48289,48435,48575,48661,49009,49097,49327,49745,49978,50060,50158,50775,50875,51111,51535,51774,51868,51957,52194,54246,54488,54590,54827,57011,67548,68799,79433,80696,82188,82724,83054,84115,85380,85636,85872,86419,86913,87518,87716,88296,88860,89235,89353,89891,90048,90244,90517,90773,90943,91084,91148,91430,91716,92392,92656,92994,93347,93441,93627,93933,94195,94320,94447,94686,94897,95016,95209,95386,95841,96022,96144,96403,96516,96703,96805,97249,97373,97648,98156,98652,99529,99823,100393,100542,101274,101446,101782,101874,102152,105338,108667,108729,109359,109973,110059,110172,110401,110561,110713,110884,111051,111294,111464,111637,111808,112082,112281,112486,112816,112900,112996,113092,113190,113290,113392,113494,113596,113698,113800,113900,113996,114108,114237,114360,114491,114622,114720,114834,114928,115048,115252,115321,115437,115565,115629,115833,115902,116034,116104,116244,116378,116474,116586,116686,116802,116898,117010,117110,117250,117386,117550,117680,117838,117988,118129,118273,118408,118520,118670,118798,118926,119062,119194,119324,119454,119566,119706,119852,119996,120134,120200,120290,120366,120470,120560,120662,120770,120878,120978,121058,121150,121248,121358,121436,121542,121634,121738,121848,121970,122133,122290,122370,122470,122560,122670,122764,122870,122962,123062,123174,123288,123404,123520,123614,123728,123840,123942,124062,124184,124266,124370,124490,124616,124714,124808,124896,125008,125124,125246,125358,125533,125649,125735,125827,125939,126063,126130,126256,126324,126452,126596,126724,126793,126888,127003,127116,127215,127324,127435,127546,127647,127752,127852,127982,128073,128196,128290,128402,128488,128592,128688,128776,128894,128998,129102,129228,129316,129424,129524,129614,129724,129808,129910,129994,130048,130112,130218,130328,130412", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,392,393,397,401,405,410,416,423,427,431,436,440,444,448,452,456,460,464,468,472,476,480,484,489,493,496,500,504,508,512,516,520,523,527,531,535,539,543,544,545,546,549,552,555,558,562,563,564,565,566,569,571,573,575,580,581,585,591,595,596,598,609,610,614,620,624,625,626,630,657,661,662,666,694,860,882,1048,1070,1097,1104,1109,1123,1145,1150,1155,1165,1174,1183,1187,1194,1202,1209,1210,1219,1222,1225,1229,1233,1237,1240,1241,1245,1249,1259,1264,1271,1277,1278,1281,1285,1290,1292,1294,1297,1300,1302,1306,1309,1316,1319,1322,1326,1328,1332,1334,1340,1342,1346,1354,1362,1374,1380,1389,1392,1403,1406,1411,1412,1417,1459,1502,1503,1513,1522,1523,1525,1529,1532,1535,1538,1541,1545,1548,1551,1554,1558,1561,1565,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1594,1595,1596,1597,1598,1602,1603,1604,1605,1607,1609,1610,1611,1612,1613,1614,1615,1616,1618,1619,1621,1622,1624,1626,1627,1629,1630,1631,1632,1633,1634,1636,1637,1638,1639,1640,1641,1643,1645,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1661,1662,1663,1664,1665,1666,1668,1672,1676,1677,1678,1679,1680,1681,1682,1683,1685,1687,1689,1691,1693,1694,1695,1696,1698,1700,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1716,1717,1718,1719,1721,1723,1724,1726,1727,1729,1731,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1746,1747,1748,1749,1751,1752,1753,1754,1755,1757,1759,1761,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1405,1483,1589,1695,1774,1854,1911,1969,2043,2118,2183,2249,2304,2376,2449,2516,2584,2643,2702,2761,2820,2879,2933,2987,3040,3094,3148,3202,3256,3330,3409,3482,3556,3627,3699,3771,3844,3901,3959,4032,4106,4180,4255,4327,4400,4470,4541,4601,4662,26877,26946,27016,27090,27166,27230,27307,27383,27460,27524,27589,27658,27735,27810,27879,27947,28024,28090,28187,28252,28321,28420,28491,28550,28608,28665,28724,28795,28867,28939,29011,29083,29150,29218,29286,29345,29408,29472,29562,29653,29713,29779,29846,29912,29982,30046,30099,30212,30270,30333,30398,30463,30538,30611,30683,30732,30793,30854,30915,30977,31041,31105,31169,31234,31297,31357,31418,31484,31543,31603,31665,31736,31796,31864,31950,32037,32127,32214,32302,32384,32467,32557,32648,32700,32758,32803,32869,32933,32990,33047,33101,33158,33206,33255,33306,33340,33387,33436,33482,33514,33578,33640,33700,33757,33831,33909,34002,34072,34150,34204,34274,34359,34407,34453,34524,34602,34680,34752,34826,34900,34974,35054,35127,35196,35268,35345,35397,35470,35544,35613,35688,35762,35836,35925,35995,36048,36126,36216,36304,36400,36490,36991,37080,37327,37608,37852,38137,38530,39007,39229,39451,39719,39946,40176,40406,40636,40866,41093,41332,41558,41803,42033,42281,42500,42783,42991,43122,43349,43595,43820,44067,44288,44533,44653,44929,45230,45554,45845,46159,46296,46427,46532,46774,46941,47145,47353,47624,47736,47848,47953,48070,48284,48430,48570,48656,49004,49092,49322,49740,49973,50055,50153,50770,50870,51106,51530,51769,51863,51952,52189,54241,54483,54585,54822,57006,67543,68794,79428,80691,82183,82719,83049,84110,85375,85631,85867,86414,86908,87513,87711,88291,88855,89230,89348,89886,90043,90239,90512,90768,90938,91079,91143,91425,91711,92387,92651,92989,93342,93436,93622,93928,94190,94315,94442,94681,94892,95011,95204,95381,95836,96017,96139,96398,96511,96698,96800,97244,97368,97643,98151,98647,99524,99818,100388,100537,101269,101441,101777,101869,102147,105333,108662,108724,109354,109968,110054,110167,110396,110556,110708,110879,111046,111289,111459,111632,111803,112077,112276,112481,112811,112895,112991,113087,113185,113285,113387,113489,113591,113693,113795,113895,113991,114103,114232,114355,114486,114617,114715,114829,114923,115043,115247,115316,115432,115560,115624,115828,115897,116029,116099,116239,116373,116469,116581,116681,116797,116893,117005,117105,117245,117381,117545,117675,117833,117983,118124,118268,118403,118515,118665,118793,118921,119057,119189,119319,119449,119561,119701,119847,119991,120129,120195,120285,120361,120465,120555,120657,120765,120873,120973,121053,121145,121243,121353,121431,121537,121629,121733,121843,121965,122128,122285,122365,122465,122555,122665,122759,122865,122957,123057,123169,123283,123399,123515,123609,123723,123835,123937,124057,124179,124261,124365,124485,124611,124709,124803,124891,125003,125119,125241,125353,125528,125644,125730,125822,125934,126058,126125,126251,126319,126447,126591,126719,126788,126883,126998,127111,127210,127319,127430,127541,127642,127747,127847,127977,128068,128191,128285,128397,128483,128587,128683,128771,128889,128993,129097,129223,129311,129419,129519,129609,129719,129803,129905,129989,130043,130107,130213,130323,130407,130527" - }, - "to": { - "startLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,471,472,473,474,475,476,477,478,479,495,496,497,498,499,500,501,502,505,506,507,508,509,512,513,514,518,519,520,521,522,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,556,558,559,560,561,562,569,576,577,581,585,589,594,600,607,611,615,620,624,628,632,636,640,644,648,652,656,660,664,668,673,677,680,684,688,692,696,700,704,707,711,715,719,723,727,728,729,730,733,736,739,742,746,747,748,749,750,753,755,757,759,764,765,769,775,779,780,782,793,794,798,804,808,809,810,814,841,845,846,850,878,1044,1066,1232,1254,1281,1288,1293,1307,1329,1334,1339,1349,1358,1367,1371,1378,1386,1393,1394,1403,1406,1409,1413,1417,1421,1424,1425,1429,1433,1443,1448,1455,1461,1462,1465,1469,1474,1476,1478,1481,1484,1486,1490,1493,1500,1503,1506,1510,1512,1516,1518,1524,1526,1530,1538,1546,1558,1564,1573,1576,1587,1590,1595,1596,1601,1643,1686,1687,1697,1706,1707,1709,1713,1716,1719,1722,1725,1729,1732,1735,1738,1742,1745,1749,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1778,1779,1780,1781,1782,1786,1787,1788,1789,1791,1793,1794,1795,1796,1797,1798,1799,1800,1802,1803,1805,1806,1808,1810,1811,1813,1814,1815,1816,1817,1818,1820,1821,1822,1823,1824,1841,1843,1845,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1861,1862,1863,1864,1865,1866,1868,1872,1876,1877,1878,1879,1880,1881,1882,1883,1885,1887,1889,1891,1893,1894,1895,1896,1898,1900,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1916,1917,1918,1919,1921,1923,1924,1926,1927,1929,1931,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1946,1947,1948,1949,1951,1952,1953,1954,1955,1957,1959,1961,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "614,796,841,5933,5974,6029,6087,6149,6217,6295,6376,6437,6512,6588,6665,6743,6828,6910,6986,7062,7139,7217,7323,7429,7508,7588,7645,7847,7921,7996,8061,8127,8182,8254,8327,8394,8462,8521,8580,8639,8698,8757,8811,8865,8918,8972,9026,9080,9355,9429,9508,9581,9655,9726,9798,9870,9943,10000,10058,10131,10205,10279,10354,10426,10499,10569,10640,10700,39559,39628,39697,39767,39841,39917,39981,40058,40134,40211,40275,40340,40409,40486,40561,40630,40698,40775,40841,40938,41003,41072,41171,41242,41301,41359,41416,41475,41546,41618,41690,41762,41834,41901,41969,42037,42096,42159,42223,42313,42404,42464,42530,42597,42663,42733,42797,42850,42963,43021,43084,43149,43214,43289,43362,43434,43483,43544,43605,43666,43728,43792,43856,43920,43985,44048,44108,44169,44235,44294,44354,44416,44487,44547,44956,45042,45129,45219,45306,45394,45476,45559,45649,46718,46770,46828,46873,46939,47003,47060,47117,47319,47376,47424,47473,47524,47628,47675,47724,47874,47906,47970,48032,48092,48219,48293,48371,48464,48534,48612,48666,48736,48821,48869,48915,48986,49064,49142,49214,49288,49362,49436,49516,49589,49658,49730,49807,49859,49932,50006,50075,50150,50224,50298,50387,50507,50631,50709,50799,50887,50983,51392,51893,51982,52229,52510,52754,53039,53432,53909,54131,54353,54621,54848,55078,55308,55538,55768,55995,56234,56460,56705,56935,57183,57402,57685,57893,58024,58251,58497,58722,58969,59190,59435,59555,59831,60132,60456,60747,61061,61198,61329,61434,61676,61843,62047,62255,62526,62638,62750,62855,62972,63186,63332,63472,63558,63906,63994,64224,64642,64875,64957,65055,65672,65772,66008,66432,66671,66765,66854,67091,69143,69385,69487,69724,71908,82445,83696,94330,95593,97085,97621,97951,99012,100277,100533,100769,101316,101810,102415,102613,103193,103757,104132,104250,104788,104945,105141,105414,105670,105840,105981,106045,106327,106613,107289,107553,107891,108244,108338,108524,108830,109092,109217,109344,109583,109794,109913,110106,110283,110738,110919,111041,111300,111413,111600,111702,112146,112270,112545,113053,113549,114426,114720,115290,115439,116171,116343,116679,116771,117049,120235,123564,123626,124256,124870,124956,125069,125298,125458,125610,125781,125948,126191,126361,126534,126705,126979,127178,127383,127713,127797,127893,127989,128087,128187,128289,128391,128493,128595,128697,128797,128893,129005,129134,129257,129388,129519,129617,129731,129825,129945,130149,130218,130334,130462,130526,130730,130799,130931,131001,131141,131275,131371,131483,131583,131699,131795,131907,132007,132147,132283,132447,132577,132735,132885,133026,133170,133305,133417,133567,133695,133823,133959,134091,134221,134351,134463,135743,135889,136033,136171,136237,136327,136403,136507,136597,136699,136807,136915,137015,137095,137187,137285,137395,137473,137579,137671,137775,137885,138007,138170,138327,138407,138507,138597,138707,138801,138907,138999,139099,139211,139325,139441,139557,139651,139765,139877,139979,140099,140221,140303,140407,140527,140653,140751,140845,140933,141045,141161,141283,141395,141570,141686,141772,141864,141976,142100,142167,142293,142361,142489,142633,142761,142830,142925,143040,143153,143252,143361,143472,143583,143684,143789,143889,144019,144110,144233,144327,144439,144525,144629,144725,144813,144931,145035,145139,145265,145353,145461,145561,145651,145761,145845,145947,146031,146085,146149,146255,146365,146449", - "endLines": "15,20,21,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,471,472,473,474,475,476,477,478,479,495,496,497,498,499,500,501,502,505,506,507,508,509,512,513,514,518,519,520,521,522,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,556,558,559,560,561,562,575,576,580,584,588,593,599,606,610,614,619,623,627,631,635,639,643,647,651,655,659,663,667,672,676,679,683,687,691,695,699,703,706,710,714,718,722,726,727,728,729,732,735,738,741,745,746,747,748,749,752,754,756,758,763,764,768,774,778,779,781,792,793,797,803,807,808,809,813,840,844,845,849,877,1043,1065,1231,1253,1280,1287,1292,1306,1328,1333,1338,1348,1357,1366,1370,1377,1385,1392,1393,1402,1405,1408,1412,1416,1420,1423,1424,1428,1432,1442,1447,1454,1460,1461,1464,1468,1473,1475,1477,1480,1483,1485,1489,1492,1499,1502,1505,1509,1511,1515,1517,1523,1525,1529,1537,1545,1557,1563,1572,1575,1586,1589,1594,1595,1600,1642,1685,1686,1696,1705,1706,1708,1712,1715,1718,1721,1724,1728,1731,1734,1737,1741,1744,1748,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1777,1778,1779,1780,1781,1785,1786,1787,1788,1790,1792,1793,1794,1795,1796,1797,1798,1799,1801,1802,1804,1805,1807,1809,1810,1812,1813,1814,1815,1816,1817,1819,1820,1821,1822,1823,1824,1842,1844,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1860,1861,1862,1863,1864,1865,1867,1871,1875,1876,1877,1878,1879,1880,1881,1882,1884,1886,1888,1890,1892,1893,1894,1895,1897,1899,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1915,1916,1917,1918,1920,1922,1923,1925,1926,1928,1930,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1945,1946,1947,1948,1950,1951,1952,1953,1954,1956,1958,1960,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976", - "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,54,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,119,12,68,115,127,63,12,68,131,69,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", - "endOffsets": "664,836,885,5969,6024,6082,6144,6212,6290,6371,6432,6507,6583,6660,6738,6823,6905,6981,7057,7134,7212,7318,7424,7503,7583,7640,7698,7916,7991,8056,8122,8177,8249,8322,8389,8457,8516,8575,8634,8693,8752,8806,8860,8913,8967,9021,9075,9129,9424,9503,9576,9650,9721,9793,9865,9938,9995,10053,10126,10200,10274,10349,10421,10494,10564,10635,10695,10756,39623,39692,39762,39836,39912,39976,40053,40129,40206,40270,40335,40404,40481,40556,40625,40693,40770,40836,40933,40998,41067,41166,41237,41296,41354,41411,41470,41541,41613,41685,41757,41829,41896,41964,42032,42091,42154,42218,42308,42399,42459,42525,42592,42658,42728,42792,42845,42958,43016,43079,43144,43209,43284,43357,43429,43478,43539,43600,43661,43723,43787,43851,43915,43980,44043,44103,44164,44230,44289,44349,44411,44482,44542,44610,45037,45124,45214,45301,45389,45471,45554,45644,45735,46765,46823,46868,46934,46998,47055,47112,47166,47371,47419,47468,47519,47553,47670,47719,47765,47901,47965,48027,48087,48144,48288,48366,48459,48529,48607,48661,48731,48816,48864,48910,48981,49059,49137,49209,49283,49357,49431,49511,49584,49653,49725,49802,49854,49927,50001,50070,50145,50219,50293,50382,50452,50555,50704,50794,50882,50978,51068,51888,51977,52224,52505,52749,53034,53427,53904,54126,54348,54616,54843,55073,55303,55533,55763,55990,56229,56455,56700,56930,57178,57397,57680,57888,58019,58246,58492,58717,58964,59185,59430,59550,59826,60127,60451,60742,61056,61193,61324,61429,61671,61838,62042,62250,62521,62633,62745,62850,62967,63181,63327,63467,63553,63901,63989,64219,64637,64870,64952,65050,65667,65767,66003,66427,66666,66760,66849,67086,69138,69380,69482,69719,71903,82440,83691,94325,95588,97080,97616,97946,99007,100272,100528,100764,101311,101805,102410,102608,103188,103752,104127,104245,104783,104940,105136,105409,105665,105835,105976,106040,106322,106608,107284,107548,107886,108239,108333,108519,108825,109087,109212,109339,109578,109789,109908,110101,110278,110733,110914,111036,111295,111408,111595,111697,112141,112265,112540,113048,113544,114421,114715,115285,115434,116166,116338,116674,116766,117044,120230,123559,123621,124251,124865,124951,125064,125293,125453,125605,125776,125943,126186,126356,126529,126700,126974,127173,127378,127708,127792,127888,127984,128082,128182,128284,128386,128488,128590,128692,128792,128888,129000,129129,129252,129383,129514,129612,129726,129820,129940,130144,130213,130329,130457,130521,130725,130794,130926,130996,131136,131270,131366,131478,131578,131694,131790,131902,132002,132142,132278,132442,132572,132730,132880,133021,133165,133300,133412,133562,133690,133818,133954,134086,134216,134346,134458,134598,135884,136028,136166,136232,136322,136398,136502,136592,136694,136802,136910,137010,137090,137182,137280,137390,137468,137574,137666,137770,137880,138002,138165,138322,138402,138502,138592,138702,138796,138902,138994,139094,139206,139320,139436,139552,139646,139760,139872,139974,140094,140216,140298,140402,140522,140648,140746,140840,140928,141040,141156,141278,141390,141565,141681,141767,141859,141971,142095,142162,142288,142356,142484,142628,142756,142825,142920,143035,143148,143247,143356,143467,143578,143679,143784,143884,144014,144105,144228,144322,144434,144520,144624,144720,144808,144926,145030,145134,145260,145348,145456,145556,145646,145756,145840,145942,146026,146080,146144,146250,146360,146444,146564" - } - }, - { - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/values/styles.xml", - "from": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "54", - "endLines": "8", - "endColumns": "12", - "endOffsets": "368" - }, - "to": { - "startLines": "563", - "startColumns": "4", - "startOffsets": "51073", - "endLines": "568", - "endColumns": "12", - "endOffsets": "51387" - } - }, - { - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/values/strings.xml", - "from": { - "startLines": "1", - "startColumns": "4", - "startOffsets": "16", - "endColumns": "49", - "endOffsets": "61" - }, - "to": { - "startLines": "555", - "startColumns": "4", - "startOffsets": "50457", - "endColumns": "49", - "endOffsets": "50502" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/single/debug.json b/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/single/debug.json deleted file mode 100644 index d390af8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/blame/res/debug/single/debug.json +++ /dev/null @@ -1,1626 +0,0 @@ -[ - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_switch_thumb_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_custom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_singlechoice_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_dialog_material_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_icon_group.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_default.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_search_url_text.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_clear_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_color_highlight_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_up_container.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_tick_mark_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_popup_menu_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_shrink_fade_out_from_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_in_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-mdpi/ic_launcher.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_media_cancel_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v23/abc_control_background_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_small_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_media_custom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_bg_low.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/switch_thumb_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_toolbar.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_radio_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_popup_enter.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_menu_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_popup_menu_header_item_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_tab_indicator_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_narrow_custom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_bg.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_tooltip.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/tooltip.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_btn_colored_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_activity_chooser_view.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_secondary_text_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_holo_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_default.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-xxhdpi/ic_launcher.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_btn_colored_borderless_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_checkbox.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_fade_in.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_edit_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_vector_test.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v11/abc_background_cache_hint_selector_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/tooltip_frame_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_action_tombstone.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_btn_colored_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_btn_checkable.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_template_icon_group.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_popup_exit.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher_background.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_out_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_title_item.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_in_top.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_custom_big.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_action_tombstone.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-mdpi/ic_launcher_round.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-hdpi/ic_launcher_round.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_hint_foreground_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_hint_foreground_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_disable_only_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_seek_thumb.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_search_api_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_button_bar_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_search_dropdown_item_icons_2line.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_select_dialog_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_multichoice_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_spinner.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_home.xml.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/layout/activity_home.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_background_transition_holo_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v11/abc_background_cache_hint_selector_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_narrow.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_menu_overflow_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_title_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_part_chronometer.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi_ic_launcher_background.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_view_list_nav_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_item_background_holo_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v16/notification_template_custom_big.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_media.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/support_simple_spinner_dropdown_item.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-hdpi/ic_launcher.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_fade_out.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_icon.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_holo_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-xhdpi/ic_launcher.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_content_include.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout-v26/abc_screen_toolbar.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_mode_bar.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_normal.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_mode_close_item_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_go_search_api_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher_background.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_background_transition_holo_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_tile_bg.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_media_action.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher_background.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/drawable-v24/ic_launcher_foreground.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_simple.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_voice_search_api_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_secondary_text_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_main.xml.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/layout/activity_main.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_out_top.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/tooltip_enter.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_disable_only_material_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_btn_colored_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-anydpi-v21_ic_launcher_background.xml.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_radio.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_textfield_search_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/tooltip_frame_dark.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_indicator_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_text_cursor_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_edittext.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_check_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_edit_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_search_view.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_borderless_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_item_background_holo_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_spinner.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_menu_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_grow_fade_in_from_bottom.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_track_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_template_custom_big.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_cab_background_top_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_colored_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_default_mtrl_shape.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_seek_thumb.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_ab_back_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_part_time.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher_background.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher_background.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/switch_thumb_material_light.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_spinner_textfield_background_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_btn_colored_borderless_text_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_item_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_icon_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat", - "source": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/res/mipmap-xhdpi/ic_launcher_round.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/tooltip_exit.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_action_bar_item_background_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_lines_media.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_expanded_menu_layout.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_thumb_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-v21/notification_action_background.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_switch_track.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_cab_background_internal_bg.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_btn_checkable.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_simple_overlay_action_mode.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_activity_chooser_view_list_item.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_dialog_title_material.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_switch_track.xml" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" - }, - { - "merged": "/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat", - "source": "/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_edittext.xml" - } -] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/compileDebugAidl/dependency.store b/MVPModel/retrofitdemo/build/intermediates/incremental/compileDebugAidl/dependency.store deleted file mode 100644 index 8b8400d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/incremental/compileDebugAidl/dependency.store and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store b/MVPModel/retrofitdemo/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store deleted file mode 100644 index 8b8400d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties deleted file mode 100644 index 189fef7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties +++ /dev/null @@ -1,385 +0,0 @@ -#Thu May 03 07:37:49 CST 2018 -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_part_time.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_normal.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_disable_only_material_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_media.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_in_bottom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_switch_thumb_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_toolbar.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_media_action.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_action.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_default.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_icon_background.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_check_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_icon_group.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_icon_group.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_ab_back_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/switch_thumb_material_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_dialog_title_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_popup_enter.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_item_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_button_bar_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/tooltip_exit.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_bg_low.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_mode_bar.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_spinner.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_dialog_material_background.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_dialog_material_background.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_activity_chooser_view_list_item.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_simple.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_search_url_text.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_menu_overflow_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_track_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_checkbox.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_mode_close_item_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v23/abc_control_background_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_title_item.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_template_icon_group.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_fade_out.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_alert_dialog_title_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_normal.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_popup_exit.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_out_bottom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_in_top.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_edittext.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_holo_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_cab_background_top_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_seek_thumb.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_btn_colored_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_search_api_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_radio.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_menu_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_activity_chooser_view.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/tooltip_frame_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_menu_item_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_btn_checkable.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_up_container.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_voice_search_api_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_action_tombstone.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_spinner_textfield_background_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_hint_foreground_material_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_edit_text_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_edit_text_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_material_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_switch_track.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_switch_track.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_cab_background_internal_bg.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_secondary_text_material_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_item_background_holo_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_color_highlight_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/support_simple_spinner_dropdown_item.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_list_menu_item_icon.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_part_chronometer.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_media_cancel_action.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_cancel_action.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_edittext.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_popup_menu_header_item_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_vector_test.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/switch_thumb_material_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_material_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_borderless_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_popup_menu_item_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_tab_indicator_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_slide_out_top.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_seek_thumb.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_tick_mark_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_go_search_api_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_default.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_text_cursor_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_template_custom_big.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_textfield_search_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_fade_in.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-v21/notification_action_background.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_singlechoice_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/tooltip_enter.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/tooltip.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_holo_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_tint_spinner.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_secondary_text_material_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_search_view.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_seekbar_thumb_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_select_dialog_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_colored_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_colored_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_edit_text_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_btn_colored_text_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_item_background_holo_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_tint_btn_checkable.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_narrow_custom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow_custom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_action_bar_view_list_nav_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_content_include.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_action_tombstone.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action_tombstone.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_template_custom_big.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_custom_big.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_hint_foreground_material_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_small_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_lines_media.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_lines_media.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_btn_colored_borderless_text_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_borderless_text_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v21/notification_action.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_btn_radio_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_media_custom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media_custom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_custom.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_custom.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ratingbar_indicator_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/tooltip_frame_light.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable/abc_ic_clear_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout-v26/abc_screen_toolbar.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_tile_bg.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/abc_expanded_menu_layout.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable/notification_bg.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/layout/select_dialog_multichoice_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout/notification_action.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/layout-v16/notification_template_custom_big.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v16_notification_template_custom_big.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color-v23/abc_btn_colored_borderless_text_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/color/abc_btn_colored_text_material.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/res/layout/notification_template_big_media_narrow.xml=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow.xml.flat -/Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml deleted file mode 100644 index 1afc755..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigeer tuis" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigeer op" - "Nog opsies" - "Klaar" - "Sien alles" - "Kies \'n program" - "AF" - "AAN" - "Soek …" - "Vee navraag uit" - "Soeknavraag" - "Soek" - "Dien navraag in" - "Stemsoektog" - "Deel met" - "Deel met %s" - "Vou in" - "Soek" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml deleted file mode 100644 index 750aecf..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "ወደ መነሻ ይዳስሱ" - "%1$s፣ %2$s" - "%1$s፣ %2$s፣ %3$s" - "ወደ ላይ ይዳስሱ" - "ተጨማሪ አማራጮች" - "ተከናውኗል" - "ሁሉንም ይመልከቱ" - "መተግበሪያ ይምረጡ" - "ጠፍቷል" - "በርቷል" - "ፈልግ…" - "መጠይቅ አጽዳ" - "የፍለጋ ጥያቄ" - "ፍለጋ" - "መጠይቅ ያስረክቡ" - "የድምፅ ፍለጋ" - "ከሚከተለው ጋር ያጋሩ" - "ከ%s ጋር ያጋሩ" - "ሰብስብ" - "ፈልግ" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml deleted file mode 100644 index 4a4a5e1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "التنقل إلى الشاشة الرئيسية" - "%1$s، %2$s" - "%1$s، %2$s، %3$s" - "التنقل إلى أعلى" - "خيارات إضافية" - "تم" - "عرض الكل" - "اختيار تطبيق" - "إيقاف" - "تشغيل" - "بحث…" - "محو طلب البحث" - "طلب البحث" - "بحث" - "إرسال طلب البحث" - "البحث الصوتي" - "مشاركة مع" - "‏مشاركة مع %s" - "تصغير" - "البحث" - "+999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml deleted file mode 100644 index 59aa1cd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - "Evə naviqasiya et" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Yuxarı get" - "Digər variantlar" - "Hazırdır" - "Hamısına baxın" - "Tətbiq seçin" - "DEAKTİV" - "AKTİV" - "Axtarış..." - "Sorğunu təmizlə" - "Axtarış sorğusu" - "Axtarış" - "Sorğunu göndərin" - "Səsli axtarış" - "Bununla paylaşın" - "Dağıt" - "Axtarış" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml deleted file mode 100644 index 05e53a7..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Odlazak na Početnu" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Kretanje nagore" - "Još opcija" - "Gotovo" - "Prikaži sve" - "Izbor aplikacije" - "ISKLJUČI" - "UKLJUČI" - "Pretražite..." - "Brisanje upita" - "Upit za pretragu" - "Pretraga" - "Slanje upita" - "Glasovna pretraga" - "Deli sa" - "Deli sa aplikacijom %s" - "Skupi" - "Pretraži" - ">999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml deleted file mode 100644 index 1bc6dcc..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Перайсці на галоўную старонку" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Перайсці ўверх" - "Дадатковыя параметры" - "Гатова" - "Прагледзець усё" - "Выбраць праграму" - "ВЫКЛ." - "УКЛ." - "Пошук..." - "Выдалiць запыт" - "Запыт на пошук" - "Пошук" - "Адправіць запыт" - "Галасавы пошук" - "Абагуліць з" - "Абагуліць з %s" - "Згарнуць" - "Пошук" - "больш за 999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml deleted file mode 100644 index 44f7a28..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Придвижване към „Начало“" - "„%1$s“ – %2$s" - "„%1$s“, „%2$s“ – %3$s" - "Придвижване нагоре" - "Още опции" - "Готово" - "Вижте всички" - "Изберете приложение" - "ИЗКЛ." - "ВКЛ." - "Търсете…" - "Изчистване на заявката" - "Заявка за търсене" - "Търсене" - "Изпращане на заявката" - "Гласово търсене" - "Споделяне със:" - "Споделяне със: %s" - "Свиване" - "Търсене" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml deleted file mode 100644 index 89f21d1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "হোম এ নেভিগেট করুন" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "উপরের দিকে নেভিগেট করুন" - "আরো বিকল্প" - "সম্পন্ন হয়েছে" - "সবগুলো দেখুন" - "একটি অ্যাপ্লিকেশান বেছে নিন" - "বন্ধ" - "চালু" - "অনুসন্ধান..." - "ক্যোয়ারী সাফ করুন" - "ক্যোয়ারী অনুসন্ধান করুন" - "অনুসন্ধান করুন" - "ক্যোয়ারী জমা দিন" - "ভয়েস অনুসন্ধান" - "এর সাথে শেয়ার করুন" - "%s এর সাথে শেয়ার করুন" - "সঙ্কুচিত করুন" - "অনুসন্ধান করুন" - "৯৯৯+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml deleted file mode 100644 index 1c7eff0..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Vrati se na početnu stranicu" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigiraj prema gore" - "Više opcija" - "Gotovo" - "Vidi sve" - "Odaberite aplikaciju" - "ISKLJUČI" - "UKLJUČI" - "Pretraži..." - "Obriši upit" - "Pretraži upit" - "Traži" - "Pošalji upit" - "Pretraživanje glasom" - "Podijeli sa" - "Podijeli sa %s" - "Skupi" - "Pretraži" - ">999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml deleted file mode 100644 index d615d94..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navega a la pàgina d\'inici" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navega cap a dalt" - "Més opcions" - "Fet" - "Mostra\'ls tots" - "Selecciona una aplicació" - "DESACTIVAT" - "ACTIVAT" - "Cerca..." - "Esborra la consulta" - "Consulta de cerca" - "Cerca" - "Envia la consulta" - "Cerca per veu" - "Comparteix amb" - "Comparteix amb %s" - "Replega" - "Cerca" - "+999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml deleted file mode 100644 index 474b37e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Přejít na plochu" - "%1$s – %2$s" - "%1$s, %2$s – %3$s" - "Přejít nahoru" - "Více možností" - "Hotovo" - "Zobrazit vše" - "Vybrat aplikaci" - "VYPNUTO" - "ZAPNUTO" - "Vyhledat…" - "Smazat dotaz" - "Vyhledávací dotaz" - "Hledat" - "Odeslat dotaz" - "Hlasové vyhledávání" - "Sdílet pomocí" - "Sdílet pomocí %s" - "Sbalit" - "Hledat" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml deleted file mode 100644 index e397602..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Naviger hjem" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Naviger op" - "Flere muligheder" - "Luk" - "Se alle" - "Vælg en app" - "FRA" - "TIL" - "Søg…" - "Ryd forespørgslen" - "Søgeforespørgsel" - "Søg" - "Indsend forespørgslen" - "Talesøgning" - "Del med" - "Del med %s" - "Skjul" - "Søg" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml deleted file mode 100644 index 389dcf3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Zur Startseite" - "%1$s: %2$s" - "%1$s, %2$s: %3$s" - "Nach oben" - "Weitere Optionen" - "Fertig" - "Alle ansehen" - "App auswählen" - "Aus" - "An" - "Suchen…" - "Suchanfrage löschen" - "Suchanfrage" - "Suchen" - "Suchanfrage senden" - "Sprachsuche" - "Freigeben für" - "Freigeben für %s" - "Minimieren" - "Suchen" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml deleted file mode 100644 index d68df63..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Πλοήγηση στην αρχική σελίδα" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Πλοήγηση προς τα επάνω" - "Περισσότερες επιλογές" - "Τέλος" - "Προβολή όλων" - "Επιλέξτε κάποια εφαρμογή" - "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" - "ΕΝΕΡΓΟΠΟΙΗΣΗ" - "Αναζήτηση…" - "Διαγραφή ερωτήματος" - "Ερώτημα αναζήτησης" - "Αναζήτηση" - "Υποβολή ερωτήματος" - "Φωνητική αναζήτηση" - "Κοινή χρήση με" - "Κοινή χρήση με %s" - "Σύμπτυξη" - "Αναζήτηση" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml deleted file mode 100644 index 35ea31a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigate home" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml deleted file mode 100644 index 35ea31a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigate home" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml deleted file mode 100644 index 35ea31a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigate home" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml deleted file mode 100644 index 0a34b1b..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navegar a la página principal" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navegar hacia arriba" - "Más opciones" - "Listo" - "Ver todo" - "Elige una aplicación." - "DESACTIVADO" - "ACTIVADO" - "Buscar…" - "Eliminar la consulta" - "Búsqueda" - "Búsqueda" - "Enviar consulta" - "Búsqueda por voz" - "Compartir con" - "Compartir con %s" - "Contraer" - "Buscar" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml deleted file mode 100644 index 063a7f6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Ir a la pantalla de inicio" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Desplazarse hacia arriba" - "Más opciones" - "Listo" - "Ver todo" - "Seleccionar una aplicación" - "DESACTIVADO" - "ACTIVADO" - "Buscar…" - "Borrar consulta" - "Consulta" - "Buscar" - "Enviar consulta" - "Búsqueda por voz" - "Compartir con" - "Compartir con %s" - "Contraer" - "Buscar" - "+999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml deleted file mode 100644 index b4cfc01..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigeerimine avaekraanile" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigeerimine üles" - "Rohkem valikuid" - "Valmis" - "Kuva kõik" - "Valige rakendus" - "VÄLJAS" - "SEES" - "Otsige …" - "Päringu tühistamine" - "Otsingupäring" - "Otsing" - "Päringu esitamine" - "Häälotsing" - "Jagamine:" - "Jagamine kasutajaga %s" - "Ahendamine" - "Otsing" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml deleted file mode 100644 index 74fc58b..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Joan orri nagusira" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Joan gora" - "Aukera gehiago" - "Eginda" - "Ikusi guztiak" - "Aukeratu aplikazio bat" - "DESAKTIBATUTA" - "AKTIBATUTA" - "Bilatu…" - "Garbitu kontsulta" - "Bilaketa-kontsulta" - "Bilatu" - "Bidali kontsulta" - "Ahots bidezko bilaketa" - "Partekatu hauekin" - "Partekatu %s erabiltzailearekin" - "Tolestu" - "Bilatu" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml deleted file mode 100644 index 8b325d3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "پیمایش به صفحه اصلی" - "‏%1$s‏، %2$s" - "‏%1$s‏، %2$s‏، %3$s" - "پیمایش به بالا" - "گزینه‌های بیشتر" - "تمام" - "مشاهده همه" - "انتخاب برنامه" - "خاموش" - "روشن" - "جستجو…" - "پاک کردن عبارت جستجو" - "عبارت جستجو" - "جستجو" - "ارسال عبارت جستجو" - "جستجوی گفتاری" - "اشتراک‌گذاری با" - "‏اشتراک‌گذاری با %s" - "کوچک کردن" - "جستجو" - "۹۹۹+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml deleted file mode 100644 index b6aa778..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Siirry etusivulle" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Siirry ylös" - "Lisää" - "Valmis" - "Näytä kaikki" - "Valitse sovellus" - "POIS KÄYTÖSTÄ" - "KÄYTÖSSÄ" - "Haku…" - "Tyhjennä kysely" - "Hakulauseke" - "Haku" - "Lähetä kysely" - "Puhehaku" - "Jakaminen:" - "Jakaminen: %s" - "Kutista" - "Haku" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml deleted file mode 100644 index 9ff50e1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Revenir à l\'accueil" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Revenir en haut de la page" - "Plus d\'options" - "Terminé" - "Voir toutes les chaînes" - "Sélectionnez une application" - "DÉSACTIVÉ" - "ACTIVÉ" - "Recherche en cours..." - "Effacer la requête" - "Requête de recherche" - "Rechercher" - "Envoyer la requête" - "Recherche vocale" - "Partager" - "Partager avec %s" - "Réduire" - "Rechercher" - ">999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml deleted file mode 100644 index 1334f39..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Revenir à l\'accueil" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Revenir en haut de la page" - "Plus d\'options" - "OK" - "Tout afficher" - "Sélectionner une application" - "DÉSACTIVÉ" - "ACTIVÉ" - "Rechercher…" - "Effacer la requête" - "Requête de recherche" - "Rechercher" - "Envoyer la requête" - "Recherche vocale" - "Partager avec" - "Partager avec %s" - "Réduire" - "Rechercher" - ">999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml deleted file mode 100644 index e64cee8..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Ir á páxina de inicio" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Desprazarse cara arriba" - "Máis opcións" - "Feito" - "Ver todas" - "Escoller unha aplicación" - "DESACTIVAR" - "ACTIVAR" - "Buscar…" - "Borrar consulta" - "Consulta de busca" - "Buscar" - "Enviar consulta" - "Busca por voz" - "Compartir con" - "Compartir con %s" - "Contraer" - "Buscar" - ">999" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml deleted file mode 100644 index 00e9de3..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "હોમ પર નેવિગેટ કરો" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ઉપર નેવિગેટ કરો" - "વધુ વિકલ્પો" - "થઈ ગયું" - "બધું જુઓ" - "એક ઍપ્લિકેશન પસંદ કરો" - "બંધ" - "ચાલુ" - "શોધો…" - "ક્વેરી સાફ કરો" - "શોધ ક્વેરી" - "શોધો" - "ક્વેરી સબમિટ કરો" - "વૉઇસ શોધ" - "આની સાથે શેર કરો" - "%s સાથે શેર કરો" - "સંકુચિત કરો" - "શોધો" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml deleted file mode 100644 index e38bb90..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - 54dip - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml deleted file mode 100644 index d5a138e..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml deleted file mode 100644 index 89057c4..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "मुख्यपृष्ठ पर नेविगेट करें" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ऊपर नेविगेट करें" - "अधिक विकल्प" - "पूर्ण" - "सभी देखें" - "कोई एप्‍लिकेशन चुनें" - "बंद" - "चालू" - "खोजा जा रहा है…" - "क्‍वेरी साफ़ करें" - "खोज क्वेरी" - "खोजें" - "क्वेरी सबमिट करें" - "ध्वनि खोज" - "इसके द्वारा साझा करें" - "%s के साथ साझा करें" - "संक्षिप्त करें" - "खोज" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml deleted file mode 100644 index ca0de20..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Idi na početnu" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Idi gore" - "Dodatne opcije" - "Gotovo" - "Prikaži sve" - "Odabir aplikacije" - "ISKLJUČENO" - "UKLJUČENO" - "Pretražite…" - "Izbriši upit" - "Upit za pretraživanje" - "Pretraživanje" - "Pošalji upit" - "Glasovno pretraživanje" - "Dijeljenje sa" - "Dijeljenje sa: %s" - "Sažmi" - "Pretraživanje" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml deleted file mode 100644 index b2ebff5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Ugrás a főoldalra" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Felfelé mozgatás" - "További lehetőségek" - "Kész" - "Összes megtekintése" - "Válasszon ki egy alkalmazást" - "KI" - "BE" - "Keresés…" - "Lekérdezés törlése" - "Keresési lekérdezés" - "Keresés" - "Lekérdezés küldése" - "Hangalapú keresés" - "Megosztás a következővel:" - "Megosztás a következővel: %s" - "Összecsukás" - "Keresés" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml deleted file mode 100644 index ffaeec0..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Ուղղվել տուն" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Ուղղվել վերև" - "Այլ ընտրանքներ" - "Պատրաստ է" - "Տեսնել բոլորը" - "Ընտրել ծրագիր" - "ԱՆՋԱՏՎԱԾ" - "ՄԻԱՑՎԱԾ" - "Որոնում..." - "Մաքրել հարցումը" - "Որոնման հարցում" - "Որոնել" - "Ուղարկել հարցումը" - "Ձայնային որոնում" - "Կիսվել" - "Կիսվել %s-ի միջոցով" - "Թաքցնել" - "Որոնել" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml deleted file mode 100644 index 1d32fa1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigasi ke beranda" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigasi naik" - "Opsi lain" - "Selesai" - "Lihat semua" - "Pilih aplikasi" - "NONAKTIF" - "AKTIF" - "Telusuri..." - "Hapus kueri" - "Kueri penelusuran" - "Telusuri" - "Kirim kueri" - "Penelusuran suara" - "Bagikan dengan" - "Bagikan dengan %s" - "Ciutkan" - "Telusuri" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml deleted file mode 100644 index 6cd2b46..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Fara heim" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Fara upp" - "Fleiri valkostir" - "Lokið" - "Sjá allt" - "Veldu forrit" - "SLÖKKT" - "KVEIKT" - "Leita…" - "Hreinsa fyrirspurn" - "Leitarfyrirspurn" - "Leita" - "Senda fyrirspurn" - "Raddleit" - "Deila með" - "Deila með %s" - "Minnka" - "Leita" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml deleted file mode 100644 index 103f40d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Vai alla home page" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Vai in alto" - "Altre opzioni" - "Fine" - "Visualizza tutte" - "Scegli un\'applicazione" - "OFF" - "ON" - "Cerca…" - "Cancella query" - "Query di ricerca" - "Cerca" - "Invia query" - "Ricerca vocale" - "Condividi con" - "Condividi con %s" - "Comprimi" - "Ricerca" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml deleted file mode 100644 index 1ca9be6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "נווט לדף הבית" - "‏%1$s‏, %2$s" - "‏%1$s‏, %2$s‏, %3$s" - "נווט למעלה" - "עוד אפשרויות" - "בוצע" - "ראה הכל" - "בחר אפליקציה" - "כבוי" - "פועל" - "חפש…" - "מחק שאילתה" - "שאילתת חיפוש" - "חפש" - "שלח שאילתה" - "חיפוש קולי" - "שתף עם" - "‏שתף עם %s" - "כווץ" - "חפש" - "‎999+‎" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml deleted file mode 100644 index dc08b9f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "ホームへ移動" - "%1$s、%2$s" - "%1$s、%2$s、%3$s" - "上へ移動" - "その他のオプション" - "完了" - "すべて表示" - "アプリの選択" - "OFF" - "ON" - "検索…" - "検索キーワードを削除" - "検索キーワード" - "検索" - "検索キーワードを送信" - "音声検索" - "共有" - "%sと共有" - "折りたたむ" - "検索" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml deleted file mode 100644 index 3f32118..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "მთავარზე ნავიგაცია" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ზემოთ ნავიგაცია" - "მეტი ვარიანტები" - "დასრულდა" - "ყველას ნახვა" - "აპის არჩევა" - "გამორთულია" - "ჩართულია" - "ძიება..." - "მოთხოვნის გასუფთავება" - "ძიების მოთხოვნა" - "ძიება" - "მოთხოვნის გადაგზავნა" - "ხმოვანი ძიება" - "გაზიარება:" - "%s-თან გაზიარება" - "აკეცვა" - "ძიება" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml deleted file mode 100644 index a00d111..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Негізгі бетте қозғалу" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Жоғары қозғалу" - "Басқа опциялар" - "Дайын" - "Барлығын көру" - "Қолданбаны таңдау" - "ӨШІРУЛІ" - "ҚОСУЛЫ" - "Іздеу…" - "Сұрақты жою" - "Сұрақты іздеу" - "Іздеу" - "Сұрақты жіберу" - "Дауыс арқылы іздеу" - "Бөлісу" - "%s бөлісу" - "Тасалау" - "Іздеу" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml deleted file mode 100644 index a2dd37a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "រកមើល​ទៅ​ដើម" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "រកមើល​ឡើងលើ" - "ជម្រើស​ច្រើន​ទៀត" - "រួចរាល់" - "មើល​ទាំងអស់" - "ជ្រើស​កម្មវិធី​​" - "បិទ" - "បើក" - "ស្វែងរក…" - "សម្អាត​សំណួរ" - "ស្វែងរក​សំណួរ" - "ស្វែងរក" - "ដាក់​​​ស្នើ​សំណួរ" - "ការស្វែងរក​សំឡេង" - "ចែករំលែក​ជាមួយ" - "ចែករំលែក​ជាមួយ %s" - "បង្រួម" - "ស្វែងរក" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml deleted file mode 100644 index 99cdffd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" - "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" - "ಮುಗಿದಿದೆ" - "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" - "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" - "ಆಫ್" - "ಆನ್" - "ಹುಡುಕಿ…" - "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" - "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" - "ಹುಡುಕಿ" - "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" - "ಧ್ವನಿ ಹುಡುಕಾಟ" - "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" - "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" - "ಸಂಕುಚಿಸು" - "ಹುಡುಕಿ" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml deleted file mode 100644 index ca98630..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "홈 탐색" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "위로 탐색" - "옵션 더보기" - "완료" - "전체 보기" - "앱 선택" - "사용 안함" - "사용" - "검색..." - "검색어 삭제" - "검색어" - "검색" - "검색어 보내기" - "음성 검색" - "공유 대상" - "%s와(과) 공유" - "접기" - "검색" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml deleted file mode 100644 index 2493032..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Үйгө багыттоо" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Жогору" - "Көбүрөөк мүмкүнчүлүктөр" - "Даяр" - "Бардыгын көрүү" - "Колдонмо тандоо" - "ӨЧҮК" - "КҮЙҮК" - "Издөө…" - "Талаптарды тазалоо" - "Издөө талаптары" - "Издөө" - "Талап жөнөтүү" - "Үн аркылуу издөө" - "Бөлүшүү" - "%s аркылуу бөлүшүү" - "Жыйнап коюу" - "Издөө" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml deleted file mode 100644 index b337bad..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - 48dp - 32dp - 12dp - 14dp - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml deleted file mode 100644 index cc236eb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - 440dp - 60% - 90% - 60% - 90% - 55% - 80% - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml deleted file mode 100644 index 5ee2feb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - 4dp - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml deleted file mode 100644 index f9f23d1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml deleted file mode 100644 index 7dad77f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - 0px - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml deleted file mode 100644 index 00e721f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +++ /dev/null @@ -1,304 +0,0 @@ - - - @color/secondary_text_default_material_light - 0dp - 0dp - 12dp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml deleted file mode 100644 index d4a514a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml deleted file mode 100644 index d807aae..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml deleted file mode 100644 index 8b28a46..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "˃999""999+"">999""999+"4dp"999+""999+""+999""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999 +""999+""999+""999+""999+""больш за 999"#ffffffff#ff9e9e9e#1f000000#8a000000 - - - - - - - - - - - 4dp6dp8dp4dp2dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+#ff424242#ffffffff#b3ffffff12724dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""%1$s, %2$s""%1$s, %2$s, %3$s""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Căutați…""Ștergeți interogarea""Interogare de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți la %s""Restrângeți""Căutați""˃999""హోమ్‌కు నావిగేట్ చేయండి""%1$s, %2$s""%1$s, %2$s, %3$s""పైకి నావిగేట్ చేయండి""మరిన్ని ఎంపికలు""పూర్తయింది""అన్నీ చూడండి""అనువర్తనాన్ని ఎంచుకోండి""ఆఫ్ చేయి""ఆన్ చేయి""శోధించు...""ప్రశ్నను క్లియర్ చేయి""ప్రశ్న శోధించండి""శోధించు""ప్రశ్నని సమర్పించు""వాయిస్ శోధన""వీరితో భాగస్వామ్యం చేయి""%sతో భాగస్వామ్యం చేయి""కుదించండి""శోధించు""999+"0px"瀏覽首頁""%1$s:%2$s""%1$s - %2$s:%3$s""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""999+""Vai alla home page""%1$s, %2$s""%1$s, %2$s, %3$s""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi con %s""Comprimi""Ricerca""999+""Navega a la pàgina d\'inici""%1$s, %2$s""%1$s, %2$s, %3$s""Navega cap a dalt""Més opcions""Fet""Mostra\'ls tots""Selecciona una aplicació""DESACTIVAT""ACTIVAT""Cerca...""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""+999""Fara heim""%1$s, %2$s""%1$s, %2$s, %3$s""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""999+""Přejít na plochu""%1$s – %2$s""%1$s, %2$s – %3$s""Přejít nahoru""Více možností""Hotovo""Zobrazit vše""Vybrat aplikaci""VYPNUTO""ZAPNUTO""Vyhledat…""Smazat dotaz""Vyhledávací dotaz""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet pomocí""Sdílet pomocí %s""Sbalit""Hledat""999+""转到主屏幕""%1$s:%2$s""%1$s - %2$s:%3$s""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""收起""搜索""999+""Navigasi ke beranda""%1$s, %2$s""%1$s, %2$s, %3$s""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""999+""ホームへ移動""%1$s、%2$s""%1$s、%2$s、%3$s""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""999+""Πλοήγηση στην αρχική σελίδα""%1$s, %2$s""%1$s, %2$s, %3$s""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Προβολή όλων""Επιλέξτε κάποια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινή χρήση με""Κοινή χρήση με %s""Σύμπτυξη""Αναζήτηση""999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml deleted file mode 100644 index 89057c4..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "मुख्यपृष्ठ पर नेविगेट करें" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ऊपर नेविगेट करें" - "अधिक विकल्प" - "पूर्ण" - "सभी देखें" - "कोई एप्‍लिकेशन चुनें" - "बंद" - "चालू" - "खोजा जा रहा है…" - "क्‍वेरी साफ़ करें" - "खोज क्वेरी" - "खोजें" - "क्वेरी सबमिट करें" - "ध्वनि खोज" - "इसके द्वारा साझा करें" - "%s के साथ साझा करें" - "संक्षिप्त करें" - "खोज" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml deleted file mode 100644 index ca0de20..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Idi na početnu" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Idi gore" - "Dodatne opcije" - "Gotovo" - "Prikaži sve" - "Odabir aplikacije" - "ISKLJUČENO" - "UKLJUČENO" - "Pretražite…" - "Izbriši upit" - "Upit za pretraživanje" - "Pretraživanje" - "Pošalji upit" - "Glasovno pretraživanje" - "Dijeljenje sa" - "Dijeljenje sa: %s" - "Sažmi" - "Pretraživanje" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml deleted file mode 100644 index b2ebff5..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Ugrás a főoldalra" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Felfelé mozgatás" - "További lehetőségek" - "Kész" - "Összes megtekintése" - "Válasszon ki egy alkalmazást" - "KI" - "BE" - "Keresés…" - "Lekérdezés törlése" - "Keresési lekérdezés" - "Keresés" - "Lekérdezés küldése" - "Hangalapú keresés" - "Megosztás a következővel:" - "Megosztás a következővel: %s" - "Összecsukás" - "Keresés" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml deleted file mode 100644 index ffaeec0..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Ուղղվել տուն" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Ուղղվել վերև" - "Այլ ընտրանքներ" - "Պատրաստ է" - "Տեսնել բոլորը" - "Ընտրել ծրագիր" - "ԱՆՋԱՏՎԱԾ" - "ՄԻԱՑՎԱԾ" - "Որոնում..." - "Մաքրել հարցումը" - "Որոնման հարցում" - "Որոնել" - "Ուղարկել հարցումը" - "Ձայնային որոնում" - "Կիսվել" - "Կիսվել %s-ի միջոցով" - "Թաքցնել" - "Որոնել" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml deleted file mode 100644 index 1d32fa1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Navigasi ke beranda" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Navigasi naik" - "Opsi lain" - "Selesai" - "Lihat semua" - "Pilih aplikasi" - "NONAKTIF" - "AKTIF" - "Telusuri..." - "Hapus kueri" - "Kueri penelusuran" - "Telusuri" - "Kirim kueri" - "Penelusuran suara" - "Bagikan dengan" - "Bagikan dengan %s" - "Ciutkan" - "Telusuri" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml deleted file mode 100644 index 6cd2b46..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Fara heim" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Fara upp" - "Fleiri valkostir" - "Lokið" - "Sjá allt" - "Veldu forrit" - "SLÖKKT" - "KVEIKT" - "Leita…" - "Hreinsa fyrirspurn" - "Leitarfyrirspurn" - "Leita" - "Senda fyrirspurn" - "Raddleit" - "Deila með" - "Deila með %s" - "Minnka" - "Leita" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml deleted file mode 100644 index 103f40d..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Vai alla home page" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Vai in alto" - "Altre opzioni" - "Fine" - "Visualizza tutte" - "Scegli un\'applicazione" - "OFF" - "ON" - "Cerca…" - "Cancella query" - "Query di ricerca" - "Cerca" - "Invia query" - "Ricerca vocale" - "Condividi con" - "Condividi con %s" - "Comprimi" - "Ricerca" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml deleted file mode 100644 index 1ca9be6..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "נווט לדף הבית" - "‏%1$s‏, %2$s" - "‏%1$s‏, %2$s‏, %3$s" - "נווט למעלה" - "עוד אפשרויות" - "בוצע" - "ראה הכל" - "בחר אפליקציה" - "כבוי" - "פועל" - "חפש…" - "מחק שאילתה" - "שאילתת חיפוש" - "חפש" - "שלח שאילתה" - "חיפוש קולי" - "שתף עם" - "‏שתף עם %s" - "כווץ" - "חפש" - "‎999+‎" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml deleted file mode 100644 index dc08b9f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "ホームへ移動" - "%1$s、%2$s" - "%1$s、%2$s、%3$s" - "上へ移動" - "その他のオプション" - "完了" - "すべて表示" - "アプリの選択" - "OFF" - "ON" - "検索…" - "検索キーワードを削除" - "検索キーワード" - "検索" - "検索キーワードを送信" - "音声検索" - "共有" - "%sと共有" - "折りたたむ" - "検索" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml deleted file mode 100644 index 3f32118..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "მთავარზე ნავიგაცია" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ზემოთ ნავიგაცია" - "მეტი ვარიანტები" - "დასრულდა" - "ყველას ნახვა" - "აპის არჩევა" - "გამორთულია" - "ჩართულია" - "ძიება..." - "მოთხოვნის გასუფთავება" - "ძიების მოთხოვნა" - "ძიება" - "მოთხოვნის გადაგზავნა" - "ხმოვანი ძიება" - "გაზიარება:" - "%s-თან გაზიარება" - "აკეცვა" - "ძიება" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml deleted file mode 100644 index a00d111..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Негізгі бетте қозғалу" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Жоғары қозғалу" - "Басқа опциялар" - "Дайын" - "Барлығын көру" - "Қолданбаны таңдау" - "ӨШІРУЛІ" - "ҚОСУЛЫ" - "Іздеу…" - "Сұрақты жою" - "Сұрақты іздеу" - "Іздеу" - "Сұрақты жіберу" - "Дауыс арқылы іздеу" - "Бөлісу" - "%s бөлісу" - "Тасалау" - "Іздеу" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml deleted file mode 100644 index a2dd37a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "រកមើល​ទៅ​ដើម" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "រកមើល​ឡើងលើ" - "ជម្រើស​ច្រើន​ទៀត" - "រួចរាល់" - "មើល​ទាំងអស់" - "ជ្រើស​កម្មវិធី​​" - "បិទ" - "បើក" - "ស្វែងរក…" - "សម្អាត​សំណួរ" - "ស្វែងរក​សំណួរ" - "ស្វែងរក" - "ដាក់​​​ស្នើ​សំណួរ" - "ការស្វែងរក​សំឡេង" - "ចែករំលែក​ជាមួយ" - "ចែករំលែក​ជាមួយ %s" - "បង្រួម" - "ស្វែងរក" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml deleted file mode 100644 index 99cdffd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" - "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" - "ಮುಗಿದಿದೆ" - "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" - "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" - "ಆಫ್" - "ಆನ್" - "ಹುಡುಕಿ…" - "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" - "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" - "ಹುಡುಕಿ" - "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" - "ಧ್ವನಿ ಹುಡುಕಾಟ" - "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" - "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" - "ಸಂಕುಚಿಸು" - "ಹುಡುಕಿ" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml deleted file mode 100644 index ca98630..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "홈 탐색" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "위로 탐색" - "옵션 더보기" - "완료" - "전체 보기" - "앱 선택" - "사용 안함" - "사용" - "검색..." - "검색어 삭제" - "검색어" - "검색" - "검색어 보내기" - "음성 검색" - "공유 대상" - "%s와(과) 공유" - "접기" - "검색" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml deleted file mode 100644 index 2493032..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - "Үйгө багыттоо" - "%1$s, %2$s" - "%1$s, %2$s, %3$s" - "Жогору" - "Көбүрөөк мүмкүнчүлүктөр" - "Даяр" - "Бардыгын көрүү" - "Колдонмо тандоо" - "ӨЧҮК" - "КҮЙҮК" - "Издөө…" - "Талаптарды тазалоо" - "Издөө талаптары" - "Издөө" - "Талап жөнөтүү" - "Үн аркылуу издөө" - "Бөлүшүү" - "%s аркылуу бөлүшүү" - "Жыйнап коюу" - "Издөө" - "999+" - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml deleted file mode 100644 index b337bad..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - 48dp - 32dp - 12dp - 14dp - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml deleted file mode 100644 index cc236eb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - 440dp - 60% - 90% - 60% - 90% - 55% - 80% - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml deleted file mode 100644 index 5ee2feb..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - 4dp - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml deleted file mode 100644 index f9f23d1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml deleted file mode 100644 index 7dad77f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - 0px - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml deleted file mode 100644 index 00e721f..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml +++ /dev/null @@ -1,304 +0,0 @@ - - - @color/secondary_text_default_material_light - 0dp - 0dp - 12dp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml deleted file mode 100644 index d4a514a..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml deleted file mode 100644 index d807aae..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml b/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml deleted file mode 100644 index 8b28a46..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "˃999""999+"">999""999+"4dp"999+""999+""+999""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999 +""999+""999+""999+""999+""больш за 999"#ffffffff#ff9e9e9e#1f000000#8a000000 - - - - - - - - - - - 4dp6dp8dp4dp2dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+#ff424242#ffffffff#b3ffffff12724dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""%1$s, %2$s""%1$s, %2$s, %3$s""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Căutați…""Ștergeți interogarea""Interogare de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți la %s""Restrângeți""Căutați""˃999""హోమ్‌కు నావిగేట్ చేయండి""%1$s, %2$s""%1$s, %2$s, %3$s""పైకి నావిగేట్ చేయండి""మరిన్ని ఎంపికలు""పూర్తయింది""అన్నీ చూడండి""అనువర్తనాన్ని ఎంచుకోండి""ఆఫ్ చేయి""ఆన్ చేయి""శోధించు...""ప్రశ్నను క్లియర్ చేయి""ప్రశ్న శోధించండి""శోధించు""ప్రశ్నని సమర్పించు""వాయిస్ శోధన""వీరితో భాగస్వామ్యం చేయి""%sతో భాగస్వామ్యం చేయి""కుదించండి""శోధించు""999+"0px"瀏覽首頁""%1$s:%2$s""%1$s - %2$s:%3$s""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""999+""Vai alla home page""%1$s, %2$s""%1$s, %2$s, %3$s""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi con %s""Comprimi""Ricerca""999+""Navega a la pàgina d\'inici""%1$s, %2$s""%1$s, %2$s, %3$s""Navega cap a dalt""Més opcions""Fet""Mostra\'ls tots""Selecciona una aplicació""DESACTIVAT""ACTIVAT""Cerca...""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""+999""Fara heim""%1$s, %2$s""%1$s, %2$s, %3$s""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""999+""Přejít na plochu""%1$s – %2$s""%1$s, %2$s – %3$s""Přejít nahoru""Více možností""Hotovo""Zobrazit vše""Vybrat aplikaci""VYPNUTO""ZAPNUTO""Vyhledat…""Smazat dotaz""Vyhledávací dotaz""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet pomocí""Sdílet pomocí %s""Sbalit""Hledat""999+""转到主屏幕""%1$s:%2$s""%1$s - %2$s:%3$s""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""收起""搜索""999+""Navigasi ke beranda""%1$s, %2$s""%1$s, %2$s, %3$s""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""999+""ホームへ移動""%1$s、%2$s""%1$s、%2$s、%3$s""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""999+""Πλοήγηση στην αρχική σελίδα""%1$s, %2$s""%1$s, %2$s, %3$s""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Προβολή όλων""Επιλέξτε κάποια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινή χρήση με""Κοινή χρήση με %s""Σύμπτυξη""Αναζήτηση""999+"RetrofitDemo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/MVPModel/retrofitdemo/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml deleted file mode 100644 index fbb1be9..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/manifest/androidTest/debug/output.json b/MVPModel/retrofitdemo/build/intermediates/manifest/androidTest/debug/output.json deleted file mode 100644 index 1050736..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/manifest/androidTest/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{}}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/manifests/density/debug/output.json b/MVPModel/retrofitdemo/build/intermediates/manifests/density/debug/output.json deleted file mode 100644 index 0637a08..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/manifests/density/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/manifests/full/debug/AndroidManifest.xml b/MVPModel/retrofitdemo/build/intermediates/manifests/full/debug/AndroidManifest.xml deleted file mode 100644 index dba4123..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/manifests/full/debug/AndroidManifest.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/manifests/full/debug/output.json b/MVPModel/retrofitdemo/build/intermediates/manifests/full/debug/output.json deleted file mode 100644 index 4ca2218..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/manifests/full/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"com.gaolei.retrofitdemo","split":"","minSdkVersion":"15"}}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/manifests/instant-run/debug/output.json b/MVPModel/retrofitdemo/build/intermediates/manifests/instant-run/debug/output.json deleted file mode 100644 index 8ecb073..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/manifests/instant-run/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"INSTANT_RUN_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"com.gaolei.retrofitdemo","split":"","minSdkVersion":"15"}}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/res/androidTest/debug/output.json b/MVPModel/retrofitdemo/build/intermediates/res/androidTest/debug/output.json deleted file mode 100644 index 3a06bbd..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/res/androidTest/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"PROCESSED_RES"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"resources-debugAndroidTest.ap_","properties":{}}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/res/androidTest/debug/resources-debugAndroidTest.ap_ b/MVPModel/retrofitdemo/build/intermediates/res/androidTest/debug/resources-debugAndroidTest.ap_ deleted file mode 100644 index ee85098..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/androidTest/debug/resources-debugAndroidTest.ap_ and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/debug/output.json b/MVPModel/retrofitdemo/build/intermediates/res/debug/output.json deleted file mode 100644 index d282ad2..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/res/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"PROCESSED_RES"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"resources-debug.ap_","properties":{"packageId":"com.gaolei.retrofitdemo","split":"","minSdkVersion":"15"}}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/res/debug/resources-debug.ap_ b/MVPModel/retrofitdemo/build/intermediates/res/debug/resources-debug.ap_ deleted file mode 100644 index 53d64a4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/debug/resources-debug.ap_ and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat deleted file mode 100644 index bd82eb2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat deleted file mode 100644 index 50f9579..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat deleted file mode 100644 index e02be1e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat deleted file mode 100644 index 64613ee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat deleted file mode 100644 index 28d2dbf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat deleted file mode 100644 index 705f95f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat deleted file mode 100644 index b7c257a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat deleted file mode 100644 index 9b5f827..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat deleted file mode 100644 index 0712c5f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat deleted file mode 100644 index f2f3023..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat deleted file mode 100644 index 943f62a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat deleted file mode 100644 index ee407a8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat deleted file mode 100644 index 2fd15ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat deleted file mode 100644 index 6ea7ac3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat deleted file mode 100644 index 3f2e62d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat deleted file mode 100644 index 30bc08f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat deleted file mode 100644 index a647141..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat deleted file mode 100644 index 735d0bb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat deleted file mode 100644 index 71fc422..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat deleted file mode 100644 index 2737a06..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat deleted file mode 100644 index 4c2d72c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat deleted file mode 100644 index c112dfb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat deleted file mode 100644 index e115938..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_borderless_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_borderless_text_material.xml.flat deleted file mode 100644 index aed5930..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_borderless_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat deleted file mode 100644 index b0cc3cc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat deleted file mode 100644 index 64fd9f7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat deleted file mode 100644 index 5c0d7f4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat deleted file mode 100644 index 7675b0c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat deleted file mode 100644 index 4207937..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat deleted file mode 100644 index 7f8d1c7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat deleted file mode 100644 index 4c854fc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat deleted file mode 100644 index f513be4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat deleted file mode 100644 index c16dbb1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat deleted file mode 100644 index f365d54..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat deleted file mode 100644 index eb47fc5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat deleted file mode 100644 index 28f1c47..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat deleted file mode 100644 index a78c564..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat deleted file mode 100644 index 252f6d9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat deleted file mode 100644 index 01150b0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat deleted file mode 100644 index 70f26b7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat deleted file mode 100644 index 0cba813..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat deleted file mode 100644 index c07bc69..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index c944515..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index 0469f09..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index cf9e271..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index dc325e5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 9098bfa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 4a6528b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 86007cb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index 20eba34..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index d3387a7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 6f4b7d4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 363077f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 6900e7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 3ce34bd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 2dec99d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 545fa4c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index 3d24c6c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 81d3451..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 189a4b4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index 05e447d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index 5ef23c4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index 34d917d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index 9684408..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index 0a5cd64..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 96af169..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index 382d6b3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index 0dce358..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 2cbbf58..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index 8fdc2ec..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index 7fec910..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index 7b245f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index c7c7780..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index 66a807f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index 72149b1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 3cacf1f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index e8efd53..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index e3f8b71..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index ea75dfa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 44c070f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index 5d85e14..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 2fd57cf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index 4b738c2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index 3e6b65b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index f47f30a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 860d221..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index b03b4fa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 57d6a88..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 6849d00..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat deleted file mode 100644 index de6756f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat deleted file mode 100644 index 64c0bbd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat deleted file mode 100644 index 257b198..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat deleted file mode 100644 index a9f979b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat deleted file mode 100644 index 65478b0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 7dca46f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 173d68a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index fe239d5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 428f89a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 1a60cfc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index da5651b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 585cbf3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index fe93f9d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 7207c08..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index c6550f8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 819dd96..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 3920c83..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index d38780d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 32a4ca5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index bccbace..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index df4f85f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index dc9c2ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index 898c5a9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index 1c194dd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 547faed..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 519eaaa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 979511b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index ffa56a9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index 0390abb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index d354266..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index f9f2550..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 815702c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 2eef3cb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 179e258..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 08226d1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index fc7c8db..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 38ed705..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 48634bf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index ed8d279..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index a4990c1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index 1c9da93..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index c2db2c1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index 4184169..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 881344b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index 4a2eb7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index d18c30a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 8e3024a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index 7ac98a1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index 352a916..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index 255c3d8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index 985482a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index cb7c605..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index f6fbffa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index e9dda78..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index bd2a7c1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 94b35ef..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index 13f8c58..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 0c695c4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index 81a4d5a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 18d8ba8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index b57eed0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index cbe921e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index 6171c79..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 222a3dd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 7772ff0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 5759e74..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 8ad18e4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat deleted file mode 100644 index d406259..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat deleted file mode 100644 index 2cf8a73..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat deleted file mode 100644 index ecd2847..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat deleted file mode 100644 index 49f6ca8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat deleted file mode 100644 index cbd5dd3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat deleted file mode 100644 index 8a63618..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat deleted file mode 100644 index 23d823e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat deleted file mode 100644 index 8863869..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat deleted file mode 100644 index 06e20fc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat deleted file mode 100644 index 93b9f86..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index a2859e2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index 97f15ab..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index ac756d4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index 1a38fe8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 4a3baaf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 347ba22..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 195ff0e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index da757ef..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index ff5abc8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index a3d49ab..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 0c39804..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 89a6575..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 32f80e4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 30a3679..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index ea294e8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index 415b80a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 7097a66..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 51dc69f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index 33c4ec2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index 38ce59e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index 6534c39..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index 0d1129f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index c20f3e8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 28492d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index fa2f5e9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index e4d788d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 2df43a7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index e2168e6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index 1b627d0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index 8899cb2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index 67357be..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index 152d138..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index 6063f25..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 93ea3b2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 78b9bda..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index a63ff7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index e671b11..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index e25de62..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index a650a14..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 1b61868..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index 84e88a4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index c148772..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index 85dbf8b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 4c6cc70..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 8484942..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index f87f443..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 500fe18..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat deleted file mode 100644 index df4caa6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat deleted file mode 100644 index a1c5d39..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat deleted file mode 100644 index cf16ccd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat deleted file mode 100644 index 7b0a639..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat deleted file mode 100644 index f7c4f49..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index cca049a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index eabdcb1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index e066f61..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index d278f7d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 25ae1fb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 0eb5d4f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 620ff53..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index 8ed976b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index 43c6c7a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index b9d7573..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 4fc9f70..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 11bc4b6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 8242fd5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 14a859b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 810989e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index c9e4544..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 1e25f0e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 992e5ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index cf4cafa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index 3744b3e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index fd30ed3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index 8b9b608..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index 86d85e2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 6cf2522..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index 4c95b66..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index 103f72a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 496f44c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index 381a638..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index dd94333..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index c81159e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index d0c96bc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index e0e3ef3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index 494b76e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index f906fb9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 86142f2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 1f0f3cc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index bccb0ca..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 663e8a7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index e425b30..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 4475d3f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index ae1e0f3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index 842cfdc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index df3837d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 3e79d7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 7a1d3b1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index b21c846..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index a13ec00..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index a828b44..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index bc94d1a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index 76afeec..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index b7d2c1b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index ce65957..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 8eddf4c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 517ff62..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index c64ce85..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 605db32..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index a2c7ac0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index e6e942a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 75cff1a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index 2d7229a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 75bd0c2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index d2ed106..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index 14bc6cd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index cef08d5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index ba46f2b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index 410d582..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 6042cc6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 8a02092..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index 96914c3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 4cecff5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index 74cebde..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index 011266c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index c97e5fb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat deleted file mode 100644 index 2d6a719..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat deleted file mode 100644 index accdd2e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_colored_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_colored_material.xml.flat deleted file mode 100644 index 7000c96..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_colored_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat deleted file mode 100644 index a697c24..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat deleted file mode 100644 index 66ff3fc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat deleted file mode 100644 index cd47b38..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat deleted file mode 100644 index e2a6bee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_dialog_material_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_dialog_material_background.xml.flat deleted file mode 100644 index 2ed1e56..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_dialog_material_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_edit_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_edit_text_material.xml.flat deleted file mode 100644 index 298995c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_edit_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat deleted file mode 100644 index a584c47..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat deleted file mode 100644 index 270e9c0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat deleted file mode 100644 index 3f75601..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat deleted file mode 100644 index 145e647..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat deleted file mode 100644 index cccfc45..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat deleted file mode 100644 index 425afb7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat deleted file mode 100644 index dcacaba..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat deleted file mode 100644 index a467032..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat deleted file mode 100644 index 3e52077..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat deleted file mode 100644 index 0b04dea..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat deleted file mode 100644 index 20adeb7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat deleted file mode 100644 index 3d10abf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat deleted file mode 100644 index 78e6147..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat deleted file mode 100644 index 14dcea5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat deleted file mode 100644 index 4fcd315..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat deleted file mode 100644 index aa8012f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat deleted file mode 100644 index 17a13ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat deleted file mode 100644 index af873a0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat deleted file mode 100644 index 4b98d53..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat deleted file mode 100644 index df30206..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat deleted file mode 100644 index 1436af1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat deleted file mode 100644 index 24df9ac..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat deleted file mode 100644 index 079a203..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat deleted file mode 100644 index 66103eb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat deleted file mode 100644 index 8811a50..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat deleted file mode 100644 index 79d4f5a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat deleted file mode 100644 index 77f5702..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat deleted file mode 100644 index f034a3a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat deleted file mode 100644 index 1d890d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat deleted file mode 100644 index 40398f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat deleted file mode 100644 index 512cac9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v16_notification_template_custom_big.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v16_notification_template_custom_big.xml.flat deleted file mode 100644 index 511eab1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v16_notification_template_custom_big.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat deleted file mode 100644 index 1018644..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat deleted file mode 100644 index d51d2cd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat deleted file mode 100644 index c7f2fa6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat deleted file mode 100644 index 2885aa2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat deleted file mode 100644 index bed9009..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat deleted file mode 100644 index 381e8b4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat deleted file mode 100644 index decf919..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat deleted file mode 100644 index 606b4f6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat deleted file mode 100644 index 1dba789..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat deleted file mode 100644 index 3e60507..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat deleted file mode 100644 index a0735ee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat deleted file mode 100644 index 976c55d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat deleted file mode 100644 index 0761b7c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat deleted file mode 100644 index acdfb78..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat deleted file mode 100644 index 10447ae..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat deleted file mode 100644 index 81a9e7a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat deleted file mode 100644 index d4c9696..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat deleted file mode 100644 index 322c61d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat deleted file mode 100644 index 8e5106b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat deleted file mode 100644 index 9e51bdb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat deleted file mode 100644 index 10f768b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat deleted file mode 100644 index ad85f5a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat deleted file mode 100644 index 7d57312..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat deleted file mode 100644 index 176b8dd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat deleted file mode 100644 index bbc8057..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat deleted file mode 100644 index 1f9a57d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat deleted file mode 100644 index 0954867..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat deleted file mode 100644 index 23758f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat deleted file mode 100644 index c7e6d55..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat deleted file mode 100644 index 9fbc06d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat deleted file mode 100644 index ca1c1f6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat deleted file mode 100644 index 2baf1d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action.xml.flat deleted file mode 100644 index 8bb9d15..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action_tombstone.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action_tombstone.xml.flat deleted file mode 100644 index 00aa5f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_action_tombstone.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_action.xml.flat deleted file mode 100644 index 85cd587..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_cancel_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_cancel_action.xml.flat deleted file mode 100644 index 6cf01ee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_media_cancel_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media.xml.flat deleted file mode 100644 index 7bccc20..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_custom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_custom.xml.flat deleted file mode 100644 index 57b06b8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_custom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow.xml.flat deleted file mode 100644 index ca8808b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow_custom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow_custom.xml.flat deleted file mode 100644 index 69eb3db..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_big_media_narrow_custom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_custom_big.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_custom_big.xml.flat deleted file mode 100644 index 316400a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_custom_big.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_icon_group.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_icon_group.xml.flat deleted file mode 100644 index 953ce39..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_icon_group.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_lines_media.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_lines_media.xml.flat deleted file mode 100644 index 951807e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_lines_media.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media.xml.flat deleted file mode 100644 index a121aca..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media_custom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media_custom.xml.flat deleted file mode 100644 index 4ce395b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_media_custom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat deleted file mode 100644 index 4a694cd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat deleted file mode 100644 index 633194d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat deleted file mode 100644 index 23b0757..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat deleted file mode 100644 index 618e60a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat deleted file mode 100644 index 438202c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat deleted file mode 100644 index 051ab33..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat deleted file mode 100644 index 0321148..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat deleted file mode 100644 index f8d22fe..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat deleted file mode 100644 index 772c695..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat deleted file mode 100644 index d7c9fc0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat deleted file mode 100644 index 1fb8966..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat deleted file mode 100644 index 16ac413..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat deleted file mode 100644 index 5672476..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat deleted file mode 100644 index 7ce935c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat deleted file mode 100644 index a9b491a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat deleted file mode 100644 index 05cf505..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat deleted file mode 100644 index 86aad20..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat deleted file mode 100644 index 6d2435b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat deleted file mode 100644 index 87aa248..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat deleted file mode 100644 index e94c60e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat deleted file mode 100644 index 8e13be6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat deleted file mode 100644 index e12a5b5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat deleted file mode 100644 index aacf26f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat deleted file mode 100644 index 3c6492e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat deleted file mode 100644 index ecc5c59..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat deleted file mode 100644 index 159d851..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat deleted file mode 100644 index f1c65ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat deleted file mode 100644 index 13eb5b3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat deleted file mode 100644 index d91d583..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat deleted file mode 100644 index 1ffa352..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat deleted file mode 100644 index e52c15e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat deleted file mode 100644 index 3a3586d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat deleted file mode 100644 index df20c0e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat deleted file mode 100644 index 4341f74..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat deleted file mode 100644 index 8a6a41e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat deleted file mode 100644 index 841d707..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat deleted file mode 100644 index 3e974da..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat deleted file mode 100644 index da2bfab..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat deleted file mode 100644 index 05b7163..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat deleted file mode 100644 index 3e6bba8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat deleted file mode 100644 index b122a6d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat deleted file mode 100644 index e4bedf4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat deleted file mode 100644 index 29d657c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat deleted file mode 100644 index dae7be2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat deleted file mode 100644 index 11f309d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat deleted file mode 100644 index af43ec2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat deleted file mode 100644 index 6cbf76c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat deleted file mode 100644 index 26bc9ba..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat deleted file mode 100644 index 6cf5384..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat deleted file mode 100644 index 0968e00..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat deleted file mode 100644 index cad7c4d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat deleted file mode 100644 index 4c923e9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat deleted file mode 100644 index 9b921e8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat deleted file mode 100644 index e6f0d1b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat deleted file mode 100644 index ef48ff5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat deleted file mode 100644 index eccfa5c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat deleted file mode 100644 index c59f54c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat deleted file mode 100644 index 4bafb19..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat deleted file mode 100644 index c38b82b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat deleted file mode 100644 index 0789aed..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat deleted file mode 100644 index 78debe9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat deleted file mode 100644 index d51f839..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat deleted file mode 100644 index 2669fc1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat deleted file mode 100644 index 14621da..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat deleted file mode 100644 index 1631599..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat deleted file mode 100644 index 0661e37..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat deleted file mode 100644 index c8ef2b0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat deleted file mode 100644 index c712b17..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat deleted file mode 100644 index dc1df80..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat deleted file mode 100644 index 9e38c46..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat deleted file mode 100644 index f692cdd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat deleted file mode 100644 index 8718223..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat deleted file mode 100644 index fa18261..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat deleted file mode 100644 index 51b1c38..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat deleted file mode 100644 index b5726d6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat deleted file mode 100644 index 2f2633f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat deleted file mode 100644 index 743bc48..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat deleted file mode 100644 index e0eacee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat deleted file mode 100644 index 3c3ea28..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat deleted file mode 100644 index 30cfdd9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat deleted file mode 100644 index a1fedbe..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat deleted file mode 100644 index 19e9062..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat deleted file mode 100644 index 4c9bc1f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat deleted file mode 100644 index eb2bb50..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat deleted file mode 100644 index 8b3eacf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat deleted file mode 100644 index d48ad47..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat deleted file mode 100644 index 74a18cc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat deleted file mode 100644 index 4ef7db9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat deleted file mode 100644 index f73d983..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat deleted file mode 100644 index 0f207b3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat deleted file mode 100644 index 7498f76..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v11_values-v11.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v11_values-v11.arsc.flat deleted file mode 100644 index 223fa93..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v11_values-v11.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v12_values-v12.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v12_values-v12.arsc.flat deleted file mode 100644 index 3b348e7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v12_values-v12.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v13_values-v13.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v13_values-v13.arsc.flat deleted file mode 100644 index 9c89b5d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v13_values-v13.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v14_values-v14.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v14_values-v14.arsc.flat deleted file mode 100644 index 0ab5024..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v14_values-v14.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat deleted file mode 100644 index 4c00558..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat deleted file mode 100644 index cf79ef1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat deleted file mode 100644 index d7f77f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat deleted file mode 100644 index 5200de7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat deleted file mode 100644 index ca6afe4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat deleted file mode 100644 index bb54667..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat deleted file mode 100644 index 1544d4d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat deleted file mode 100644 index bfcd0c3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat deleted file mode 100644 index e5a7724..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat deleted file mode 100644 index fde8851..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat deleted file mode 100644 index 24a07d4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat deleted file mode 100644 index e850eed..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat deleted file mode 100644 index 5e6de7a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat deleted file mode 100644 index 01aac32..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat deleted file mode 100644 index c73b61b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat deleted file mode 100644 index 2a632ce..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat deleted file mode 100644 index bd82eb2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat deleted file mode 100644 index 50f9579..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat deleted file mode 100644 index e02be1e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat deleted file mode 100644 index 64613ee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat deleted file mode 100644 index 28d2dbf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat deleted file mode 100644 index 705f95f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat deleted file mode 100644 index b7c257a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat deleted file mode 100644 index 9b5f827..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat deleted file mode 100644 index 0712c5f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat deleted file mode 100644 index f2f3023..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat deleted file mode 100644 index 943f62a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat deleted file mode 100644 index ee407a8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat deleted file mode 100644 index 2fd15ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat deleted file mode 100644 index 6ea7ac3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v11_abc_background_cache_hint_selector_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat deleted file mode 100644 index 3f2e62d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat deleted file mode 100644 index 30bc08f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat deleted file mode 100644 index a647141..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat deleted file mode 100644 index 735d0bb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat deleted file mode 100644 index 71fc422..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat deleted file mode 100644 index 2737a06..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat deleted file mode 100644 index 4c2d72c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat deleted file mode 100644 index c112dfb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat deleted file mode 100644 index e115938..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat deleted file mode 100644 index aed5930..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat deleted file mode 100644 index b0cc3cc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat deleted file mode 100644 index 64fd9f7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat deleted file mode 100644 index 5c0d7f4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat deleted file mode 100644 index 7675b0c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat deleted file mode 100644 index 4207937..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat deleted file mode 100644 index 7f8d1c7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat deleted file mode 100644 index 4c854fc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat deleted file mode 100644 index f513be4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat deleted file mode 100644 index c16dbb1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat deleted file mode 100644 index f365d54..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat deleted file mode 100644 index eb47fc5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat deleted file mode 100644 index 28f1c47..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat deleted file mode 100644 index a78c564..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat deleted file mode 100644 index 252f6d9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat deleted file mode 100644 index 01150b0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat deleted file mode 100644 index 70f26b7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat deleted file mode 100644 index 0cba813..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat deleted file mode 100644 index c07bc69..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-anydpi-v21_ic_launcher_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-anydpi-v21_ic_launcher_background.xml.flat deleted file mode 100644 index e73fad3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-anydpi-v21_ic_launcher_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index c944515..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index 0469f09..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index cf9e271..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index dc325e5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 9098bfa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 4a6528b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 86007cb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index 20eba34..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index d3387a7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 6f4b7d4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 363077f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 6900e7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 3ce34bd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 2dec99d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 545fa4c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index 3d24c6c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 81d3451..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 189a4b4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index 05e447d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index 5ef23c4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index 34d917d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index 9684408..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index 0a5cd64..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 96af169..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index 382d6b3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index 0dce358..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 2cbbf58..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index 8fdc2ec..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index 7fec910..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index 7b245f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index c7c7780..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index 66a807f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index 72149b1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 3cacf1f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index e8efd53..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index e3f8b71..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index ea75dfa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 44c070f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index 5d85e14..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 2fd57cf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index 4b738c2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index 3e6b65b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index f47f30a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 860d221..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index b03b4fa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 57d6a88..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 6849d00..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat deleted file mode 100644 index de6756f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat deleted file mode 100644 index 64c0bbd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat deleted file mode 100644 index 257b198..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat deleted file mode 100644 index a9f979b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat deleted file mode 100644 index 65478b0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher_background.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher_background.png.flat deleted file mode 100644 index a66a240..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher_background.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher_background.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher_background.png.flat deleted file mode 100644 index 431bd12..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher_background.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 7dca46f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 173d68a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index fe239d5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 428f89a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 1a60cfc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index da5651b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 585cbf3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index fe93f9d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 7207c08..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index c6550f8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 819dd96..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 3920c83..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index d38780d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 32a4ca5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index bccbace..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index df4f85f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index dc9c2ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index 898c5a9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index 1c194dd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 547faed..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 519eaaa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 979511b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index ffa56a9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index 0390abb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index d354266..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index f9f2550..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 815702c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 2eef3cb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 179e258..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 08226d1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index fc7c8db..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 38ed705..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 48634bf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index ed8d279..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index a4990c1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index 1c9da93..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index c2db2c1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index 4184169..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 881344b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index 4a2eb7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index d18c30a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 8e3024a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index 7ac98a1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index 352a916..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index 255c3d8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index 985482a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index cb7c605..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index f6fbffa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index e9dda78..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index bd2a7c1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 94b35ef..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index 13f8c58..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 0c695c4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index 81a4d5a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 18d8ba8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index b57eed0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index cbe921e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index 6171c79..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 222a3dd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 7772ff0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 5759e74..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 8ad18e4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat deleted file mode 100644 index d406259..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat deleted file mode 100644 index 2cf8a73..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat deleted file mode 100644 index ecd2847..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat deleted file mode 100644 index 49f6ca8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat deleted file mode 100644 index cbd5dd3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher_background.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher_background.png.flat deleted file mode 100644 index fbc1e2e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher_background.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat deleted file mode 100644 index 8a63618..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat deleted file mode 100644 index 23d823e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat deleted file mode 100644 index 8863869..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat deleted file mode 100644 index 06e20fc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat deleted file mode 100644 index 93b9f86..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat deleted file mode 100644 index 9f03504..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index a2859e2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index 97f15ab..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index ac756d4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index 1a38fe8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 4a3baaf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 347ba22..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 195ff0e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index da757ef..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index ff5abc8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index a3d49ab..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 0c39804..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 89a6575..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 32f80e4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 30a3679..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index ea294e8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index 415b80a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 7097a66..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 51dc69f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index 33c4ec2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index 38ce59e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index 6534c39..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index 0d1129f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index c20f3e8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 28492d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index fa2f5e9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index e4d788d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 2df43a7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index e2168e6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index 1b627d0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index 8899cb2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index 67357be..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index 152d138..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index 6063f25..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 93ea3b2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 78b9bda..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index a63ff7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index e671b11..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index e25de62..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index a650a14..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 1b61868..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index 84e88a4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index c148772..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index 85dbf8b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 4c6cc70..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 8484942..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index f87f443..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 500fe18..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat deleted file mode 100644 index df4caa6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat deleted file mode 100644 index a1c5d39..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat deleted file mode 100644 index cf16ccd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat deleted file mode 100644 index 7b0a639..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat deleted file mode 100644 index f7c4f49..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher_background.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher_background.png.flat deleted file mode 100644 index 3f9b57c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher_background.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat deleted file mode 100644 index cca049a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index eabdcb1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index e066f61..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index d278f7d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index 25ae1fb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index 0eb5d4f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 620ff53..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat deleted file mode 100644 index 8ed976b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat deleted file mode 100644 index 43c6c7a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index b9d7573..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index 4fc9f70..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 11bc4b6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index 8242fd5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index 14a859b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 810989e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index c9e4544..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 1e25f0e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index 992e5ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index cf4cafa..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index 3744b3e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat deleted file mode 100644 index fd30ed3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat deleted file mode 100644 index 8b9b608..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat deleted file mode 100644 index 86d85e2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat deleted file mode 100644 index 6cf2522..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat deleted file mode 100644 index 4c95b66..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat deleted file mode 100644 index 103f72a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat deleted file mode 100644 index 496f44c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat deleted file mode 100644 index 381a638..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat deleted file mode 100644 index dd94333..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat deleted file mode 100644 index c81159e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index d0c96bc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index e0e3ef3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat deleted file mode 100644 index 494b76e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat deleted file mode 100644 index f906fb9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 86142f2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 1f0f3cc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index bccb0ca..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 663e8a7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index e425b30..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat deleted file mode 100644 index 4475d3f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat deleted file mode 100644 index ae1e0f3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index 842cfdc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index df3837d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index 3e79d7b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat deleted file mode 100644 index 7a1d3b1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat deleted file mode 100644 index b21c846..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat deleted file mode 100644 index a13ec00..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher_background.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher_background.png.flat deleted file mode 100644 index 2f211db..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher_background.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat deleted file mode 100644 index a828b44..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat deleted file mode 100644 index bc94d1a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat deleted file mode 100644 index 76afeec..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat deleted file mode 100644 index b7d2c1b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat deleted file mode 100644 index ce65957..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat deleted file mode 100644 index 8eddf4c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat deleted file mode 100644 index 517ff62..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat deleted file mode 100644 index c64ce85..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat deleted file mode 100644 index 605db32..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat deleted file mode 100644 index a2c7ac0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat deleted file mode 100644 index e6e942a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat deleted file mode 100644 index 75cff1a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat deleted file mode 100644 index 2d7229a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat deleted file mode 100644 index 75bd0c2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat deleted file mode 100644 index d2ed106..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat deleted file mode 100644 index 14bc6cd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat deleted file mode 100644 index cef08d5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat deleted file mode 100644 index ba46f2b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat deleted file mode 100644 index 410d582..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat deleted file mode 100644 index 6042cc6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat deleted file mode 100644 index 8a02092..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat deleted file mode 100644 index 96914c3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat deleted file mode 100644 index 4cecff5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat deleted file mode 100644 index 74cebde..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat deleted file mode 100644 index 011266c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat deleted file mode 100644 index c97e5fb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi_ic_launcher_background.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi_ic_launcher_background.png.flat deleted file mode 100644 index 3ef8969..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable-xxxhdpi_ic_launcher_background.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat deleted file mode 100644 index 2d6a719..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat deleted file mode 100644 index accdd2e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat deleted file mode 100644 index 7000c96..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat deleted file mode 100644 index a697c24..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat deleted file mode 100644 index 66ff3fc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat deleted file mode 100644 index cd47b38..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat deleted file mode 100644 index e2a6bee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat deleted file mode 100644 index 2ed1e56..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat deleted file mode 100644 index 298995c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat deleted file mode 100644 index a584c47..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat deleted file mode 100644 index 270e9c0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat deleted file mode 100644 index 3f75601..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat deleted file mode 100644 index 145e647..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat deleted file mode 100644 index cccfc45..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat deleted file mode 100644 index 425afb7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat deleted file mode 100644 index dcacaba..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat deleted file mode 100644 index a467032..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat deleted file mode 100644 index 3e52077..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat deleted file mode 100644 index 0b04dea..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat deleted file mode 100644 index 20adeb7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat deleted file mode 100644 index 3d10abf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat deleted file mode 100644 index 78e6147..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat deleted file mode 100644 index 14dcea5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat deleted file mode 100644 index 4fcd315..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat deleted file mode 100644 index aa8012f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat deleted file mode 100644 index 17a13ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat deleted file mode 100644 index af873a0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat deleted file mode 100644 index 4b98d53..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat deleted file mode 100644 index df30206..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat deleted file mode 100644 index 1436af1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat deleted file mode 100644 index 24df9ac..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat deleted file mode 100644 index 079a203..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat deleted file mode 100644 index 66103eb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat deleted file mode 100644 index 8811a50..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat deleted file mode 100644 index 79d4f5a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat deleted file mode 100644 index 77f5702..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat deleted file mode 100644 index f034a3a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat deleted file mode 100644 index 1d890d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat deleted file mode 100644 index 40398f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat deleted file mode 100644 index 512cac9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat deleted file mode 100644 index 511eab1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat deleted file mode 100644 index 1018644..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat deleted file mode 100644 index d51d2cd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat deleted file mode 100644 index c7f2fa6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat deleted file mode 100644 index 2885aa2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat deleted file mode 100644 index bed9009..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat deleted file mode 100644 index 381e8b4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat deleted file mode 100644 index decf919..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat deleted file mode 100644 index 606b4f6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_bar_view_list_nav_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat deleted file mode 100644 index 1dba789..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat deleted file mode 100644 index 3e60507..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat deleted file mode 100644 index a0735ee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat deleted file mode 100644 index 976c55d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat deleted file mode 100644 index 0761b7c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat deleted file mode 100644 index acdfb78..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat deleted file mode 100644 index 10447ae..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat deleted file mode 100644 index 81a9e7a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat deleted file mode 100644 index d4c9696..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat deleted file mode 100644 index 322c61d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat deleted file mode 100644 index 8e5106b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat deleted file mode 100644 index 9e51bdb..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat deleted file mode 100644 index 10f768b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat deleted file mode 100644 index ad85f5a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat deleted file mode 100644 index 7d57312..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat deleted file mode 100644 index 176b8dd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat deleted file mode 100644 index bbc8057..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat deleted file mode 100644 index 1f9a57d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat deleted file mode 100644 index 0954867..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat deleted file mode 100644 index 23758f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat deleted file mode 100644 index c7e6d55..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat deleted file mode 100644 index 9fbc06d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat deleted file mode 100644 index ca1c1f6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat deleted file mode 100644 index 2baf1d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_home.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_home.xml.flat deleted file mode 100644 index 024de4f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_home.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_main.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_main.xml.flat deleted file mode 100644 index beace31..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_activity_main.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action.xml.flat deleted file mode 100644 index 8bb9d15..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat deleted file mode 100644 index 00aa5f5..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat deleted file mode 100644 index 85cd587..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat deleted file mode 100644 index 6cf01ee..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat deleted file mode 100644 index 7bccc20..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat deleted file mode 100644 index 57b06b8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat deleted file mode 100644 index ca8808b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat deleted file mode 100644 index 69eb3db..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat deleted file mode 100644 index 316400a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat deleted file mode 100644 index 953ce39..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat deleted file mode 100644 index 951807e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat deleted file mode 100644 index a121aca..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat deleted file mode 100644 index 4ce395b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat deleted file mode 100644 index 4a694cd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat deleted file mode 100644 index 633194d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat deleted file mode 100644 index 23b0757..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat deleted file mode 100644 index 618e60a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat deleted file mode 100644 index 438202c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat deleted file mode 100644 index 051ab33..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_tooltip.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_tooltip.xml.flat deleted file mode 100644 index 0321148..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/layout_tooltip.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat deleted file mode 100644 index 0479104..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat deleted file mode 100644 index dcc2fed..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat deleted file mode 100644 index 3704d99..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat deleted file mode 100644 index 58c161a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat deleted file mode 100644 index b5a5cf3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat deleted file mode 100644 index 2b13b28..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat deleted file mode 100644 index 9c87773..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat deleted file mode 100644 index 1e853f1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat deleted file mode 100644 index 4c4823c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat deleted file mode 100644 index 276412b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat deleted file mode 100644 index f6559ae..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat deleted file mode 100644 index 521dcf9..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat deleted file mode 100644 index b66ede8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat deleted file mode 100644 index c7a3fc2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat deleted file mode 100644 index 2affe83..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat deleted file mode 100644 index 405ab98..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat deleted file mode 100644 index dc84c65..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat deleted file mode 100644 index 66c8ce8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat deleted file mode 100644 index ec85a76..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat deleted file mode 100644 index 68d88e7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat deleted file mode 100644 index 88e822e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat deleted file mode 100644 index d834b90..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat deleted file mode 100644 index 8d50ff0..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat deleted file mode 100644 index 897a4f3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat deleted file mode 100644 index 469dc82..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat deleted file mode 100644 index ee33b6b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat deleted file mode 100644 index 7079521..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat deleted file mode 100644 index a86d11a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat deleted file mode 100644 index 04db56a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat deleted file mode 100644 index e1cad66..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat deleted file mode 100644 index dd3140f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat deleted file mode 100644 index 79146ab..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat deleted file mode 100644 index c00e22f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat deleted file mode 100644 index 6ebd777..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat deleted file mode 100644 index 873d2fd..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat deleted file mode 100644 index f7a3168..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat deleted file mode 100644 index 2b2d569..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat deleted file mode 100644 index 365de56..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat deleted file mode 100644 index 40d8470..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat deleted file mode 100644 index 7d45a5f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat deleted file mode 100644 index e44f5ec..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat deleted file mode 100644 index 234ca91..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat deleted file mode 100644 index c6efdcf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat deleted file mode 100644 index 38a222a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat deleted file mode 100644 index 810980c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat deleted file mode 100644 index bdfc082..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat deleted file mode 100644 index 06ee229..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat deleted file mode 100644 index 2691c86..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat deleted file mode 100644 index c53048f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat deleted file mode 100644 index b451d2a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat deleted file mode 100644 index 4837b5d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat deleted file mode 100644 index 323a24f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat deleted file mode 100644 index 11119ac..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat deleted file mode 100644 index 42480ea..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat deleted file mode 100644 index 6265e62..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat deleted file mode 100644 index dd44475..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat deleted file mode 100644 index 3f93edc..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat deleted file mode 100644 index de3a820..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat deleted file mode 100644 index a9b407d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat deleted file mode 100644 index 9b04a20..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat deleted file mode 100644 index 7cdfad2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat deleted file mode 100644 index 828cd4f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat deleted file mode 100644 index cf6498a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat deleted file mode 100644 index 40596d6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat deleted file mode 100644 index c852688..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat deleted file mode 100644 index b36a3bf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat deleted file mode 100644 index c4f5f0a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat deleted file mode 100644 index 9f688b2..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat deleted file mode 100644 index 172b572..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat deleted file mode 100644 index e255f83..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat deleted file mode 100644 index be055e7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat deleted file mode 100644 index 9bff953..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat deleted file mode 100644 index e99f0ad..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat deleted file mode 100644 index 91facdf..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat deleted file mode 100644 index 6abd938..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat deleted file mode 100644 index 73a3654..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat deleted file mode 100644 index d43499f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat deleted file mode 100644 index 63a5f4a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat deleted file mode 100644 index e277c81..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat deleted file mode 100644 index 12d31d4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat deleted file mode 100644 index 26da7d7..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat deleted file mode 100644 index bae07f8..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat deleted file mode 100644 index 9587499..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat deleted file mode 100644 index 3670937..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat deleted file mode 100644 index eb3b899..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat deleted file mode 100644 index 232ed01..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat deleted file mode 100644 index 6698413..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat deleted file mode 100644 index cd773c3..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat deleted file mode 100644 index 3c95d90..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat deleted file mode 100644 index db7f172..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat deleted file mode 100644 index 108758d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat deleted file mode 100644 index da6cc6d..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat deleted file mode 100644 index b84e756..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat deleted file mode 100644 index d09497a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat deleted file mode 100644 index f29112f..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat deleted file mode 100644 index 46bc17c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat deleted file mode 100644 index ffa7e71..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat deleted file mode 100644 index fadbf32..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat deleted file mode 100644 index b44df0e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat deleted file mode 100644 index 1d8a0f6..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat deleted file mode 100644 index e10e9f4..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat deleted file mode 100644 index 938ce66..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat deleted file mode 100644 index 449818a..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat deleted file mode 100644 index 09c5149..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat deleted file mode 100644 index bf82778..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat deleted file mode 100644 index 1b1064b..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat deleted file mode 100644 index 4f9b529..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat deleted file mode 100644 index 98b5b35..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat deleted file mode 100644 index 3c4d87c..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat deleted file mode 100644 index 5392a40..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat deleted file mode 100644 index 1018491..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat deleted file mode 100644 index 0801da1..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat deleted file mode 100644 index 6747f00..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat deleted file mode 100644 index 014530e..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat deleted file mode 100644 index 0811098..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values_values.arsc.flat b/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values_values.arsc.flat deleted file mode 100644 index 7380100..0000000 Binary files a/MVPModel/retrofitdemo/build/intermediates/res/merged/debug/values_values.arsc.flat and /dev/null differ diff --git a/MVPModel/retrofitdemo/build/intermediates/res/symbol-table-with-package/androidTest/debug/package-aware-r.txt b/MVPModel/retrofitdemo/build/intermediates/res/symbol-table-with-package/androidTest/debug/package-aware-r.txt deleted file mode 100644 index 324edda..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/res/symbol-table-with-package/androidTest/debug/package-aware-r.txt +++ /dev/null @@ -1,1742 +0,0 @@ -com.gaolei.retrofitdemo.test -int anim abc_fade_in 0x7f010000 -int anim abc_fade_out 0x7f010001 -int anim abc_grow_fade_in_from_bottom 0x7f010002 -int anim abc_popup_enter 0x7f010003 -int anim abc_popup_exit 0x7f010004 -int anim abc_shrink_fade_out_from_bottom 0x7f010005 -int anim abc_slide_in_bottom 0x7f010006 -int anim abc_slide_in_top 0x7f010007 -int anim abc_slide_out_bottom 0x7f010008 -int anim abc_slide_out_top 0x7f010009 -int anim tooltip_enter 0x7f01000a -int anim tooltip_exit 0x7f01000b -int attr actionBarDivider 0x7f020000 -int attr actionBarItemBackground 0x7f020001 -int attr actionBarPopupTheme 0x7f020002 -int attr actionBarSize 0x7f020003 -int attr actionBarSplitStyle 0x7f020004 -int attr actionBarStyle 0x7f020005 -int attr actionBarTabBarStyle 0x7f020006 -int attr actionBarTabStyle 0x7f020007 -int attr actionBarTabTextStyle 0x7f020008 -int attr actionBarTheme 0x7f020009 -int attr actionBarWidgetTheme 0x7f02000a -int attr actionButtonStyle 0x7f02000b -int attr actionDropDownStyle 0x7f02000c -int attr actionLayout 0x7f02000d -int attr actionMenuTextAppearance 0x7f02000e -int attr actionMenuTextColor 0x7f02000f -int attr actionModeBackground 0x7f020010 -int attr actionModeCloseButtonStyle 0x7f020011 -int attr actionModeCloseDrawable 0x7f020012 -int attr actionModeCopyDrawable 0x7f020013 -int attr actionModeCutDrawable 0x7f020014 -int attr actionModeFindDrawable 0x7f020015 -int attr actionModePasteDrawable 0x7f020016 -int attr actionModePopupWindowStyle 0x7f020017 -int attr actionModeSelectAllDrawable 0x7f020018 -int attr actionModeShareDrawable 0x7f020019 -int attr actionModeSplitBackground 0x7f02001a -int attr actionModeStyle 0x7f02001b -int attr actionModeWebSearchDrawable 0x7f02001c -int attr actionOverflowButtonStyle 0x7f02001d -int attr actionOverflowMenuStyle 0x7f02001e -int attr actionProviderClass 0x7f02001f -int attr actionViewClass 0x7f020020 -int attr activityChooserViewStyle 0x7f020021 -int attr alertDialogButtonGroupStyle 0x7f020022 -int attr alertDialogCenterButtons 0x7f020023 -int attr alertDialogStyle 0x7f020024 -int attr alertDialogTheme 0x7f020025 -int attr allowStacking 0x7f020026 -int attr alpha 0x7f020027 -int attr alphabeticModifiers 0x7f020028 -int attr arrowHeadLength 0x7f020029 -int attr arrowShaftLength 0x7f02002a -int attr autoCompleteTextViewStyle 0x7f02002b -int attr autoSizeMaxTextSize 0x7f02002c -int attr autoSizeMinTextSize 0x7f02002d -int attr autoSizePresetSizes 0x7f02002e -int attr autoSizeStepGranularity 0x7f02002f -int attr autoSizeTextType 0x7f020030 -int attr background 0x7f020031 -int attr backgroundSplit 0x7f020032 -int attr backgroundStacked 0x7f020033 -int attr backgroundTint 0x7f020034 -int attr backgroundTintMode 0x7f020035 -int attr barLength 0x7f020036 -int attr barrierAllowsGoneWidgets 0x7f020037 -int attr barrierDirection 0x7f020038 -int attr borderlessButtonStyle 0x7f020039 -int attr buttonBarButtonStyle 0x7f02003a -int attr buttonBarNegativeButtonStyle 0x7f02003b -int attr buttonBarNeutralButtonStyle 0x7f02003c -int attr buttonBarPositiveButtonStyle 0x7f02003d -int attr buttonBarStyle 0x7f02003e -int attr buttonGravity 0x7f02003f -int attr buttonPanelSideLayout 0x7f020040 -int attr buttonStyle 0x7f020041 -int attr buttonStyleSmall 0x7f020042 -int attr buttonTint 0x7f020043 -int attr buttonTintMode 0x7f020044 -int attr chainUseRtl 0x7f020045 -int attr checkboxStyle 0x7f020046 -int attr checkedTextViewStyle 0x7f020047 -int attr closeIcon 0x7f020048 -int attr closeItemLayout 0x7f020049 -int attr collapseContentDescription 0x7f02004a -int attr collapseIcon 0x7f02004b -int attr color 0x7f02004c -int attr colorAccent 0x7f02004d -int attr colorBackgroundFloating 0x7f02004e -int attr colorButtonNormal 0x7f02004f -int attr colorControlActivated 0x7f020050 -int attr colorControlHighlight 0x7f020051 -int attr colorControlNormal 0x7f020052 -int attr colorError 0x7f020053 -int attr colorPrimary 0x7f020054 -int attr colorPrimaryDark 0x7f020055 -int attr colorSwitchThumbNormal 0x7f020056 -int attr commitIcon 0x7f020057 -int attr constraintSet 0x7f020058 -int attr constraint_referenced_ids 0x7f020059 -int attr content 0x7f02005a -int attr contentDescription 0x7f02005b -int attr contentInsetEnd 0x7f02005c -int attr contentInsetEndWithActions 0x7f02005d -int attr contentInsetLeft 0x7f02005e -int attr contentInsetRight 0x7f02005f -int attr contentInsetStart 0x7f020060 -int attr contentInsetStartWithNavigation 0x7f020061 -int attr controlBackground 0x7f020062 -int attr customNavigationLayout 0x7f020063 -int attr defaultQueryHint 0x7f020064 -int attr dialogPreferredPadding 0x7f020065 -int attr dialogTheme 0x7f020066 -int attr displayOptions 0x7f020067 -int attr divider 0x7f020068 -int attr dividerHorizontal 0x7f020069 -int attr dividerPadding 0x7f02006a -int attr dividerVertical 0x7f02006b -int attr drawableSize 0x7f02006c -int attr drawerArrowStyle 0x7f02006d -int attr dropDownListViewStyle 0x7f02006e -int attr dropdownListPreferredItemHeight 0x7f02006f -int attr editTextBackground 0x7f020070 -int attr editTextColor 0x7f020071 -int attr editTextStyle 0x7f020072 -int attr elevation 0x7f020073 -int attr emptyVisibility 0x7f020074 -int attr expandActivityOverflowButtonDrawable 0x7f020075 -int attr font 0x7f020076 -int attr fontFamily 0x7f020077 -int attr fontProviderAuthority 0x7f020078 -int attr fontProviderCerts 0x7f020079 -int attr fontProviderFetchStrategy 0x7f02007a -int attr fontProviderFetchTimeout 0x7f02007b -int attr fontProviderPackage 0x7f02007c -int attr fontProviderQuery 0x7f02007d -int attr fontStyle 0x7f02007e -int attr fontWeight 0x7f02007f -int attr gapBetweenBars 0x7f020080 -int attr goIcon 0x7f020081 -int attr height 0x7f020082 -int attr hideOnContentScroll 0x7f020083 -int attr homeAsUpIndicator 0x7f020084 -int attr homeLayout 0x7f020085 -int attr icon 0x7f020086 -int attr iconTint 0x7f020087 -int attr iconTintMode 0x7f020088 -int attr iconifiedByDefault 0x7f020089 -int attr imageButtonStyle 0x7f02008a -int attr indeterminateProgressStyle 0x7f02008b -int attr initialActivityCount 0x7f02008c -int attr isLightTheme 0x7f02008d -int attr itemPadding 0x7f02008e -int attr layout 0x7f02008f -int attr layout_constrainedHeight 0x7f020090 -int attr layout_constrainedWidth 0x7f020091 -int attr layout_constraintBaseline_creator 0x7f020092 -int attr layout_constraintBaseline_toBaselineOf 0x7f020093 -int attr layout_constraintBottom_creator 0x7f020094 -int attr layout_constraintBottom_toBottomOf 0x7f020095 -int attr layout_constraintBottom_toTopOf 0x7f020096 -int attr layout_constraintCircle 0x7f020097 -int attr layout_constraintCircleAngle 0x7f020098 -int attr layout_constraintCircleRadius 0x7f020099 -int attr layout_constraintDimensionRatio 0x7f02009a -int attr layout_constraintEnd_toEndOf 0x7f02009b -int attr layout_constraintEnd_toStartOf 0x7f02009c -int attr layout_constraintGuide_begin 0x7f02009d -int attr layout_constraintGuide_end 0x7f02009e -int attr layout_constraintGuide_percent 0x7f02009f -int attr layout_constraintHeight_default 0x7f0200a0 -int attr layout_constraintHeight_max 0x7f0200a1 -int attr layout_constraintHeight_min 0x7f0200a2 -int attr layout_constraintHeight_percent 0x7f0200a3 -int attr layout_constraintHorizontal_bias 0x7f0200a4 -int attr layout_constraintHorizontal_chainStyle 0x7f0200a5 -int attr layout_constraintHorizontal_weight 0x7f0200a6 -int attr layout_constraintLeft_creator 0x7f0200a7 -int attr layout_constraintLeft_toLeftOf 0x7f0200a8 -int attr layout_constraintLeft_toRightOf 0x7f0200a9 -int attr layout_constraintRight_creator 0x7f0200aa -int attr layout_constraintRight_toLeftOf 0x7f0200ab -int attr layout_constraintRight_toRightOf 0x7f0200ac -int attr layout_constraintStart_toEndOf 0x7f0200ad -int attr layout_constraintStart_toStartOf 0x7f0200ae -int attr layout_constraintTop_creator 0x7f0200af -int attr layout_constraintTop_toBottomOf 0x7f0200b0 -int attr layout_constraintTop_toTopOf 0x7f0200b1 -int attr layout_constraintVertical_bias 0x7f0200b2 -int attr layout_constraintVertical_chainStyle 0x7f0200b3 -int attr layout_constraintVertical_weight 0x7f0200b4 -int attr layout_constraintWidth_default 0x7f0200b5 -int attr layout_constraintWidth_max 0x7f0200b6 -int attr layout_constraintWidth_min 0x7f0200b7 -int attr layout_constraintWidth_percent 0x7f0200b8 -int attr layout_editor_absoluteX 0x7f0200b9 -int attr layout_editor_absoluteY 0x7f0200ba -int attr layout_goneMarginBottom 0x7f0200bb -int attr layout_goneMarginEnd 0x7f0200bc -int attr layout_goneMarginLeft 0x7f0200bd -int attr layout_goneMarginRight 0x7f0200be -int attr layout_goneMarginStart 0x7f0200bf -int attr layout_goneMarginTop 0x7f0200c0 -int attr layout_optimizationLevel 0x7f0200c1 -int attr listChoiceBackgroundIndicator 0x7f0200c2 -int attr listDividerAlertDialog 0x7f0200c3 -int attr listItemLayout 0x7f0200c4 -int attr listLayout 0x7f0200c5 -int attr listMenuViewStyle 0x7f0200c6 -int attr listPopupWindowStyle 0x7f0200c7 -int attr listPreferredItemHeight 0x7f0200c8 -int attr listPreferredItemHeightLarge 0x7f0200c9 -int attr listPreferredItemHeightSmall 0x7f0200ca -int attr listPreferredItemPaddingLeft 0x7f0200cb -int attr listPreferredItemPaddingRight 0x7f0200cc -int attr logo 0x7f0200cd -int attr logoDescription 0x7f0200ce -int attr maxButtonHeight 0x7f0200cf -int attr measureWithLargestChild 0x7f0200d0 -int attr multiChoiceItemLayout 0x7f0200d1 -int attr navigationContentDescription 0x7f0200d2 -int attr navigationIcon 0x7f0200d3 -int attr navigationMode 0x7f0200d4 -int attr numericModifiers 0x7f0200d5 -int attr overlapAnchor 0x7f0200d6 -int attr paddingBottomNoButtons 0x7f0200d7 -int attr paddingEnd 0x7f0200d8 -int attr paddingStart 0x7f0200d9 -int attr paddingTopNoTitle 0x7f0200da -int attr panelBackground 0x7f0200db -int attr panelMenuListTheme 0x7f0200dc -int attr panelMenuListWidth 0x7f0200dd -int attr popupMenuStyle 0x7f0200de -int attr popupTheme 0x7f0200df -int attr popupWindowStyle 0x7f0200e0 -int attr preserveIconSpacing 0x7f0200e1 -int attr progressBarPadding 0x7f0200e2 -int attr progressBarStyle 0x7f0200e3 -int attr queryBackground 0x7f0200e4 -int attr queryHint 0x7f0200e5 -int attr radioButtonStyle 0x7f0200e6 -int attr ratingBarStyle 0x7f0200e7 -int attr ratingBarStyleIndicator 0x7f0200e8 -int attr ratingBarStyleSmall 0x7f0200e9 -int attr searchHintIcon 0x7f0200ea -int attr searchIcon 0x7f0200eb -int attr searchViewStyle 0x7f0200ec -int attr seekBarStyle 0x7f0200ed -int attr selectableItemBackground 0x7f0200ee -int attr selectableItemBackgroundBorderless 0x7f0200ef -int attr showAsAction 0x7f0200f0 -int attr showDividers 0x7f0200f1 -int attr showText 0x7f0200f2 -int attr showTitle 0x7f0200f3 -int attr singleChoiceItemLayout 0x7f0200f4 -int attr spinBars 0x7f0200f5 -int attr spinnerDropDownItemStyle 0x7f0200f6 -int attr spinnerStyle 0x7f0200f7 -int attr splitTrack 0x7f0200f8 -int attr srcCompat 0x7f0200f9 -int attr state_above_anchor 0x7f0200fa -int attr subMenuArrow 0x7f0200fb -int attr submitBackground 0x7f0200fc -int attr subtitle 0x7f0200fd -int attr subtitleTextAppearance 0x7f0200fe -int attr subtitleTextColor 0x7f0200ff -int attr subtitleTextStyle 0x7f020100 -int attr suggestionRowLayout 0x7f020101 -int attr switchMinWidth 0x7f020102 -int attr switchPadding 0x7f020103 -int attr switchStyle 0x7f020104 -int attr switchTextAppearance 0x7f020105 -int attr textAllCaps 0x7f020106 -int attr textAppearanceLargePopupMenu 0x7f020107 -int attr textAppearanceListItem 0x7f020108 -int attr textAppearanceListItemSecondary 0x7f020109 -int attr textAppearanceListItemSmall 0x7f02010a -int attr textAppearancePopupMenuHeader 0x7f02010b -int attr textAppearanceSearchResultSubtitle 0x7f02010c -int attr textAppearanceSearchResultTitle 0x7f02010d -int attr textAppearanceSmallPopupMenu 0x7f02010e -int attr textColorAlertDialogListItem 0x7f02010f -int attr textColorSearchUrl 0x7f020110 -int attr theme 0x7f020111 -int attr thickness 0x7f020112 -int attr thumbTextPadding 0x7f020113 -int attr thumbTint 0x7f020114 -int attr thumbTintMode 0x7f020115 -int attr tickMark 0x7f020116 -int attr tickMarkTint 0x7f020117 -int attr tickMarkTintMode 0x7f020118 -int attr tint 0x7f020119 -int attr tintMode 0x7f02011a -int attr title 0x7f02011b -int attr titleMargin 0x7f02011c -int attr titleMarginBottom 0x7f02011d -int attr titleMarginEnd 0x7f02011e -int attr titleMarginStart 0x7f02011f -int attr titleMarginTop 0x7f020120 -int attr titleMargins 0x7f020121 -int attr titleTextAppearance 0x7f020122 -int attr titleTextColor 0x7f020123 -int attr titleTextStyle 0x7f020124 -int attr toolbarNavigationButtonStyle 0x7f020125 -int attr toolbarStyle 0x7f020126 -int attr tooltipForegroundColor 0x7f020127 -int attr tooltipFrameBackground 0x7f020128 -int attr tooltipText 0x7f020129 -int attr track 0x7f02012a -int attr trackTint 0x7f02012b -int attr trackTintMode 0x7f02012c -int attr voiceIcon 0x7f02012d -int attr windowActionBar 0x7f02012e -int attr windowActionBarOverlay 0x7f02012f -int attr windowActionModeOverlay 0x7f020130 -int attr windowFixedHeightMajor 0x7f020131 -int attr windowFixedHeightMinor 0x7f020132 -int attr windowFixedWidthMajor 0x7f020133 -int attr windowFixedWidthMinor 0x7f020134 -int attr windowMinWidthMajor 0x7f020135 -int attr windowMinWidthMinor 0x7f020136 -int attr windowNoTitle 0x7f020137 -int bool abc_action_bar_embed_tabs 0x7f030000 -int bool abc_allow_stacked_button_bar 0x7f030001 -int bool abc_config_actionMenuItemAllCaps 0x7f030002 -int bool abc_config_closeDialogWhenTouchOutside 0x7f030003 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f030004 -int color abc_background_cache_hint_selector_material_dark 0x7f040000 -int color abc_background_cache_hint_selector_material_light 0x7f040001 -int color abc_btn_colored_borderless_text_material 0x7f040002 -int color abc_btn_colored_text_material 0x7f040003 -int color abc_color_highlight_material 0x7f040004 -int color abc_hint_foreground_material_dark 0x7f040005 -int color abc_hint_foreground_material_light 0x7f040006 -int color abc_input_method_navigation_guard 0x7f040007 -int color abc_primary_text_disable_only_material_dark 0x7f040008 -int color abc_primary_text_disable_only_material_light 0x7f040009 -int color abc_primary_text_material_dark 0x7f04000a -int color abc_primary_text_material_light 0x7f04000b -int color abc_search_url_text 0x7f04000c -int color abc_search_url_text_normal 0x7f04000d -int color abc_search_url_text_pressed 0x7f04000e -int color abc_search_url_text_selected 0x7f04000f -int color abc_secondary_text_material_dark 0x7f040010 -int color abc_secondary_text_material_light 0x7f040011 -int color abc_tint_btn_checkable 0x7f040012 -int color abc_tint_default 0x7f040013 -int color abc_tint_edittext 0x7f040014 -int color abc_tint_seek_thumb 0x7f040015 -int color abc_tint_spinner 0x7f040016 -int color abc_tint_switch_track 0x7f040017 -int color accent_material_dark 0x7f040018 -int color accent_material_light 0x7f040019 -int color background_floating_material_dark 0x7f04001a -int color background_floating_material_light 0x7f04001b -int color background_material_dark 0x7f04001c -int color background_material_light 0x7f04001d -int color bright_foreground_disabled_material_dark 0x7f04001e -int color bright_foreground_disabled_material_light 0x7f04001f -int color bright_foreground_inverse_material_dark 0x7f040020 -int color bright_foreground_inverse_material_light 0x7f040021 -int color bright_foreground_material_dark 0x7f040022 -int color bright_foreground_material_light 0x7f040023 -int color button_material_dark 0x7f040024 -int color button_material_light 0x7f040025 -int color dim_foreground_disabled_material_dark 0x7f040026 -int color dim_foreground_disabled_material_light 0x7f040027 -int color dim_foreground_material_dark 0x7f040028 -int color dim_foreground_material_light 0x7f040029 -int color error_color_material 0x7f04002a -int color foreground_material_dark 0x7f04002b -int color foreground_material_light 0x7f04002c -int color highlighted_text_material_dark 0x7f04002d -int color highlighted_text_material_light 0x7f04002e -int color material_blue_grey_800 0x7f04002f -int color material_blue_grey_900 0x7f040030 -int color material_blue_grey_950 0x7f040031 -int color material_deep_teal_200 0x7f040032 -int color material_deep_teal_500 0x7f040033 -int color material_grey_100 0x7f040034 -int color material_grey_300 0x7f040035 -int color material_grey_50 0x7f040036 -int color material_grey_600 0x7f040037 -int color material_grey_800 0x7f040038 -int color material_grey_850 0x7f040039 -int color material_grey_900 0x7f04003a -int color notification_action_color_filter 0x7f04003b -int color notification_icon_bg_color 0x7f04003c -int color notification_material_background_media_default_color 0x7f04003d -int color primary_dark_material_dark 0x7f04003e -int color primary_dark_material_light 0x7f04003f -int color primary_material_dark 0x7f040040 -int color primary_material_light 0x7f040041 -int color primary_text_default_material_dark 0x7f040042 -int color primary_text_default_material_light 0x7f040043 -int color primary_text_disabled_material_dark 0x7f040044 -int color primary_text_disabled_material_light 0x7f040045 -int color ripple_material_dark 0x7f040046 -int color ripple_material_light 0x7f040047 -int color secondary_text_default_material_dark 0x7f040048 -int color secondary_text_default_material_light 0x7f040049 -int color secondary_text_disabled_material_dark 0x7f04004a -int color secondary_text_disabled_material_light 0x7f04004b -int color switch_thumb_disabled_material_dark 0x7f04004c -int color switch_thumb_disabled_material_light 0x7f04004d -int color switch_thumb_material_dark 0x7f04004e -int color switch_thumb_material_light 0x7f04004f -int color switch_thumb_normal_material_dark 0x7f040050 -int color switch_thumb_normal_material_light 0x7f040051 -int color tooltip_background_dark 0x7f040052 -int color tooltip_background_light 0x7f040053 -int dimen abc_action_bar_content_inset_material 0x7f050000 -int dimen abc_action_bar_content_inset_with_nav 0x7f050001 -int dimen abc_action_bar_default_height_material 0x7f050002 -int dimen abc_action_bar_default_padding_end_material 0x7f050003 -int dimen abc_action_bar_default_padding_start_material 0x7f050004 -int dimen abc_action_bar_elevation_material 0x7f050005 -int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006 -int dimen abc_action_bar_overflow_padding_end_material 0x7f050007 -int dimen abc_action_bar_overflow_padding_start_material 0x7f050008 -int dimen abc_action_bar_progress_bar_size 0x7f050009 -int dimen abc_action_bar_stacked_max_height 0x7f05000a -int dimen abc_action_bar_stacked_tab_max_width 0x7f05000b -int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000c -int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000d -int dimen abc_action_button_min_height_material 0x7f05000e -int dimen abc_action_button_min_width_material 0x7f05000f -int dimen abc_action_button_min_width_overflow_material 0x7f050010 -int dimen abc_alert_dialog_button_bar_height 0x7f050011 -int dimen abc_button_inset_horizontal_material 0x7f050012 -int dimen abc_button_inset_vertical_material 0x7f050013 -int dimen abc_button_padding_horizontal_material 0x7f050014 -int dimen abc_button_padding_vertical_material 0x7f050015 -int dimen abc_cascading_menus_min_smallest_width 0x7f050016 -int dimen abc_config_prefDialogWidth 0x7f050017 -int dimen abc_control_corner_material 0x7f050018 -int dimen abc_control_inset_material 0x7f050019 -int dimen abc_control_padding_material 0x7f05001a -int dimen abc_dialog_fixed_height_major 0x7f05001b -int dimen abc_dialog_fixed_height_minor 0x7f05001c -int dimen abc_dialog_fixed_width_major 0x7f05001d -int dimen abc_dialog_fixed_width_minor 0x7f05001e -int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f05001f -int dimen abc_dialog_list_padding_top_no_title 0x7f050020 -int dimen abc_dialog_min_width_major 0x7f050021 -int dimen abc_dialog_min_width_minor 0x7f050022 -int dimen abc_dialog_padding_material 0x7f050023 -int dimen abc_dialog_padding_top_material 0x7f050024 -int dimen abc_dialog_title_divider_material 0x7f050025 -int dimen abc_disabled_alpha_material_dark 0x7f050026 -int dimen abc_disabled_alpha_material_light 0x7f050027 -int dimen abc_dropdownitem_icon_width 0x7f050028 -int dimen abc_dropdownitem_text_padding_left 0x7f050029 -int dimen abc_dropdownitem_text_padding_right 0x7f05002a -int dimen abc_edit_text_inset_bottom_material 0x7f05002b -int dimen abc_edit_text_inset_horizontal_material 0x7f05002c -int dimen abc_edit_text_inset_top_material 0x7f05002d -int dimen abc_floating_window_z 0x7f05002e -int dimen abc_list_item_padding_horizontal_material 0x7f05002f -int dimen abc_panel_menu_list_width 0x7f050030 -int dimen abc_progress_bar_height_material 0x7f050031 -int dimen abc_search_view_preferred_height 0x7f050032 -int dimen abc_search_view_preferred_width 0x7f050033 -int dimen abc_seekbar_track_background_height_material 0x7f050034 -int dimen abc_seekbar_track_progress_height_material 0x7f050035 -int dimen abc_select_dialog_padding_start_material 0x7f050036 -int dimen abc_switch_padding 0x7f050037 -int dimen abc_text_size_body_1_material 0x7f050038 -int dimen abc_text_size_body_2_material 0x7f050039 -int dimen abc_text_size_button_material 0x7f05003a -int dimen abc_text_size_caption_material 0x7f05003b -int dimen abc_text_size_display_1_material 0x7f05003c -int dimen abc_text_size_display_2_material 0x7f05003d -int dimen abc_text_size_display_3_material 0x7f05003e -int dimen abc_text_size_display_4_material 0x7f05003f -int dimen abc_text_size_headline_material 0x7f050040 -int dimen abc_text_size_large_material 0x7f050041 -int dimen abc_text_size_medium_material 0x7f050042 -int dimen abc_text_size_menu_header_material 0x7f050043 -int dimen abc_text_size_menu_material 0x7f050044 -int dimen abc_text_size_small_material 0x7f050045 -int dimen abc_text_size_subhead_material 0x7f050046 -int dimen abc_text_size_subtitle_material_toolbar 0x7f050047 -int dimen abc_text_size_title_material 0x7f050048 -int dimen abc_text_size_title_material_toolbar 0x7f050049 -int dimen compat_button_inset_horizontal_material 0x7f05004a -int dimen compat_button_inset_vertical_material 0x7f05004b -int dimen compat_button_padding_horizontal_material 0x7f05004c -int dimen compat_button_padding_vertical_material 0x7f05004d -int dimen compat_control_corner_material 0x7f05004e -int dimen disabled_alpha_material_dark 0x7f05004f -int dimen disabled_alpha_material_light 0x7f050050 -int dimen highlight_alpha_material_colored 0x7f050051 -int dimen highlight_alpha_material_dark 0x7f050052 -int dimen highlight_alpha_material_light 0x7f050053 -int dimen hint_alpha_material_dark 0x7f050054 -int dimen hint_alpha_material_light 0x7f050055 -int dimen hint_pressed_alpha_material_dark 0x7f050056 -int dimen hint_pressed_alpha_material_light 0x7f050057 -int dimen notification_action_icon_size 0x7f050058 -int dimen notification_action_text_size 0x7f050059 -int dimen notification_big_circle_margin 0x7f05005a -int dimen notification_content_margin_start 0x7f05005b -int dimen notification_large_icon_height 0x7f05005c -int dimen notification_large_icon_width 0x7f05005d -int dimen notification_main_column_padding_top 0x7f05005e -int dimen notification_media_narrow_margin 0x7f05005f -int dimen notification_right_icon_size 0x7f050060 -int dimen notification_right_side_padding_top 0x7f050061 -int dimen notification_small_icon_background_padding 0x7f050062 -int dimen notification_small_icon_size_as_large 0x7f050063 -int dimen notification_subtext_size 0x7f050064 -int dimen notification_top_pad 0x7f050065 -int dimen notification_top_pad_large_text 0x7f050066 -int dimen tooltip_corner_radius 0x7f050067 -int dimen tooltip_horizontal_padding 0x7f050068 -int dimen tooltip_margin 0x7f050069 -int dimen tooltip_precise_anchor_extra_offset 0x7f05006a -int dimen tooltip_precise_anchor_threshold 0x7f05006b -int dimen tooltip_vertical_padding 0x7f05006c -int dimen tooltip_y_offset_non_touch 0x7f05006d -int dimen tooltip_y_offset_touch 0x7f05006e -int drawable abc_ab_share_pack_mtrl_alpha 0x7f060000 -int drawable abc_action_bar_item_background_material 0x7f060001 -int drawable abc_btn_borderless_material 0x7f060002 -int drawable abc_btn_check_material 0x7f060003 -int drawable abc_btn_check_to_on_mtrl_000 0x7f060004 -int drawable abc_btn_check_to_on_mtrl_015 0x7f060005 -int drawable abc_btn_colored_material 0x7f060006 -int drawable abc_btn_default_mtrl_shape 0x7f060007 -int drawable abc_btn_radio_material 0x7f060008 -int drawable abc_btn_radio_to_on_mtrl_000 0x7f060009 -int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000a -int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000b -int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000c -int drawable abc_cab_background_internal_bg 0x7f06000d -int drawable abc_cab_background_top_material 0x7f06000e -int drawable abc_cab_background_top_mtrl_alpha 0x7f06000f -int drawable abc_control_background_material 0x7f060010 -int drawable abc_dialog_material_background 0x7f060011 -int drawable abc_edit_text_material 0x7f060012 -int drawable abc_ic_ab_back_material 0x7f060013 -int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060014 -int drawable abc_ic_clear_material 0x7f060015 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060016 -int drawable abc_ic_go_search_api_material 0x7f060017 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060018 -int drawable abc_ic_menu_cut_mtrl_alpha 0x7f060019 -int drawable abc_ic_menu_overflow_material 0x7f06001a -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001b -int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001c -int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001d -int drawable abc_ic_search_api_material 0x7f06001e -int drawable abc_ic_star_black_16dp 0x7f06001f -int drawable abc_ic_star_black_36dp 0x7f060020 -int drawable abc_ic_star_black_48dp 0x7f060021 -int drawable abc_ic_star_half_black_16dp 0x7f060022 -int drawable abc_ic_star_half_black_36dp 0x7f060023 -int drawable abc_ic_star_half_black_48dp 0x7f060024 -int drawable abc_ic_voice_search_api_material 0x7f060025 -int drawable abc_item_background_holo_dark 0x7f060026 -int drawable abc_item_background_holo_light 0x7f060027 -int drawable abc_list_divider_mtrl_alpha 0x7f060028 -int drawable abc_list_focused_holo 0x7f060029 -int drawable abc_list_longpressed_holo 0x7f06002a -int drawable abc_list_pressed_holo_dark 0x7f06002b -int drawable abc_list_pressed_holo_light 0x7f06002c -int drawable abc_list_selector_background_transition_holo_dark 0x7f06002d -int drawable abc_list_selector_background_transition_holo_light 0x7f06002e -int drawable abc_list_selector_disabled_holo_dark 0x7f06002f -int drawable abc_list_selector_disabled_holo_light 0x7f060030 -int drawable abc_list_selector_holo_dark 0x7f060031 -int drawable abc_list_selector_holo_light 0x7f060032 -int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060033 -int drawable abc_popup_background_mtrl_mult 0x7f060034 -int drawable abc_ratingbar_indicator_material 0x7f060035 -int drawable abc_ratingbar_material 0x7f060036 -int drawable abc_ratingbar_small_material 0x7f060037 -int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060038 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f060039 -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003a -int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003b -int drawable abc_scrubber_track_mtrl_alpha 0x7f06003c -int drawable abc_seekbar_thumb_material 0x7f06003d -int drawable abc_seekbar_tick_mark_material 0x7f06003e -int drawable abc_seekbar_track_material 0x7f06003f -int drawable abc_spinner_mtrl_am_alpha 0x7f060040 -int drawable abc_spinner_textfield_background_material 0x7f060041 -int drawable abc_switch_thumb_material 0x7f060042 -int drawable abc_switch_track_mtrl_alpha 0x7f060043 -int drawable abc_tab_indicator_material 0x7f060044 -int drawable abc_tab_indicator_mtrl_alpha 0x7f060045 -int drawable abc_text_cursor_material 0x7f060046 -int drawable abc_text_select_handle_left_mtrl_dark 0x7f060047 -int drawable abc_text_select_handle_left_mtrl_light 0x7f060048 -int drawable abc_text_select_handle_middle_mtrl_dark 0x7f060049 -int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004a -int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004b -int drawable abc_text_select_handle_right_mtrl_light 0x7f06004c -int drawable abc_textfield_activated_mtrl_alpha 0x7f06004d -int drawable abc_textfield_default_mtrl_alpha 0x7f06004e -int drawable abc_textfield_search_activated_mtrl_alpha 0x7f06004f -int drawable abc_textfield_search_default_mtrl_alpha 0x7f060050 -int drawable abc_textfield_search_material 0x7f060051 -int drawable abc_vector_test 0x7f060052 -int drawable notification_action_background 0x7f060053 -int drawable notification_bg 0x7f060054 -int drawable notification_bg_low 0x7f060055 -int drawable notification_bg_low_normal 0x7f060056 -int drawable notification_bg_low_pressed 0x7f060057 -int drawable notification_bg_normal 0x7f060058 -int drawable notification_bg_normal_pressed 0x7f060059 -int drawable notification_icon_background 0x7f06005a -int drawable notification_template_icon_bg 0x7f06005b -int drawable notification_template_icon_low_bg 0x7f06005c -int drawable notification_tile_bg 0x7f06005d -int drawable notify_panel_notification_icon_bg 0x7f06005e -int drawable tooltip_frame_dark 0x7f06005f -int drawable tooltip_frame_light 0x7f060060 -int id ALT 0x7f070000 -int id CTRL 0x7f070001 -int id FUNCTION 0x7f070002 -int id META 0x7f070003 -int id SHIFT 0x7f070004 -int id SYM 0x7f070005 -int id action0 0x7f070006 -int id action_bar 0x7f070007 -int id action_bar_activity_content 0x7f070008 -int id action_bar_container 0x7f070009 -int id action_bar_root 0x7f07000a -int id action_bar_spinner 0x7f07000b -int id action_bar_subtitle 0x7f07000c -int id action_bar_title 0x7f07000d -int id action_container 0x7f07000e -int id action_context_bar 0x7f07000f -int id action_divider 0x7f070010 -int id action_image 0x7f070011 -int id action_menu_divider 0x7f070012 -int id action_menu_presenter 0x7f070013 -int id action_mode_bar 0x7f070014 -int id action_mode_bar_stub 0x7f070015 -int id action_mode_close_button 0x7f070016 -int id action_text 0x7f070017 -int id actions 0x7f070018 -int id activity_chooser_view_content 0x7f070019 -int id add 0x7f07001a -int id alertTitle 0x7f07001b -int id always 0x7f07001c -int id async 0x7f07001d -int id barrier 0x7f07001e -int id beginning 0x7f07001f -int id blocking 0x7f070020 -int id bottom 0x7f070021 -int id buttonPanel 0x7f070022 -int id cancel_action 0x7f070023 -int id chains 0x7f070024 -int id checkbox 0x7f070025 -int id chronometer 0x7f070026 -int id collapseActionView 0x7f070027 -int id contentPanel 0x7f070028 -int id custom 0x7f070029 -int id customPanel 0x7f07002a -int id decor_content_parent 0x7f07002b -int id default_activity_button 0x7f07002c -int id dimensions 0x7f07002d -int id direct 0x7f07002e -int id disableHome 0x7f07002f -int id edit_query 0x7f070030 -int id end 0x7f070031 -int id end_padder 0x7f070032 -int id expand_activities_button 0x7f070033 -int id expanded_menu 0x7f070034 -int id forever 0x7f070035 -int id gone 0x7f070036 -int id home 0x7f070037 -int id homeAsUp 0x7f070038 -int id icon 0x7f070039 -int id icon_group 0x7f07003a -int id ifRoom 0x7f07003b -int id image 0x7f07003c -int id info 0x7f07003d -int id invisible 0x7f07003e -int id italic 0x7f07003f -int id left 0x7f070040 -int id line1 0x7f070041 -int id line3 0x7f070042 -int id listMode 0x7f070043 -int id list_item 0x7f070044 -int id media_actions 0x7f070045 -int id message 0x7f070046 -int id middle 0x7f070047 -int id multiply 0x7f070048 -int id never 0x7f070049 -int id none 0x7f07004a -int id normal 0x7f07004b -int id notification_background 0x7f07004c -int id notification_main_column 0x7f07004d -int id notification_main_column_container 0x7f07004e -int id packed 0x7f07004f -int id parent 0x7f070050 -int id parentPanel 0x7f070051 -int id percent 0x7f070052 -int id progress_circular 0x7f070053 -int id progress_horizontal 0x7f070054 -int id radio 0x7f070055 -int id right 0x7f070056 -int id right_icon 0x7f070057 -int id right_side 0x7f070058 -int id screen 0x7f070059 -int id scrollIndicatorDown 0x7f07005a -int id scrollIndicatorUp 0x7f07005b -int id scrollView 0x7f07005c -int id search_badge 0x7f07005d -int id search_bar 0x7f07005e -int id search_button 0x7f07005f -int id search_close_btn 0x7f070060 -int id search_edit_frame 0x7f070061 -int id search_go_btn 0x7f070062 -int id search_mag_icon 0x7f070063 -int id search_plate 0x7f070064 -int id search_src_text 0x7f070065 -int id search_voice_btn 0x7f070066 -int id select_dialog_listview 0x7f070067 -int id shortcut 0x7f070068 -int id showCustom 0x7f070069 -int id showHome 0x7f07006a -int id showTitle 0x7f07006b -int id spacer 0x7f07006c -int id split_action_bar 0x7f07006d -int id spread 0x7f07006e -int id spread_inside 0x7f07006f -int id src_atop 0x7f070070 -int id src_in 0x7f070071 -int id src_over 0x7f070072 -int id standard 0x7f070073 -int id start 0x7f070074 -int id status_bar_latest_event_content 0x7f070075 -int id submenuarrow 0x7f070076 -int id submit_area 0x7f070077 -int id tabMode 0x7f070078 -int id text 0x7f070079 -int id text2 0x7f07007a -int id textSpacerNoButtons 0x7f07007b -int id textSpacerNoTitle 0x7f07007c -int id time 0x7f07007d -int id title 0x7f07007e -int id titleDividerNoCustom 0x7f07007f -int id title_template 0x7f070080 -int id top 0x7f070081 -int id topPanel 0x7f070082 -int id uniform 0x7f070083 -int id up 0x7f070084 -int id useLogo 0x7f070085 -int id withText 0x7f070086 -int id wrap 0x7f070087 -int id wrap_content 0x7f070088 -int integer abc_config_activityDefaultDur 0x7f080000 -int integer abc_config_activityShortDur 0x7f080001 -int integer cancel_button_image_alpha 0x7f080002 -int integer config_tooltipAnimTime 0x7f080003 -int integer status_bar_notification_info_maxnum 0x7f080004 -int layout abc_action_bar_title_item 0x7f090000 -int layout abc_action_bar_up_container 0x7f090001 -int layout abc_action_bar_view_list_nav_layout 0x7f090002 -int layout abc_action_menu_item_layout 0x7f090003 -int layout abc_action_menu_layout 0x7f090004 -int layout abc_action_mode_bar 0x7f090005 -int layout abc_action_mode_close_item_material 0x7f090006 -int layout abc_activity_chooser_view 0x7f090007 -int layout abc_activity_chooser_view_list_item 0x7f090008 -int layout abc_alert_dialog_button_bar_material 0x7f090009 -int layout abc_alert_dialog_material 0x7f09000a -int layout abc_alert_dialog_title_material 0x7f09000b -int layout abc_dialog_title_material 0x7f09000c -int layout abc_expanded_menu_layout 0x7f09000d -int layout abc_list_menu_item_checkbox 0x7f09000e -int layout abc_list_menu_item_icon 0x7f09000f -int layout abc_list_menu_item_layout 0x7f090010 -int layout abc_list_menu_item_radio 0x7f090011 -int layout abc_popup_menu_header_item_layout 0x7f090012 -int layout abc_popup_menu_item_layout 0x7f090013 -int layout abc_screen_content_include 0x7f090014 -int layout abc_screen_simple 0x7f090015 -int layout abc_screen_simple_overlay_action_mode 0x7f090016 -int layout abc_screen_toolbar 0x7f090017 -int layout abc_search_dropdown_item_icons_2line 0x7f090018 -int layout abc_search_view 0x7f090019 -int layout abc_select_dialog_material 0x7f09001a -int layout notification_action 0x7f09001b -int layout notification_action_tombstone 0x7f09001c -int layout notification_media_action 0x7f09001d -int layout notification_media_cancel_action 0x7f09001e -int layout notification_template_big_media 0x7f09001f -int layout notification_template_big_media_custom 0x7f090020 -int layout notification_template_big_media_narrow 0x7f090021 -int layout notification_template_big_media_narrow_custom 0x7f090022 -int layout notification_template_custom_big 0x7f090023 -int layout notification_template_icon_group 0x7f090024 -int layout notification_template_lines_media 0x7f090025 -int layout notification_template_media 0x7f090026 -int layout notification_template_media_custom 0x7f090027 -int layout notification_template_part_chronometer 0x7f090028 -int layout notification_template_part_time 0x7f090029 -int layout select_dialog_item_material 0x7f09002a -int layout select_dialog_multichoice_material 0x7f09002b -int layout select_dialog_singlechoice_material 0x7f09002c -int layout support_simple_spinner_dropdown_item 0x7f09002d -int layout tooltip 0x7f09002e -int string abc_action_bar_home_description 0x7f0a0000 -int string abc_action_bar_home_description_format 0x7f0a0001 -int string abc_action_bar_home_subtitle_description_format 0x7f0a0002 -int string abc_action_bar_up_description 0x7f0a0003 -int string abc_action_menu_overflow_description 0x7f0a0004 -int string abc_action_mode_done 0x7f0a0005 -int string abc_activity_chooser_view_see_all 0x7f0a0006 -int string abc_activitychooserview_choose_application 0x7f0a0007 -int string abc_capital_off 0x7f0a0008 -int string abc_capital_on 0x7f0a0009 -int string abc_font_family_body_1_material 0x7f0a000a -int string abc_font_family_body_2_material 0x7f0a000b -int string abc_font_family_button_material 0x7f0a000c -int string abc_font_family_caption_material 0x7f0a000d -int string abc_font_family_display_1_material 0x7f0a000e -int string abc_font_family_display_2_material 0x7f0a000f -int string abc_font_family_display_3_material 0x7f0a0010 -int string abc_font_family_display_4_material 0x7f0a0011 -int string abc_font_family_headline_material 0x7f0a0012 -int string abc_font_family_menu_material 0x7f0a0013 -int string abc_font_family_subhead_material 0x7f0a0014 -int string abc_font_family_title_material 0x7f0a0015 -int string abc_search_hint 0x7f0a0016 -int string abc_searchview_description_clear 0x7f0a0017 -int string abc_searchview_description_query 0x7f0a0018 -int string abc_searchview_description_search 0x7f0a0019 -int string abc_searchview_description_submit 0x7f0a001a -int string abc_searchview_description_voice 0x7f0a001b -int string abc_shareactionprovider_share_with 0x7f0a001c -int string abc_shareactionprovider_share_with_application 0x7f0a001d -int string abc_toolbar_collapse_description 0x7f0a001e -int string search_menu_title 0x7f0a001f -int string status_bar_notification_info_overflow 0x7f0a0020 -int style AlertDialog_AppCompat 0x7f0b0000 -int style AlertDialog_AppCompat_Light 0x7f0b0001 -int style Animation_AppCompat_Dialog 0x7f0b0002 -int style Animation_AppCompat_DropDownUp 0x7f0b0003 -int style Animation_AppCompat_Tooltip 0x7f0b0004 -int style Base_AlertDialog_AppCompat 0x7f0b0005 -int style Base_AlertDialog_AppCompat_Light 0x7f0b0006 -int style Base_Animation_AppCompat_Dialog 0x7f0b0007 -int style Base_Animation_AppCompat_DropDownUp 0x7f0b0008 -int style Base_Animation_AppCompat_Tooltip 0x7f0b0009 -int style Base_DialogWindowTitle_AppCompat 0x7f0b000a -int style Base_DialogWindowTitleBackground_AppCompat 0x7f0b000b -int style Base_TextAppearance_AppCompat 0x7f0b000c -int style Base_TextAppearance_AppCompat_Body1 0x7f0b000d -int style Base_TextAppearance_AppCompat_Body2 0x7f0b000e -int style Base_TextAppearance_AppCompat_Button 0x7f0b000f -int style Base_TextAppearance_AppCompat_Caption 0x7f0b0010 -int style Base_TextAppearance_AppCompat_Display1 0x7f0b0011 -int style Base_TextAppearance_AppCompat_Display2 0x7f0b0012 -int style Base_TextAppearance_AppCompat_Display3 0x7f0b0013 -int style Base_TextAppearance_AppCompat_Display4 0x7f0b0014 -int style Base_TextAppearance_AppCompat_Headline 0x7f0b0015 -int style Base_TextAppearance_AppCompat_Inverse 0x7f0b0016 -int style Base_TextAppearance_AppCompat_Large 0x7f0b0017 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b0018 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0019 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b001a -int style Base_TextAppearance_AppCompat_Medium 0x7f0b001b -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b001c -int style Base_TextAppearance_AppCompat_Menu 0x7f0b001d -int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b001e -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b001f -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b0020 -int style Base_TextAppearance_AppCompat_Small 0x7f0b0021 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b0022 -int style Base_TextAppearance_AppCompat_Subhead 0x7f0b0023 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0024 -int style Base_TextAppearance_AppCompat_Title 0x7f0b0025 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b0026 -int style Base_TextAppearance_AppCompat_Tooltip 0x7f0b0027 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0028 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0029 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b002a -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b002b -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b002c -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b002d -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b002e -int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0b002f -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b0030 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b0031 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b0032 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0033 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b0034 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0035 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0036 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b0037 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b0038 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0039 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b003a -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b003b -int style Base_Theme_AppCompat 0x7f0b003c -int style Base_Theme_AppCompat_CompactMenu 0x7f0b003d -int style Base_Theme_AppCompat_Dialog 0x7f0b003e -int style Base_Theme_AppCompat_Dialog_Alert 0x7f0b003f -int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b0040 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0b0041 -int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b0042 -int style Base_Theme_AppCompat_Light 0x7f0b0043 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b0044 -int style Base_Theme_AppCompat_Light_Dialog 0x7f0b0045 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0b0046 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b0047 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0048 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0049 -int style Base_ThemeOverlay_AppCompat 0x7f0b004a -int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b004b -int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b004c -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b004d -int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0b004e -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b004f -int style Base_ThemeOverlay_AppCompat_Light 0x7f0b0050 -int style Base_V11_Theme_AppCompat_Dialog 0x7f0b0051 -int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0b0052 -int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f0b0053 -int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0b0054 -int style Base_V12_Widget_AppCompat_EditText 0x7f0b0055 -int style Base_V21_Theme_AppCompat 0x7f0b0056 -int style Base_V21_Theme_AppCompat_Dialog 0x7f0b0057 -int style Base_V21_Theme_AppCompat_Light 0x7f0b0058 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b0059 -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0b005a -int style Base_V22_Theme_AppCompat 0x7f0b005b -int style Base_V22_Theme_AppCompat_Light 0x7f0b005c -int style Base_V23_Theme_AppCompat 0x7f0b005d -int style Base_V23_Theme_AppCompat_Light 0x7f0b005e -int style Base_V26_Theme_AppCompat 0x7f0b005f -int style Base_V26_Theme_AppCompat_Light 0x7f0b0060 -int style Base_V26_Widget_AppCompat_Toolbar 0x7f0b0061 -int style Base_V7_Theme_AppCompat 0x7f0b0062 -int style Base_V7_Theme_AppCompat_Dialog 0x7f0b0063 -int style Base_V7_Theme_AppCompat_Light 0x7f0b0064 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0b0065 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0b0066 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0b0067 -int style Base_V7_Widget_AppCompat_EditText 0x7f0b0068 -int style Base_V7_Widget_AppCompat_Toolbar 0x7f0b0069 -int style Base_Widget_AppCompat_ActionBar 0x7f0b006a -int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b006b -int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b006c -int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b006d -int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b006e -int style Base_Widget_AppCompat_ActionButton 0x7f0b006f -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0070 -int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0071 -int style Base_Widget_AppCompat_ActionMode 0x7f0b0072 -int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b0073 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b0074 -int style Base_Widget_AppCompat_Button 0x7f0b0075 -int style Base_Widget_AppCompat_Button_Borderless 0x7f0b0076 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0b0077 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0078 -int style Base_Widget_AppCompat_Button_Colored 0x7f0b0079 -int style Base_Widget_AppCompat_Button_Small 0x7f0b007a -int style Base_Widget_AppCompat_ButtonBar 0x7f0b007b -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b007c -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0b007d -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0b007e -int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b007f -int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b0080 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0b0081 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b0082 -int style Base_Widget_AppCompat_EditText 0x7f0b0083 -int style Base_Widget_AppCompat_ImageButton 0x7f0b0084 -int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0085 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0086 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0087 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0088 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0089 -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b008a -int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b008b -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b008c -int style Base_Widget_AppCompat_ListMenuView 0x7f0b008d -int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b008e -int style Base_Widget_AppCompat_ListView 0x7f0b008f -int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b0090 -int style Base_Widget_AppCompat_ListView_Menu 0x7f0b0091 -int style Base_Widget_AppCompat_PopupMenu 0x7f0b0092 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b0093 -int style Base_Widget_AppCompat_PopupWindow 0x7f0b0094 -int style Base_Widget_AppCompat_ProgressBar 0x7f0b0095 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0096 -int style Base_Widget_AppCompat_RatingBar 0x7f0b0097 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0b0098 -int style Base_Widget_AppCompat_RatingBar_Small 0x7f0b0099 -int style Base_Widget_AppCompat_SearchView 0x7f0b009a -int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0b009b -int style Base_Widget_AppCompat_SeekBar 0x7f0b009c -int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0b009d -int style Base_Widget_AppCompat_Spinner 0x7f0b009e -int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0b009f -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0b00a0 -int style Base_Widget_AppCompat_Toolbar 0x7f0b00a1 -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b00a2 -int style Platform_AppCompat 0x7f0b00a3 -int style Platform_AppCompat_Light 0x7f0b00a4 -int style Platform_ThemeOverlay_AppCompat 0x7f0b00a5 -int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0b00a6 -int style Platform_ThemeOverlay_AppCompat_Light 0x7f0b00a7 -int style Platform_V11_AppCompat 0x7f0b00a8 -int style Platform_V11_AppCompat_Light 0x7f0b00a9 -int style Platform_V14_AppCompat 0x7f0b00aa -int style Platform_V14_AppCompat_Light 0x7f0b00ab -int style Platform_V21_AppCompat 0x7f0b00ac -int style Platform_V21_AppCompat_Light 0x7f0b00ad -int style Platform_V25_AppCompat 0x7f0b00ae -int style Platform_V25_AppCompat_Light 0x7f0b00af -int style Platform_Widget_AppCompat_Spinner 0x7f0b00b0 -int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0b00b1 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00b2 -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0b00b3 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00b4 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00b5 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00b6 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00b7 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00b8 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00b9 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00ba -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00bb -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00bc -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0b00bd -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00be -int style TextAppearance_AppCompat 0x7f0b00bf -int style TextAppearance_AppCompat_Body1 0x7f0b00c0 -int style TextAppearance_AppCompat_Body2 0x7f0b00c1 -int style TextAppearance_AppCompat_Button 0x7f0b00c2 -int style TextAppearance_AppCompat_Caption 0x7f0b00c3 -int style TextAppearance_AppCompat_Display1 0x7f0b00c4 -int style TextAppearance_AppCompat_Display2 0x7f0b00c5 -int style TextAppearance_AppCompat_Display3 0x7f0b00c6 -int style TextAppearance_AppCompat_Display4 0x7f0b00c7 -int style TextAppearance_AppCompat_Headline 0x7f0b00c8 -int style TextAppearance_AppCompat_Inverse 0x7f0b00c9 -int style TextAppearance_AppCompat_Large 0x7f0b00ca -int style TextAppearance_AppCompat_Large_Inverse 0x7f0b00cb -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b00cc -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b00cd -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b00ce -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b00cf -int style TextAppearance_AppCompat_Medium 0x7f0b00d0 -int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b00d1 -int style TextAppearance_AppCompat_Menu 0x7f0b00d2 -int style TextAppearance_AppCompat_Notification 0x7f0b00d3 -int style TextAppearance_AppCompat_Notification_Info 0x7f0b00d4 -int style TextAppearance_AppCompat_Notification_Info_Media 0x7f0b00d5 -int style TextAppearance_AppCompat_Notification_Line2 0x7f0b00d6 -int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0b00d7 -int style TextAppearance_AppCompat_Notification_Media 0x7f0b00d8 -int style TextAppearance_AppCompat_Notification_Time 0x7f0b00d9 -int style TextAppearance_AppCompat_Notification_Time_Media 0x7f0b00da -int style TextAppearance_AppCompat_Notification_Title 0x7f0b00db -int style TextAppearance_AppCompat_Notification_Title_Media 0x7f0b00dc -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b00dd -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b00de -int style TextAppearance_AppCompat_Small 0x7f0b00df -int style TextAppearance_AppCompat_Small_Inverse 0x7f0b00e0 -int style TextAppearance_AppCompat_Subhead 0x7f0b00e1 -int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00e2 -int style TextAppearance_AppCompat_Title 0x7f0b00e3 -int style TextAppearance_AppCompat_Title_Inverse 0x7f0b00e4 -int style TextAppearance_AppCompat_Tooltip 0x7f0b00e5 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b00e6 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b00e7 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b00e8 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b00e9 -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b00ea -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b00eb -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b00ec -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b00ed -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b00ee -int style TextAppearance_AppCompat_Widget_Button 0x7f0b00ef -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b00f0 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b00f1 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b00f2 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b00f3 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b00f4 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b00f5 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b00f6 -int style TextAppearance_AppCompat_Widget_Switch 0x7f0b00f7 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b00f8 -int style TextAppearance_Compat_Notification 0x7f0b00f9 -int style TextAppearance_Compat_Notification_Info 0x7f0b00fa -int style TextAppearance_Compat_Notification_Info_Media 0x7f0b00fb -int style TextAppearance_Compat_Notification_Line2 0x7f0b00fc -int style TextAppearance_Compat_Notification_Line2_Media 0x7f0b00fd -int style TextAppearance_Compat_Notification_Media 0x7f0b00fe -int style TextAppearance_Compat_Notification_Time 0x7f0b00ff -int style TextAppearance_Compat_Notification_Time_Media 0x7f0b0100 -int style TextAppearance_Compat_Notification_Title 0x7f0b0101 -int style TextAppearance_Compat_Notification_Title_Media 0x7f0b0102 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0103 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0104 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0105 -int style Theme_AppCompat 0x7f0b0106 -int style Theme_AppCompat_CompactMenu 0x7f0b0107 -int style Theme_AppCompat_DayNight 0x7f0b0108 -int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0b0109 -int style Theme_AppCompat_DayNight_Dialog 0x7f0b010a -int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0b010b -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0b010c -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0b010d -int style Theme_AppCompat_DayNight_NoActionBar 0x7f0b010e -int style Theme_AppCompat_Dialog 0x7f0b010f -int style Theme_AppCompat_Dialog_Alert 0x7f0b0110 -int style Theme_AppCompat_Dialog_MinWidth 0x7f0b0111 -int style Theme_AppCompat_DialogWhenLarge 0x7f0b0112 -int style Theme_AppCompat_Light 0x7f0b0113 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0114 -int style Theme_AppCompat_Light_Dialog 0x7f0b0115 -int style Theme_AppCompat_Light_Dialog_Alert 0x7f0b0116 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0117 -int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0118 -int style Theme_AppCompat_Light_NoActionBar 0x7f0b0119 -int style Theme_AppCompat_NoActionBar 0x7f0b011a -int style ThemeOverlay_AppCompat 0x7f0b011b -int style ThemeOverlay_AppCompat_ActionBar 0x7f0b011c -int style ThemeOverlay_AppCompat_Dark 0x7f0b011d -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b011e -int style ThemeOverlay_AppCompat_Dialog 0x7f0b011f -int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b0120 -int style ThemeOverlay_AppCompat_Light 0x7f0b0121 -int style Widget_AppCompat_ActionBar 0x7f0b0122 -int style Widget_AppCompat_ActionBar_Solid 0x7f0b0123 -int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0124 -int style Widget_AppCompat_ActionBar_TabText 0x7f0b0125 -int style Widget_AppCompat_ActionBar_TabView 0x7f0b0126 -int style Widget_AppCompat_ActionButton 0x7f0b0127 -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b0128 -int style Widget_AppCompat_ActionButton_Overflow 0x7f0b0129 -int style Widget_AppCompat_ActionMode 0x7f0b012a -int style Widget_AppCompat_ActivityChooserView 0x7f0b012b -int style Widget_AppCompat_AutoCompleteTextView 0x7f0b012c -int style Widget_AppCompat_Button 0x7f0b012d -int style Widget_AppCompat_Button_Borderless 0x7f0b012e -int style Widget_AppCompat_Button_Borderless_Colored 0x7f0b012f -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0130 -int style Widget_AppCompat_Button_Colored 0x7f0b0131 -int style Widget_AppCompat_Button_Small 0x7f0b0132 -int style Widget_AppCompat_ButtonBar 0x7f0b0133 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b0134 -int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0b0135 -int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0b0136 -int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0137 -int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0138 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0139 -int style Widget_AppCompat_EditText 0x7f0b013a -int style Widget_AppCompat_ImageButton 0x7f0b013b -int style Widget_AppCompat_Light_ActionBar 0x7f0b013c -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b013d -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b013e -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b013f -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0140 -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0141 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0142 -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0143 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0144 -int style Widget_AppCompat_Light_ActionButton 0x7f0b0145 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b0146 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0147 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0148 -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0149 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b014a -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b014b -int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b014c -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b014d -int style Widget_AppCompat_Light_PopupMenu 0x7f0b014e -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b014f -int style Widget_AppCompat_Light_SearchView 0x7f0b0150 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0151 -int style Widget_AppCompat_ListMenuView 0x7f0b0152 -int style Widget_AppCompat_ListPopupWindow 0x7f0b0153 -int style Widget_AppCompat_ListView 0x7f0b0154 -int style Widget_AppCompat_ListView_DropDown 0x7f0b0155 -int style Widget_AppCompat_ListView_Menu 0x7f0b0156 -int style Widget_AppCompat_PopupMenu 0x7f0b0157 -int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0158 -int style Widget_AppCompat_PopupWindow 0x7f0b0159 -int style Widget_AppCompat_ProgressBar 0x7f0b015a -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b015b -int style Widget_AppCompat_RatingBar 0x7f0b015c -int style Widget_AppCompat_RatingBar_Indicator 0x7f0b015d -int style Widget_AppCompat_RatingBar_Small 0x7f0b015e -int style Widget_AppCompat_SearchView 0x7f0b015f -int style Widget_AppCompat_SearchView_ActionBar 0x7f0b0160 -int style Widget_AppCompat_SeekBar 0x7f0b0161 -int style Widget_AppCompat_SeekBar_Discrete 0x7f0b0162 -int style Widget_AppCompat_Spinner 0x7f0b0163 -int style Widget_AppCompat_Spinner_DropDown 0x7f0b0164 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0165 -int style Widget_AppCompat_Spinner_Underlined 0x7f0b0166 -int style Widget_AppCompat_TextView_SpinnerItem 0x7f0b0167 -int style Widget_AppCompat_Toolbar 0x7f0b0168 -int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0169 -int style Widget_Compat_NotificationActionContainer 0x7f0b016a -int style Widget_Compat_NotificationActionText 0x7f0b016b -int[] styleable ActionBar { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 } -int styleable ActionBar_background 0 -int styleable ActionBar_backgroundSplit 1 -int styleable ActionBar_backgroundStacked 2 -int styleable ActionBar_contentInsetEnd 3 -int styleable ActionBar_contentInsetEndWithActions 4 -int styleable ActionBar_contentInsetLeft 5 -int styleable ActionBar_contentInsetRight 6 -int styleable ActionBar_contentInsetStart 7 -int styleable ActionBar_contentInsetStartWithNavigation 8 -int styleable ActionBar_customNavigationLayout 9 -int styleable ActionBar_displayOptions 10 -int styleable ActionBar_divider 11 -int styleable ActionBar_elevation 12 -int styleable ActionBar_height 13 -int styleable ActionBar_hideOnContentScroll 14 -int styleable ActionBar_homeAsUpIndicator 15 -int styleable ActionBar_homeLayout 16 -int styleable ActionBar_icon 17 -int styleable ActionBar_indeterminateProgressStyle 18 -int styleable ActionBar_itemPadding 19 -int styleable ActionBar_logo 20 -int styleable ActionBar_navigationMode 21 -int styleable ActionBar_popupTheme 22 -int styleable ActionBar_progressBarPadding 23 -int styleable ActionBar_progressBarStyle 24 -int styleable ActionBar_subtitle 25 -int styleable ActionBar_subtitleTextStyle 26 -int styleable ActionBar_title 27 -int styleable ActionBar_titleTextStyle 28 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 } -int styleable ActionMode_background 0 -int styleable ActionMode_backgroundSplit 1 -int styleable ActionMode_closeItemLayout 2 -int styleable ActionMode_height 3 -int styleable ActionMode_subtitleTextStyle 4 -int styleable ActionMode_titleTextStyle 5 -int[] styleable ActivityChooserView { 0x7f020075, 0x7f02008c } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable AlertDialog { 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonPanelSideLayout 1 -int styleable AlertDialog_listItemLayout 2 -int styleable AlertDialog_listLayout 3 -int styleable AlertDialog_multiChoiceItemLayout 4 -int styleable AlertDialog_showTitle 5 -int styleable AlertDialog_singleChoiceItemLayout 6 -int[] styleable AppCompatImageView { 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } -int styleable AppCompatTextHelper_android_textAppearance 0 -int styleable AppCompatTextHelper_android_drawableTop 1 -int styleable AppCompatTextHelper_android_drawableBottom 2 -int styleable AppCompatTextHelper_android_drawableLeft 3 -int styleable AppCompatTextHelper_android_drawableRight 4 -int styleable AppCompatTextHelper_android_drawableStart 5 -int styleable AppCompatTextHelper_android_drawableEnd 6 -int[] styleable AppCompatTextView { 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_autoSizeMaxTextSize 1 -int styleable AppCompatTextView_autoSizeMinTextSize 2 -int styleable AppCompatTextView_autoSizePresetSizes 3 -int styleable AppCompatTextView_autoSizeStepGranularity 4 -int styleable AppCompatTextView_autoSizeTextType 5 -int styleable AppCompatTextView_fontFamily 6 -int styleable AppCompatTextView_textAllCaps 7 -int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 } -int styleable AppCompatTheme_android_windowIsFloating 0 -int styleable AppCompatTheme_android_windowAnimationStyle 1 -int styleable AppCompatTheme_actionBarDivider 2 -int styleable AppCompatTheme_actionBarItemBackground 3 -int styleable AppCompatTheme_actionBarPopupTheme 4 -int styleable AppCompatTheme_actionBarSize 5 -int styleable AppCompatTheme_actionBarSplitStyle 6 -int styleable AppCompatTheme_actionBarStyle 7 -int styleable AppCompatTheme_actionBarTabBarStyle 8 -int styleable AppCompatTheme_actionBarTabStyle 9 -int styleable AppCompatTheme_actionBarTabTextStyle 10 -int styleable AppCompatTheme_actionBarTheme 11 -int styleable AppCompatTheme_actionBarWidgetTheme 12 -int styleable AppCompatTheme_actionButtonStyle 13 -int styleable AppCompatTheme_actionDropDownStyle 14 -int styleable AppCompatTheme_actionMenuTextAppearance 15 -int styleable AppCompatTheme_actionMenuTextColor 16 -int styleable AppCompatTheme_actionModeBackground 17 -int styleable AppCompatTheme_actionModeCloseButtonStyle 18 -int styleable AppCompatTheme_actionModeCloseDrawable 19 -int styleable AppCompatTheme_actionModeCopyDrawable 20 -int styleable AppCompatTheme_actionModeCutDrawable 21 -int styleable AppCompatTheme_actionModeFindDrawable 22 -int styleable AppCompatTheme_actionModePasteDrawable 23 -int styleable AppCompatTheme_actionModePopupWindowStyle 24 -int styleable AppCompatTheme_actionModeSelectAllDrawable 25 -int styleable AppCompatTheme_actionModeShareDrawable 26 -int styleable AppCompatTheme_actionModeSplitBackground 27 -int styleable AppCompatTheme_actionModeStyle 28 -int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -int styleable AppCompatTheme_actionOverflowButtonStyle 30 -int styleable AppCompatTheme_actionOverflowMenuStyle 31 -int styleable AppCompatTheme_activityChooserViewStyle 32 -int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -int styleable AppCompatTheme_alertDialogCenterButtons 34 -int styleable AppCompatTheme_alertDialogStyle 35 -int styleable AppCompatTheme_alertDialogTheme 36 -int styleable AppCompatTheme_autoCompleteTextViewStyle 37 -int styleable AppCompatTheme_borderlessButtonStyle 38 -int styleable AppCompatTheme_buttonBarButtonStyle 39 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 -int styleable AppCompatTheme_buttonBarStyle 43 -int styleable AppCompatTheme_buttonStyle 44 -int styleable AppCompatTheme_buttonStyleSmall 45 -int styleable AppCompatTheme_checkboxStyle 46 -int styleable AppCompatTheme_checkedTextViewStyle 47 -int styleable AppCompatTheme_colorAccent 48 -int styleable AppCompatTheme_colorBackgroundFloating 49 -int styleable AppCompatTheme_colorButtonNormal 50 -int styleable AppCompatTheme_colorControlActivated 51 -int styleable AppCompatTheme_colorControlHighlight 52 -int styleable AppCompatTheme_colorControlNormal 53 -int styleable AppCompatTheme_colorError 54 -int styleable AppCompatTheme_colorPrimary 55 -int styleable AppCompatTheme_colorPrimaryDark 56 -int styleable AppCompatTheme_colorSwitchThumbNormal 57 -int styleable AppCompatTheme_controlBackground 58 -int styleable AppCompatTheme_dialogPreferredPadding 59 -int styleable AppCompatTheme_dialogTheme 60 -int styleable AppCompatTheme_dividerHorizontal 61 -int styleable AppCompatTheme_dividerVertical 62 -int styleable AppCompatTheme_dropDownListViewStyle 63 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 64 -int styleable AppCompatTheme_editTextBackground 65 -int styleable AppCompatTheme_editTextColor 66 -int styleable AppCompatTheme_editTextStyle 67 -int styleable AppCompatTheme_homeAsUpIndicator 68 -int styleable AppCompatTheme_imageButtonStyle 69 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 70 -int styleable AppCompatTheme_listDividerAlertDialog 71 -int styleable AppCompatTheme_listMenuViewStyle 72 -int styleable AppCompatTheme_listPopupWindowStyle 73 -int styleable AppCompatTheme_listPreferredItemHeight 74 -int styleable AppCompatTheme_listPreferredItemHeightLarge 75 -int styleable AppCompatTheme_listPreferredItemHeightSmall 76 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 77 -int styleable AppCompatTheme_listPreferredItemPaddingRight 78 -int styleable AppCompatTheme_panelBackground 79 -int styleable AppCompatTheme_panelMenuListTheme 80 -int styleable AppCompatTheme_panelMenuListWidth 81 -int styleable AppCompatTheme_popupMenuStyle 82 -int styleable AppCompatTheme_popupWindowStyle 83 -int styleable AppCompatTheme_radioButtonStyle 84 -int styleable AppCompatTheme_ratingBarStyle 85 -int styleable AppCompatTheme_ratingBarStyleIndicator 86 -int styleable AppCompatTheme_ratingBarStyleSmall 87 -int styleable AppCompatTheme_searchViewStyle 88 -int styleable AppCompatTheme_seekBarStyle 89 -int styleable AppCompatTheme_selectableItemBackground 90 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 91 -int styleable AppCompatTheme_spinnerDropDownItemStyle 92 -int styleable AppCompatTheme_spinnerStyle 93 -int styleable AppCompatTheme_switchStyle 94 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 95 -int styleable AppCompatTheme_textAppearanceListItem 96 -int styleable AppCompatTheme_textAppearanceListItemSecondary 97 -int styleable AppCompatTheme_textAppearanceListItemSmall 98 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 99 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 101 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102 -int styleable AppCompatTheme_textColorAlertDialogListItem 103 -int styleable AppCompatTheme_textColorSearchUrl 104 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 105 -int styleable AppCompatTheme_toolbarStyle 106 -int styleable AppCompatTheme_tooltipForegroundColor 107 -int styleable AppCompatTheme_tooltipFrameBackground 108 -int styleable AppCompatTheme_windowActionBar 109 -int styleable AppCompatTheme_windowActionBarOverlay 110 -int styleable AppCompatTheme_windowActionModeOverlay 111 -int styleable AppCompatTheme_windowFixedHeightMajor 112 -int styleable AppCompatTheme_windowFixedHeightMinor 113 -int styleable AppCompatTheme_windowFixedWidthMajor 114 -int styleable AppCompatTheme_windowFixedWidthMinor 115 -int styleable AppCompatTheme_windowMinWidthMajor 116 -int styleable AppCompatTheme_windowMinWidthMinor 117 -int styleable AppCompatTheme_windowNoTitle 118 -int[] styleable ButtonBarLayout { 0x7f020026 } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f020027 } -int styleable ColorStateListItem_android_color 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_alpha 2 -int[] styleable CompoundButton { 0x01010107, 0x7f020043, 0x7f020044 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonTint 1 -int styleable CompoundButton_buttonTintMode 2 -int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 } -int styleable ConstraintLayout_Layout_android_orientation 0 -int styleable ConstraintLayout_Layout_android_maxWidth 1 -int styleable ConstraintLayout_Layout_android_maxHeight 2 -int styleable ConstraintLayout_Layout_android_minWidth 3 -int styleable ConstraintLayout_Layout_android_minHeight 4 -int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 -int styleable ConstraintLayout_Layout_barrierDirection 6 -int styleable ConstraintLayout_Layout_chainUseRtl 7 -int styleable ConstraintLayout_Layout_constraintSet 8 -int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 -int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 -int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 -int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 -int styleable ConstraintLayout_Layout_layout_constraintCircle 17 -int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 -int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 -int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 -int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 -int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 -int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 -int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 -int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 -int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 -int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 -int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 -int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 -int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 -int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 -int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 -int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 -int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 -int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 -int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 -int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 -int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 -int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 -int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 -int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 -int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 -int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 -int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 -int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 -int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 -int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 -int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 -int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 -int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 -int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 -int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 -int[] styleable ConstraintLayout_placeholder { 0x7f02005a, 0x7f020074 } -int styleable ConstraintLayout_placeholder_content 0 -int styleable ConstraintLayout_placeholder_emptyVisibility 1 -int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 } -int styleable ConstraintSet_android_orientation 0 -int styleable ConstraintSet_android_id 1 -int styleable ConstraintSet_android_visibility 2 -int styleable ConstraintSet_android_layout_width 3 -int styleable ConstraintSet_android_layout_height 4 -int styleable ConstraintSet_android_layout_marginLeft 5 -int styleable ConstraintSet_android_layout_marginTop 6 -int styleable ConstraintSet_android_layout_marginRight 7 -int styleable ConstraintSet_android_layout_marginBottom 8 -int styleable ConstraintSet_android_alpha 9 -int styleable ConstraintSet_android_transformPivotX 10 -int styleable ConstraintSet_android_transformPivotY 11 -int styleable ConstraintSet_android_translationX 12 -int styleable ConstraintSet_android_translationY 13 -int styleable ConstraintSet_android_scaleX 14 -int styleable ConstraintSet_android_scaleY 15 -int styleable ConstraintSet_android_rotation 16 -int styleable ConstraintSet_android_rotationX 17 -int styleable ConstraintSet_android_rotationY 18 -int styleable ConstraintSet_android_layout_marginStart 19 -int styleable ConstraintSet_android_layout_marginEnd 20 -int styleable ConstraintSet_android_translationZ 21 -int styleable ConstraintSet_android_elevation 22 -int styleable ConstraintSet_layout_constrainedHeight 23 -int styleable ConstraintSet_layout_constrainedWidth 24 -int styleable ConstraintSet_layout_constraintBaseline_creator 25 -int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 26 -int styleable ConstraintSet_layout_constraintBottom_creator 27 -int styleable ConstraintSet_layout_constraintBottom_toBottomOf 28 -int styleable ConstraintSet_layout_constraintBottom_toTopOf 29 -int styleable ConstraintSet_layout_constraintCircle 30 -int styleable ConstraintSet_layout_constraintCircleAngle 31 -int styleable ConstraintSet_layout_constraintCircleRadius 32 -int styleable ConstraintSet_layout_constraintDimensionRatio 33 -int styleable ConstraintSet_layout_constraintEnd_toEndOf 34 -int styleable ConstraintSet_layout_constraintEnd_toStartOf 35 -int styleable ConstraintSet_layout_constraintGuide_begin 36 -int styleable ConstraintSet_layout_constraintGuide_end 37 -int styleable ConstraintSet_layout_constraintGuide_percent 38 -int styleable ConstraintSet_layout_constraintHeight_default 39 -int styleable ConstraintSet_layout_constraintHeight_max 40 -int styleable ConstraintSet_layout_constraintHeight_min 41 -int styleable ConstraintSet_layout_constraintHeight_percent 42 -int styleable ConstraintSet_layout_constraintHorizontal_bias 43 -int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 44 -int styleable ConstraintSet_layout_constraintHorizontal_weight 45 -int styleable ConstraintSet_layout_constraintLeft_creator 46 -int styleable ConstraintSet_layout_constraintLeft_toLeftOf 47 -int styleable ConstraintSet_layout_constraintLeft_toRightOf 48 -int styleable ConstraintSet_layout_constraintRight_creator 49 -int styleable ConstraintSet_layout_constraintRight_toLeftOf 50 -int styleable ConstraintSet_layout_constraintRight_toRightOf 51 -int styleable ConstraintSet_layout_constraintStart_toEndOf 52 -int styleable ConstraintSet_layout_constraintStart_toStartOf 53 -int styleable ConstraintSet_layout_constraintTop_creator 54 -int styleable ConstraintSet_layout_constraintTop_toBottomOf 55 -int styleable ConstraintSet_layout_constraintTop_toTopOf 56 -int styleable ConstraintSet_layout_constraintVertical_bias 57 -int styleable ConstraintSet_layout_constraintVertical_chainStyle 58 -int styleable ConstraintSet_layout_constraintVertical_weight 59 -int styleable ConstraintSet_layout_constraintWidth_default 60 -int styleable ConstraintSet_layout_constraintWidth_max 61 -int styleable ConstraintSet_layout_constraintWidth_min 62 -int styleable ConstraintSet_layout_constraintWidth_percent 63 -int styleable ConstraintSet_layout_editor_absoluteX 64 -int styleable ConstraintSet_layout_editor_absoluteY 65 -int styleable ConstraintSet_layout_goneMarginBottom 66 -int styleable ConstraintSet_layout_goneMarginEnd 67 -int styleable ConstraintSet_layout_goneMarginLeft 68 -int styleable ConstraintSet_layout_goneMarginRight 69 -int styleable ConstraintSet_layout_goneMarginStart 70 -int styleable ConstraintSet_layout_goneMarginTop 71 -int[] styleable DrawerArrowToggle { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 } -int styleable DrawerArrowToggle_arrowHeadLength 0 -int styleable DrawerArrowToggle_arrowShaftLength 1 -int styleable DrawerArrowToggle_barLength 2 -int styleable DrawerArrowToggle_color 3 -int styleable DrawerArrowToggle_drawableSize 4 -int styleable DrawerArrowToggle_gapBetweenBars 5 -int styleable DrawerArrowToggle_spinBars 6 -int styleable DrawerArrowToggle_thickness 7 -int[] styleable FontFamily { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int[] styleable FontFamilyFont { 0x7f020076, 0x7f02007e, 0x7f02007f } -int styleable FontFamilyFont_font 0 -int styleable FontFamilyFont_fontStyle 1 -int styleable FontFamilyFont_fontWeight 2 -int[] styleable LinearConstraintLayout { 0x010100c4 } -int styleable LinearConstraintLayout_android_orientation 0 -int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 } -int styleable LinearLayoutCompat_android_gravity 0 -int styleable LinearLayoutCompat_android_orientation 1 -int styleable LinearLayoutCompat_android_baselineAligned 2 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 6 -int styleable LinearLayoutCompat_measureWithLargestChild 7 -int styleable LinearLayoutCompat_showDividers 8 -int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_width 1 -int styleable LinearLayoutCompat_Layout_android_layout_height 2 -int styleable LinearLayoutCompat_Layout_android_layout_weight 3 -int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_visible 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_checkableBehavior 5 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 } -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_actionLayout 13 -int styleable MenuItem_actionProviderClass 14 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_alphabeticModifiers 16 -int styleable MenuItem_contentDescription 17 -int styleable MenuItem_iconTint 18 -int styleable MenuItem_iconTintMode 19 -int styleable MenuItem_numericModifiers 20 -int styleable MenuItem_showAsAction 21 -int styleable MenuItem_tooltipText 22 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, 0x7f0200fb } -int styleable MenuView_android_windowAnimationStyle 0 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200d6 } -int styleable PopupWindow_android_popupBackground 0 -int styleable PopupWindow_android_popupAnimationStyle 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x7f0200fa } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x7f0200d7, 0x7f0200da } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_maxWidth 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_imeOptions 3 -int styleable SearchView_closeIcon 4 -int styleable SearchView_commitIcon 5 -int styleable SearchView_defaultQueryHint 6 -int styleable SearchView_goIcon 7 -int styleable SearchView_iconifiedByDefault 8 -int styleable SearchView_layout 9 -int styleable SearchView_queryBackground 10 -int styleable SearchView_queryHint 11 -int styleable SearchView_searchHintIcon 12 -int styleable SearchView_searchIcon 13 -int styleable SearchView_submitBackground 14 -int styleable SearchView_suggestionRowLayout 15 -int styleable SearchView_voiceIcon 16 -int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200df } -int styleable Spinner_android_entries 0 -int styleable Spinner_android_popupBackground 1 -int styleable Spinner_android_prompt 2 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_popupTheme 4 -int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c } -int styleable SwitchCompat_android_textOn 0 -int styleable SwitchCompat_android_textOff 1 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 3 -int styleable SwitchCompat_splitTrack 4 -int styleable SwitchCompat_switchMinWidth 5 -int styleable SwitchCompat_switchPadding 6 -int styleable SwitchCompat_switchTextAppearance 7 -int styleable SwitchCompat_thumbTextPadding 8 -int styleable SwitchCompat_thumbTint 9 -int styleable SwitchCompat_thumbTintMode 10 -int styleable SwitchCompat_track 11 -int styleable SwitchCompat_trackTint 12 -int styleable SwitchCompat_trackTintMode 13 -int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, 0x7f020106 } -int styleable TextAppearance_android_textSize 0 -int styleable TextAppearance_android_typeface 1 -int styleable TextAppearance_android_textStyle 2 -int styleable TextAppearance_android_textColor 3 -int styleable TextAppearance_android_textColorHint 4 -int styleable TextAppearance_android_textColorLink 5 -int styleable TextAppearance_android_shadowColor 6 -int styleable TextAppearance_android_shadowDx 7 -int styleable TextAppearance_android_shadowDy 8 -int styleable TextAppearance_android_shadowRadius 9 -int styleable TextAppearance_android_fontFamily 10 -int styleable TextAppearance_fontFamily 11 -int styleable TextAppearance_textAllCaps 12 -int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_buttonGravity 2 -int styleable Toolbar_collapseContentDescription 3 -int styleable Toolbar_collapseIcon 4 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetEndWithActions 6 -int styleable Toolbar_contentInsetLeft 7 -int styleable Toolbar_contentInsetRight 8 -int styleable Toolbar_contentInsetStart 9 -int styleable Toolbar_contentInsetStartWithNavigation 10 -int styleable Toolbar_logo 11 -int styleable Toolbar_logoDescription 12 -int styleable Toolbar_maxButtonHeight 13 -int styleable Toolbar_navigationContentDescription 14 -int styleable Toolbar_navigationIcon 15 -int styleable Toolbar_popupTheme 16 -int styleable Toolbar_subtitle 17 -int styleable Toolbar_subtitleTextAppearance 18 -int styleable Toolbar_subtitleTextColor 19 -int styleable Toolbar_title 20 -int styleable Toolbar_titleMargin 21 -int styleable Toolbar_titleMarginBottom 22 -int styleable Toolbar_titleMarginEnd 23 -int styleable Toolbar_titleMarginStart 24 -int styleable Toolbar_titleMarginTop 25 -int styleable Toolbar_titleMargins 26 -int styleable Toolbar_titleTextAppearance 27 -int styleable Toolbar_titleTextColor 28 -int[] styleable View { 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, 0x7f020111 } -int styleable View_android_theme 0 -int styleable View_android_focusable 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020034, 0x7f020035 } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_layout 1 -int styleable ViewStubCompat_android_inflatedId 2 diff --git a/MVPModel/retrofitdemo/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/MVPModel/retrofitdemo/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt deleted file mode 100644 index 201d655..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt +++ /dev/null @@ -1,1756 +0,0 @@ -com.gaolei.retrofitdemo -int anim abc_fade_in 0x7f010000 -int anim abc_fade_out 0x7f010001 -int anim abc_grow_fade_in_from_bottom 0x7f010002 -int anim abc_popup_enter 0x7f010003 -int anim abc_popup_exit 0x7f010004 -int anim abc_shrink_fade_out_from_bottom 0x7f010005 -int anim abc_slide_in_bottom 0x7f010006 -int anim abc_slide_in_top 0x7f010007 -int anim abc_slide_out_bottom 0x7f010008 -int anim abc_slide_out_top 0x7f010009 -int anim tooltip_enter 0x7f01000a -int anim tooltip_exit 0x7f01000b -int attr actionBarDivider 0x7f020000 -int attr actionBarItemBackground 0x7f020001 -int attr actionBarPopupTheme 0x7f020002 -int attr actionBarSize 0x7f020003 -int attr actionBarSplitStyle 0x7f020004 -int attr actionBarStyle 0x7f020005 -int attr actionBarTabBarStyle 0x7f020006 -int attr actionBarTabStyle 0x7f020007 -int attr actionBarTabTextStyle 0x7f020008 -int attr actionBarTheme 0x7f020009 -int attr actionBarWidgetTheme 0x7f02000a -int attr actionButtonStyle 0x7f02000b -int attr actionDropDownStyle 0x7f02000c -int attr actionLayout 0x7f02000d -int attr actionMenuTextAppearance 0x7f02000e -int attr actionMenuTextColor 0x7f02000f -int attr actionModeBackground 0x7f020010 -int attr actionModeCloseButtonStyle 0x7f020011 -int attr actionModeCloseDrawable 0x7f020012 -int attr actionModeCopyDrawable 0x7f020013 -int attr actionModeCutDrawable 0x7f020014 -int attr actionModeFindDrawable 0x7f020015 -int attr actionModePasteDrawable 0x7f020016 -int attr actionModePopupWindowStyle 0x7f020017 -int attr actionModeSelectAllDrawable 0x7f020018 -int attr actionModeShareDrawable 0x7f020019 -int attr actionModeSplitBackground 0x7f02001a -int attr actionModeStyle 0x7f02001b -int attr actionModeWebSearchDrawable 0x7f02001c -int attr actionOverflowButtonStyle 0x7f02001d -int attr actionOverflowMenuStyle 0x7f02001e -int attr actionProviderClass 0x7f02001f -int attr actionViewClass 0x7f020020 -int attr activityChooserViewStyle 0x7f020021 -int attr alertDialogButtonGroupStyle 0x7f020022 -int attr alertDialogCenterButtons 0x7f020023 -int attr alertDialogStyle 0x7f020024 -int attr alertDialogTheme 0x7f020025 -int attr allowStacking 0x7f020026 -int attr alpha 0x7f020027 -int attr alphabeticModifiers 0x7f020028 -int attr arrowHeadLength 0x7f020029 -int attr arrowShaftLength 0x7f02002a -int attr autoCompleteTextViewStyle 0x7f02002b -int attr autoSizeMaxTextSize 0x7f02002c -int attr autoSizeMinTextSize 0x7f02002d -int attr autoSizePresetSizes 0x7f02002e -int attr autoSizeStepGranularity 0x7f02002f -int attr autoSizeTextType 0x7f020030 -int attr background 0x7f020031 -int attr backgroundSplit 0x7f020032 -int attr backgroundStacked 0x7f020033 -int attr backgroundTint 0x7f020034 -int attr backgroundTintMode 0x7f020035 -int attr barLength 0x7f020036 -int attr barrierAllowsGoneWidgets 0x7f020037 -int attr barrierDirection 0x7f020038 -int attr borderlessButtonStyle 0x7f020039 -int attr buttonBarButtonStyle 0x7f02003a -int attr buttonBarNegativeButtonStyle 0x7f02003b -int attr buttonBarNeutralButtonStyle 0x7f02003c -int attr buttonBarPositiveButtonStyle 0x7f02003d -int attr buttonBarStyle 0x7f02003e -int attr buttonGravity 0x7f02003f -int attr buttonPanelSideLayout 0x7f020040 -int attr buttonStyle 0x7f020041 -int attr buttonStyleSmall 0x7f020042 -int attr buttonTint 0x7f020043 -int attr buttonTintMode 0x7f020044 -int attr chainUseRtl 0x7f020045 -int attr checkboxStyle 0x7f020046 -int attr checkedTextViewStyle 0x7f020047 -int attr closeIcon 0x7f020048 -int attr closeItemLayout 0x7f020049 -int attr collapseContentDescription 0x7f02004a -int attr collapseIcon 0x7f02004b -int attr color 0x7f02004c -int attr colorAccent 0x7f02004d -int attr colorBackgroundFloating 0x7f02004e -int attr colorButtonNormal 0x7f02004f -int attr colorControlActivated 0x7f020050 -int attr colorControlHighlight 0x7f020051 -int attr colorControlNormal 0x7f020052 -int attr colorError 0x7f020053 -int attr colorPrimary 0x7f020054 -int attr colorPrimaryDark 0x7f020055 -int attr colorSwitchThumbNormal 0x7f020056 -int attr commitIcon 0x7f020057 -int attr constraintSet 0x7f020058 -int attr constraint_referenced_ids 0x7f020059 -int attr content 0x7f02005a -int attr contentDescription 0x7f02005b -int attr contentInsetEnd 0x7f02005c -int attr contentInsetEndWithActions 0x7f02005d -int attr contentInsetLeft 0x7f02005e -int attr contentInsetRight 0x7f02005f -int attr contentInsetStart 0x7f020060 -int attr contentInsetStartWithNavigation 0x7f020061 -int attr controlBackground 0x7f020062 -int attr customNavigationLayout 0x7f020063 -int attr defaultQueryHint 0x7f020064 -int attr dialogPreferredPadding 0x7f020065 -int attr dialogTheme 0x7f020066 -int attr displayOptions 0x7f020067 -int attr divider 0x7f020068 -int attr dividerHorizontal 0x7f020069 -int attr dividerPadding 0x7f02006a -int attr dividerVertical 0x7f02006b -int attr drawableSize 0x7f02006c -int attr drawerArrowStyle 0x7f02006d -int attr dropDownListViewStyle 0x7f02006e -int attr dropdownListPreferredItemHeight 0x7f02006f -int attr editTextBackground 0x7f020070 -int attr editTextColor 0x7f020071 -int attr editTextStyle 0x7f020072 -int attr elevation 0x7f020073 -int attr emptyVisibility 0x7f020074 -int attr expandActivityOverflowButtonDrawable 0x7f020075 -int attr font 0x7f020076 -int attr fontFamily 0x7f020077 -int attr fontProviderAuthority 0x7f020078 -int attr fontProviderCerts 0x7f020079 -int attr fontProviderFetchStrategy 0x7f02007a -int attr fontProviderFetchTimeout 0x7f02007b -int attr fontProviderPackage 0x7f02007c -int attr fontProviderQuery 0x7f02007d -int attr fontStyle 0x7f02007e -int attr fontWeight 0x7f02007f -int attr gapBetweenBars 0x7f020080 -int attr goIcon 0x7f020081 -int attr height 0x7f020082 -int attr hideOnContentScroll 0x7f020083 -int attr homeAsUpIndicator 0x7f020084 -int attr homeLayout 0x7f020085 -int attr icon 0x7f020086 -int attr iconTint 0x7f020087 -int attr iconTintMode 0x7f020088 -int attr iconifiedByDefault 0x7f020089 -int attr imageButtonStyle 0x7f02008a -int attr indeterminateProgressStyle 0x7f02008b -int attr initialActivityCount 0x7f02008c -int attr isLightTheme 0x7f02008d -int attr itemPadding 0x7f02008e -int attr layout 0x7f02008f -int attr layout_constrainedHeight 0x7f020090 -int attr layout_constrainedWidth 0x7f020091 -int attr layout_constraintBaseline_creator 0x7f020092 -int attr layout_constraintBaseline_toBaselineOf 0x7f020093 -int attr layout_constraintBottom_creator 0x7f020094 -int attr layout_constraintBottom_toBottomOf 0x7f020095 -int attr layout_constraintBottom_toTopOf 0x7f020096 -int attr layout_constraintCircle 0x7f020097 -int attr layout_constraintCircleAngle 0x7f020098 -int attr layout_constraintCircleRadius 0x7f020099 -int attr layout_constraintDimensionRatio 0x7f02009a -int attr layout_constraintEnd_toEndOf 0x7f02009b -int attr layout_constraintEnd_toStartOf 0x7f02009c -int attr layout_constraintGuide_begin 0x7f02009d -int attr layout_constraintGuide_end 0x7f02009e -int attr layout_constraintGuide_percent 0x7f02009f -int attr layout_constraintHeight_default 0x7f0200a0 -int attr layout_constraintHeight_max 0x7f0200a1 -int attr layout_constraintHeight_min 0x7f0200a2 -int attr layout_constraintHeight_percent 0x7f0200a3 -int attr layout_constraintHorizontal_bias 0x7f0200a4 -int attr layout_constraintHorizontal_chainStyle 0x7f0200a5 -int attr layout_constraintHorizontal_weight 0x7f0200a6 -int attr layout_constraintLeft_creator 0x7f0200a7 -int attr layout_constraintLeft_toLeftOf 0x7f0200a8 -int attr layout_constraintLeft_toRightOf 0x7f0200a9 -int attr layout_constraintRight_creator 0x7f0200aa -int attr layout_constraintRight_toLeftOf 0x7f0200ab -int attr layout_constraintRight_toRightOf 0x7f0200ac -int attr layout_constraintStart_toEndOf 0x7f0200ad -int attr layout_constraintStart_toStartOf 0x7f0200ae -int attr layout_constraintTop_creator 0x7f0200af -int attr layout_constraintTop_toBottomOf 0x7f0200b0 -int attr layout_constraintTop_toTopOf 0x7f0200b1 -int attr layout_constraintVertical_bias 0x7f0200b2 -int attr layout_constraintVertical_chainStyle 0x7f0200b3 -int attr layout_constraintVertical_weight 0x7f0200b4 -int attr layout_constraintWidth_default 0x7f0200b5 -int attr layout_constraintWidth_max 0x7f0200b6 -int attr layout_constraintWidth_min 0x7f0200b7 -int attr layout_constraintWidth_percent 0x7f0200b8 -int attr layout_editor_absoluteX 0x7f0200b9 -int attr layout_editor_absoluteY 0x7f0200ba -int attr layout_goneMarginBottom 0x7f0200bb -int attr layout_goneMarginEnd 0x7f0200bc -int attr layout_goneMarginLeft 0x7f0200bd -int attr layout_goneMarginRight 0x7f0200be -int attr layout_goneMarginStart 0x7f0200bf -int attr layout_goneMarginTop 0x7f0200c0 -int attr layout_optimizationLevel 0x7f0200c1 -int attr listChoiceBackgroundIndicator 0x7f0200c2 -int attr listDividerAlertDialog 0x7f0200c3 -int attr listItemLayout 0x7f0200c4 -int attr listLayout 0x7f0200c5 -int attr listMenuViewStyle 0x7f0200c6 -int attr listPopupWindowStyle 0x7f0200c7 -int attr listPreferredItemHeight 0x7f0200c8 -int attr listPreferredItemHeightLarge 0x7f0200c9 -int attr listPreferredItemHeightSmall 0x7f0200ca -int attr listPreferredItemPaddingLeft 0x7f0200cb -int attr listPreferredItemPaddingRight 0x7f0200cc -int attr logo 0x7f0200cd -int attr logoDescription 0x7f0200ce -int attr maxButtonHeight 0x7f0200cf -int attr measureWithLargestChild 0x7f0200d0 -int attr multiChoiceItemLayout 0x7f0200d1 -int attr navigationContentDescription 0x7f0200d2 -int attr navigationIcon 0x7f0200d3 -int attr navigationMode 0x7f0200d4 -int attr numericModifiers 0x7f0200d5 -int attr overlapAnchor 0x7f0200d6 -int attr paddingBottomNoButtons 0x7f0200d7 -int attr paddingEnd 0x7f0200d8 -int attr paddingStart 0x7f0200d9 -int attr paddingTopNoTitle 0x7f0200da -int attr panelBackground 0x7f0200db -int attr panelMenuListTheme 0x7f0200dc -int attr panelMenuListWidth 0x7f0200dd -int attr popupMenuStyle 0x7f0200de -int attr popupTheme 0x7f0200df -int attr popupWindowStyle 0x7f0200e0 -int attr preserveIconSpacing 0x7f0200e1 -int attr progressBarPadding 0x7f0200e2 -int attr progressBarStyle 0x7f0200e3 -int attr queryBackground 0x7f0200e4 -int attr queryHint 0x7f0200e5 -int attr radioButtonStyle 0x7f0200e6 -int attr ratingBarStyle 0x7f0200e7 -int attr ratingBarStyleIndicator 0x7f0200e8 -int attr ratingBarStyleSmall 0x7f0200e9 -int attr searchHintIcon 0x7f0200ea -int attr searchIcon 0x7f0200eb -int attr searchViewStyle 0x7f0200ec -int attr seekBarStyle 0x7f0200ed -int attr selectableItemBackground 0x7f0200ee -int attr selectableItemBackgroundBorderless 0x7f0200ef -int attr showAsAction 0x7f0200f0 -int attr showDividers 0x7f0200f1 -int attr showText 0x7f0200f2 -int attr showTitle 0x7f0200f3 -int attr singleChoiceItemLayout 0x7f0200f4 -int attr spinBars 0x7f0200f5 -int attr spinnerDropDownItemStyle 0x7f0200f6 -int attr spinnerStyle 0x7f0200f7 -int attr splitTrack 0x7f0200f8 -int attr srcCompat 0x7f0200f9 -int attr state_above_anchor 0x7f0200fa -int attr subMenuArrow 0x7f0200fb -int attr submitBackground 0x7f0200fc -int attr subtitle 0x7f0200fd -int attr subtitleTextAppearance 0x7f0200fe -int attr subtitleTextColor 0x7f0200ff -int attr subtitleTextStyle 0x7f020100 -int attr suggestionRowLayout 0x7f020101 -int attr switchMinWidth 0x7f020102 -int attr switchPadding 0x7f020103 -int attr switchStyle 0x7f020104 -int attr switchTextAppearance 0x7f020105 -int attr textAllCaps 0x7f020106 -int attr textAppearanceLargePopupMenu 0x7f020107 -int attr textAppearanceListItem 0x7f020108 -int attr textAppearanceListItemSecondary 0x7f020109 -int attr textAppearanceListItemSmall 0x7f02010a -int attr textAppearancePopupMenuHeader 0x7f02010b -int attr textAppearanceSearchResultSubtitle 0x7f02010c -int attr textAppearanceSearchResultTitle 0x7f02010d -int attr textAppearanceSmallPopupMenu 0x7f02010e -int attr textColorAlertDialogListItem 0x7f02010f -int attr textColorSearchUrl 0x7f020110 -int attr theme 0x7f020111 -int attr thickness 0x7f020112 -int attr thumbTextPadding 0x7f020113 -int attr thumbTint 0x7f020114 -int attr thumbTintMode 0x7f020115 -int attr tickMark 0x7f020116 -int attr tickMarkTint 0x7f020117 -int attr tickMarkTintMode 0x7f020118 -int attr tint 0x7f020119 -int attr tintMode 0x7f02011a -int attr title 0x7f02011b -int attr titleMargin 0x7f02011c -int attr titleMarginBottom 0x7f02011d -int attr titleMarginEnd 0x7f02011e -int attr titleMarginStart 0x7f02011f -int attr titleMarginTop 0x7f020120 -int attr titleMargins 0x7f020121 -int attr titleTextAppearance 0x7f020122 -int attr titleTextColor 0x7f020123 -int attr titleTextStyle 0x7f020124 -int attr toolbarNavigationButtonStyle 0x7f020125 -int attr toolbarStyle 0x7f020126 -int attr tooltipForegroundColor 0x7f020127 -int attr tooltipFrameBackground 0x7f020128 -int attr tooltipText 0x7f020129 -int attr track 0x7f02012a -int attr trackTint 0x7f02012b -int attr trackTintMode 0x7f02012c -int attr voiceIcon 0x7f02012d -int attr windowActionBar 0x7f02012e -int attr windowActionBarOverlay 0x7f02012f -int attr windowActionModeOverlay 0x7f020130 -int attr windowFixedHeightMajor 0x7f020131 -int attr windowFixedHeightMinor 0x7f020132 -int attr windowFixedWidthMajor 0x7f020133 -int attr windowFixedWidthMinor 0x7f020134 -int attr windowMinWidthMajor 0x7f020135 -int attr windowMinWidthMinor 0x7f020136 -int attr windowNoTitle 0x7f020137 -int bool abc_action_bar_embed_tabs 0x7f030000 -int bool abc_allow_stacked_button_bar 0x7f030001 -int bool abc_config_actionMenuItemAllCaps 0x7f030002 -int bool abc_config_closeDialogWhenTouchOutside 0x7f030003 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f030004 -int color abc_background_cache_hint_selector_material_dark 0x7f040000 -int color abc_background_cache_hint_selector_material_light 0x7f040001 -int color abc_btn_colored_borderless_text_material 0x7f040002 -int color abc_btn_colored_text_material 0x7f040003 -int color abc_color_highlight_material 0x7f040004 -int color abc_hint_foreground_material_dark 0x7f040005 -int color abc_hint_foreground_material_light 0x7f040006 -int color abc_input_method_navigation_guard 0x7f040007 -int color abc_primary_text_disable_only_material_dark 0x7f040008 -int color abc_primary_text_disable_only_material_light 0x7f040009 -int color abc_primary_text_material_dark 0x7f04000a -int color abc_primary_text_material_light 0x7f04000b -int color abc_search_url_text 0x7f04000c -int color abc_search_url_text_normal 0x7f04000d -int color abc_search_url_text_pressed 0x7f04000e -int color abc_search_url_text_selected 0x7f04000f -int color abc_secondary_text_material_dark 0x7f040010 -int color abc_secondary_text_material_light 0x7f040011 -int color abc_tint_btn_checkable 0x7f040012 -int color abc_tint_default 0x7f040013 -int color abc_tint_edittext 0x7f040014 -int color abc_tint_seek_thumb 0x7f040015 -int color abc_tint_spinner 0x7f040016 -int color abc_tint_switch_track 0x7f040017 -int color accent_material_dark 0x7f040018 -int color accent_material_light 0x7f040019 -int color background_floating_material_dark 0x7f04001a -int color background_floating_material_light 0x7f04001b -int color background_material_dark 0x7f04001c -int color background_material_light 0x7f04001d -int color bright_foreground_disabled_material_dark 0x7f04001e -int color bright_foreground_disabled_material_light 0x7f04001f -int color bright_foreground_inverse_material_dark 0x7f040020 -int color bright_foreground_inverse_material_light 0x7f040021 -int color bright_foreground_material_dark 0x7f040022 -int color bright_foreground_material_light 0x7f040023 -int color button_material_dark 0x7f040024 -int color button_material_light 0x7f040025 -int color colorAccent 0x7f040026 -int color colorPrimary 0x7f040027 -int color colorPrimaryDark 0x7f040028 -int color dim_foreground_disabled_material_dark 0x7f040029 -int color dim_foreground_disabled_material_light 0x7f04002a -int color dim_foreground_material_dark 0x7f04002b -int color dim_foreground_material_light 0x7f04002c -int color error_color_material 0x7f04002d -int color foreground_material_dark 0x7f04002e -int color foreground_material_light 0x7f04002f -int color highlighted_text_material_dark 0x7f040030 -int color highlighted_text_material_light 0x7f040031 -int color material_blue_grey_800 0x7f040032 -int color material_blue_grey_900 0x7f040033 -int color material_blue_grey_950 0x7f040034 -int color material_deep_teal_200 0x7f040035 -int color material_deep_teal_500 0x7f040036 -int color material_grey_100 0x7f040037 -int color material_grey_300 0x7f040038 -int color material_grey_50 0x7f040039 -int color material_grey_600 0x7f04003a -int color material_grey_800 0x7f04003b -int color material_grey_850 0x7f04003c -int color material_grey_900 0x7f04003d -int color notification_action_color_filter 0x7f04003e -int color notification_icon_bg_color 0x7f04003f -int color notification_material_background_media_default_color 0x7f040040 -int color primary_dark_material_dark 0x7f040041 -int color primary_dark_material_light 0x7f040042 -int color primary_material_dark 0x7f040043 -int color primary_material_light 0x7f040044 -int color primary_text_default_material_dark 0x7f040045 -int color primary_text_default_material_light 0x7f040046 -int color primary_text_disabled_material_dark 0x7f040047 -int color primary_text_disabled_material_light 0x7f040048 -int color ripple_material_dark 0x7f040049 -int color ripple_material_light 0x7f04004a -int color secondary_text_default_material_dark 0x7f04004b -int color secondary_text_default_material_light 0x7f04004c -int color secondary_text_disabled_material_dark 0x7f04004d -int color secondary_text_disabled_material_light 0x7f04004e -int color switch_thumb_disabled_material_dark 0x7f04004f -int color switch_thumb_disabled_material_light 0x7f040050 -int color switch_thumb_material_dark 0x7f040051 -int color switch_thumb_material_light 0x7f040052 -int color switch_thumb_normal_material_dark 0x7f040053 -int color switch_thumb_normal_material_light 0x7f040054 -int color tooltip_background_dark 0x7f040055 -int color tooltip_background_light 0x7f040056 -int dimen abc_action_bar_content_inset_material 0x7f050000 -int dimen abc_action_bar_content_inset_with_nav 0x7f050001 -int dimen abc_action_bar_default_height_material 0x7f050002 -int dimen abc_action_bar_default_padding_end_material 0x7f050003 -int dimen abc_action_bar_default_padding_start_material 0x7f050004 -int dimen abc_action_bar_elevation_material 0x7f050005 -int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006 -int dimen abc_action_bar_overflow_padding_end_material 0x7f050007 -int dimen abc_action_bar_overflow_padding_start_material 0x7f050008 -int dimen abc_action_bar_progress_bar_size 0x7f050009 -int dimen abc_action_bar_stacked_max_height 0x7f05000a -int dimen abc_action_bar_stacked_tab_max_width 0x7f05000b -int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000c -int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000d -int dimen abc_action_button_min_height_material 0x7f05000e -int dimen abc_action_button_min_width_material 0x7f05000f -int dimen abc_action_button_min_width_overflow_material 0x7f050010 -int dimen abc_alert_dialog_button_bar_height 0x7f050011 -int dimen abc_button_inset_horizontal_material 0x7f050012 -int dimen abc_button_inset_vertical_material 0x7f050013 -int dimen abc_button_padding_horizontal_material 0x7f050014 -int dimen abc_button_padding_vertical_material 0x7f050015 -int dimen abc_cascading_menus_min_smallest_width 0x7f050016 -int dimen abc_config_prefDialogWidth 0x7f050017 -int dimen abc_control_corner_material 0x7f050018 -int dimen abc_control_inset_material 0x7f050019 -int dimen abc_control_padding_material 0x7f05001a -int dimen abc_dialog_fixed_height_major 0x7f05001b -int dimen abc_dialog_fixed_height_minor 0x7f05001c -int dimen abc_dialog_fixed_width_major 0x7f05001d -int dimen abc_dialog_fixed_width_minor 0x7f05001e -int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f05001f -int dimen abc_dialog_list_padding_top_no_title 0x7f050020 -int dimen abc_dialog_min_width_major 0x7f050021 -int dimen abc_dialog_min_width_minor 0x7f050022 -int dimen abc_dialog_padding_material 0x7f050023 -int dimen abc_dialog_padding_top_material 0x7f050024 -int dimen abc_dialog_title_divider_material 0x7f050025 -int dimen abc_disabled_alpha_material_dark 0x7f050026 -int dimen abc_disabled_alpha_material_light 0x7f050027 -int dimen abc_dropdownitem_icon_width 0x7f050028 -int dimen abc_dropdownitem_text_padding_left 0x7f050029 -int dimen abc_dropdownitem_text_padding_right 0x7f05002a -int dimen abc_edit_text_inset_bottom_material 0x7f05002b -int dimen abc_edit_text_inset_horizontal_material 0x7f05002c -int dimen abc_edit_text_inset_top_material 0x7f05002d -int dimen abc_floating_window_z 0x7f05002e -int dimen abc_list_item_padding_horizontal_material 0x7f05002f -int dimen abc_panel_menu_list_width 0x7f050030 -int dimen abc_progress_bar_height_material 0x7f050031 -int dimen abc_search_view_preferred_height 0x7f050032 -int dimen abc_search_view_preferred_width 0x7f050033 -int dimen abc_seekbar_track_background_height_material 0x7f050034 -int dimen abc_seekbar_track_progress_height_material 0x7f050035 -int dimen abc_select_dialog_padding_start_material 0x7f050036 -int dimen abc_switch_padding 0x7f050037 -int dimen abc_text_size_body_1_material 0x7f050038 -int dimen abc_text_size_body_2_material 0x7f050039 -int dimen abc_text_size_button_material 0x7f05003a -int dimen abc_text_size_caption_material 0x7f05003b -int dimen abc_text_size_display_1_material 0x7f05003c -int dimen abc_text_size_display_2_material 0x7f05003d -int dimen abc_text_size_display_3_material 0x7f05003e -int dimen abc_text_size_display_4_material 0x7f05003f -int dimen abc_text_size_headline_material 0x7f050040 -int dimen abc_text_size_large_material 0x7f050041 -int dimen abc_text_size_medium_material 0x7f050042 -int dimen abc_text_size_menu_header_material 0x7f050043 -int dimen abc_text_size_menu_material 0x7f050044 -int dimen abc_text_size_small_material 0x7f050045 -int dimen abc_text_size_subhead_material 0x7f050046 -int dimen abc_text_size_subtitle_material_toolbar 0x7f050047 -int dimen abc_text_size_title_material 0x7f050048 -int dimen abc_text_size_title_material_toolbar 0x7f050049 -int dimen compat_button_inset_horizontal_material 0x7f05004a -int dimen compat_button_inset_vertical_material 0x7f05004b -int dimen compat_button_padding_horizontal_material 0x7f05004c -int dimen compat_button_padding_vertical_material 0x7f05004d -int dimen compat_control_corner_material 0x7f05004e -int dimen disabled_alpha_material_dark 0x7f05004f -int dimen disabled_alpha_material_light 0x7f050050 -int dimen highlight_alpha_material_colored 0x7f050051 -int dimen highlight_alpha_material_dark 0x7f050052 -int dimen highlight_alpha_material_light 0x7f050053 -int dimen hint_alpha_material_dark 0x7f050054 -int dimen hint_alpha_material_light 0x7f050055 -int dimen hint_pressed_alpha_material_dark 0x7f050056 -int dimen hint_pressed_alpha_material_light 0x7f050057 -int dimen notification_action_icon_size 0x7f050058 -int dimen notification_action_text_size 0x7f050059 -int dimen notification_big_circle_margin 0x7f05005a -int dimen notification_content_margin_start 0x7f05005b -int dimen notification_large_icon_height 0x7f05005c -int dimen notification_large_icon_width 0x7f05005d -int dimen notification_main_column_padding_top 0x7f05005e -int dimen notification_media_narrow_margin 0x7f05005f -int dimen notification_right_icon_size 0x7f050060 -int dimen notification_right_side_padding_top 0x7f050061 -int dimen notification_small_icon_background_padding 0x7f050062 -int dimen notification_small_icon_size_as_large 0x7f050063 -int dimen notification_subtext_size 0x7f050064 -int dimen notification_top_pad 0x7f050065 -int dimen notification_top_pad_large_text 0x7f050066 -int dimen tooltip_corner_radius 0x7f050067 -int dimen tooltip_horizontal_padding 0x7f050068 -int dimen tooltip_margin 0x7f050069 -int dimen tooltip_precise_anchor_extra_offset 0x7f05006a -int dimen tooltip_precise_anchor_threshold 0x7f05006b -int dimen tooltip_vertical_padding 0x7f05006c -int dimen tooltip_y_offset_non_touch 0x7f05006d -int dimen tooltip_y_offset_touch 0x7f05006e -int drawable abc_ab_share_pack_mtrl_alpha 0x7f060001 -int drawable abc_action_bar_item_background_material 0x7f060002 -int drawable abc_btn_borderless_material 0x7f060003 -int drawable abc_btn_check_material 0x7f060004 -int drawable abc_btn_check_to_on_mtrl_000 0x7f060005 -int drawable abc_btn_check_to_on_mtrl_015 0x7f060006 -int drawable abc_btn_colored_material 0x7f060007 -int drawable abc_btn_default_mtrl_shape 0x7f060008 -int drawable abc_btn_radio_material 0x7f060009 -int drawable abc_btn_radio_to_on_mtrl_000 0x7f06000a -int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000b -int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000c -int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000d -int drawable abc_cab_background_internal_bg 0x7f06000e -int drawable abc_cab_background_top_material 0x7f06000f -int drawable abc_cab_background_top_mtrl_alpha 0x7f060010 -int drawable abc_control_background_material 0x7f060011 -int drawable abc_dialog_material_background 0x7f060012 -int drawable abc_edit_text_material 0x7f060013 -int drawable abc_ic_ab_back_material 0x7f060014 -int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060015 -int drawable abc_ic_clear_material 0x7f060016 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060017 -int drawable abc_ic_go_search_api_material 0x7f060018 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060019 -int drawable abc_ic_menu_cut_mtrl_alpha 0x7f06001a -int drawable abc_ic_menu_overflow_material 0x7f06001b -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001c -int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001d -int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001e -int drawable abc_ic_search_api_material 0x7f06001f -int drawable abc_ic_star_black_16dp 0x7f060020 -int drawable abc_ic_star_black_36dp 0x7f060021 -int drawable abc_ic_star_black_48dp 0x7f060022 -int drawable abc_ic_star_half_black_16dp 0x7f060023 -int drawable abc_ic_star_half_black_36dp 0x7f060024 -int drawable abc_ic_star_half_black_48dp 0x7f060025 -int drawable abc_ic_voice_search_api_material 0x7f060026 -int drawable abc_item_background_holo_dark 0x7f060027 -int drawable abc_item_background_holo_light 0x7f060028 -int drawable abc_list_divider_mtrl_alpha 0x7f060029 -int drawable abc_list_focused_holo 0x7f06002a -int drawable abc_list_longpressed_holo 0x7f06002b -int drawable abc_list_pressed_holo_dark 0x7f06002c -int drawable abc_list_pressed_holo_light 0x7f06002d -int drawable abc_list_selector_background_transition_holo_dark 0x7f06002e -int drawable abc_list_selector_background_transition_holo_light 0x7f06002f -int drawable abc_list_selector_disabled_holo_dark 0x7f060030 -int drawable abc_list_selector_disabled_holo_light 0x7f060031 -int drawable abc_list_selector_holo_dark 0x7f060032 -int drawable abc_list_selector_holo_light 0x7f060033 -int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060034 -int drawable abc_popup_background_mtrl_mult 0x7f060035 -int drawable abc_ratingbar_indicator_material 0x7f060036 -int drawable abc_ratingbar_material 0x7f060037 -int drawable abc_ratingbar_small_material 0x7f060038 -int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060039 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f06003a -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003b -int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003c -int drawable abc_scrubber_track_mtrl_alpha 0x7f06003d -int drawable abc_seekbar_thumb_material 0x7f06003e -int drawable abc_seekbar_tick_mark_material 0x7f06003f -int drawable abc_seekbar_track_material 0x7f060040 -int drawable abc_spinner_mtrl_am_alpha 0x7f060041 -int drawable abc_spinner_textfield_background_material 0x7f060042 -int drawable abc_switch_thumb_material 0x7f060043 -int drawable abc_switch_track_mtrl_alpha 0x7f060044 -int drawable abc_tab_indicator_material 0x7f060045 -int drawable abc_tab_indicator_mtrl_alpha 0x7f060046 -int drawable abc_text_cursor_material 0x7f060047 -int drawable abc_text_select_handle_left_mtrl_dark 0x7f060048 -int drawable abc_text_select_handle_left_mtrl_light 0x7f060049 -int drawable abc_text_select_handle_middle_mtrl_dark 0x7f06004a -int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004b -int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004c -int drawable abc_text_select_handle_right_mtrl_light 0x7f06004d -int drawable abc_textfield_activated_mtrl_alpha 0x7f06004e -int drawable abc_textfield_default_mtrl_alpha 0x7f06004f -int drawable abc_textfield_search_activated_mtrl_alpha 0x7f060050 -int drawable abc_textfield_search_default_mtrl_alpha 0x7f060051 -int drawable abc_textfield_search_material 0x7f060052 -int drawable abc_vector_test 0x7f060053 -int drawable ic_launcher_background 0x7f060054 -int drawable ic_launcher_foreground 0x7f060055 -int drawable notification_action_background 0x7f060056 -int drawable notification_bg 0x7f060057 -int drawable notification_bg_low 0x7f060058 -int drawable notification_bg_low_normal 0x7f060059 -int drawable notification_bg_low_pressed 0x7f06005a -int drawable notification_bg_normal 0x7f06005b -int drawable notification_bg_normal_pressed 0x7f06005c -int drawable notification_icon_background 0x7f06005d -int drawable notification_template_icon_bg 0x7f06005e -int drawable notification_template_icon_low_bg 0x7f06005f -int drawable notification_tile_bg 0x7f060060 -int drawable notify_panel_notification_icon_bg 0x7f060061 -int drawable tooltip_frame_dark 0x7f060062 -int drawable tooltip_frame_light 0x7f060063 -int id ALT 0x7f070000 -int id CTRL 0x7f070001 -int id FUNCTION 0x7f070002 -int id META 0x7f070003 -int id SHIFT 0x7f070004 -int id SYM 0x7f070005 -int id action0 0x7f070006 -int id action_bar 0x7f070007 -int id action_bar_activity_content 0x7f070008 -int id action_bar_container 0x7f070009 -int id action_bar_root 0x7f07000a -int id action_bar_spinner 0x7f07000b -int id action_bar_subtitle 0x7f07000c -int id action_bar_title 0x7f07000d -int id action_container 0x7f07000e -int id action_context_bar 0x7f07000f -int id action_divider 0x7f070010 -int id action_image 0x7f070011 -int id action_menu_divider 0x7f070012 -int id action_menu_presenter 0x7f070013 -int id action_mode_bar 0x7f070014 -int id action_mode_bar_stub 0x7f070015 -int id action_mode_close_button 0x7f070016 -int id action_text 0x7f070017 -int id actions 0x7f070018 -int id activity_chooser_view_content 0x7f070019 -int id activity_main 0x7f07001a -int id add 0x7f07001b -int id alertTitle 0x7f07001c -int id always 0x7f07001d -int id async 0x7f07001e -int id barrier 0x7f07001f -int id beginning 0x7f070020 -int id blocking 0x7f070021 -int id bottom 0x7f070022 -int id button 0x7f070023 -int id buttonPanel 0x7f070024 -int id cancel_action 0x7f070025 -int id chains 0x7f070026 -int id checkbox 0x7f070027 -int id chronometer 0x7f070028 -int id collapseActionView 0x7f070029 -int id contentPanel 0x7f07002a -int id custom 0x7f07002b -int id customPanel 0x7f07002c -int id decor_content_parent 0x7f07002d -int id default_activity_button 0x7f07002e -int id dimensions 0x7f07002f -int id direct 0x7f070030 -int id disableHome 0x7f070031 -int id edit_query 0x7f070032 -int id end 0x7f070033 -int id end_padder 0x7f070034 -int id expand_activities_button 0x7f070035 -int id expanded_menu 0x7f070036 -int id forever 0x7f070037 -int id gone 0x7f070038 -int id home 0x7f070039 -int id homeAsUp 0x7f07003a -int id icon 0x7f07003b -int id icon_group 0x7f07003c -int id ifRoom 0x7f07003d -int id image 0x7f07003e -int id info 0x7f07003f -int id invisible 0x7f070040 -int id italic 0x7f070041 -int id left 0x7f070042 -int id line1 0x7f070043 -int id line3 0x7f070044 -int id listMode 0x7f070045 -int id list_item 0x7f070046 -int id media_actions 0x7f070047 -int id message 0x7f070048 -int id middle 0x7f070049 -int id multiply 0x7f07004a -int id never 0x7f07004b -int id none 0x7f07004c -int id normal 0x7f07004d -int id notification_background 0x7f07004e -int id notification_main_column 0x7f07004f -int id notification_main_column_container 0x7f070050 -int id packed 0x7f070051 -int id parent 0x7f070052 -int id parentPanel 0x7f070053 -int id percent 0x7f070054 -int id progress_circular 0x7f070055 -int id progress_horizontal 0x7f070056 -int id radio 0x7f070057 -int id right 0x7f070058 -int id right_icon 0x7f070059 -int id right_side 0x7f07005a -int id screen 0x7f07005b -int id scrollIndicatorDown 0x7f07005c -int id scrollIndicatorUp 0x7f07005d -int id scrollView 0x7f07005e -int id search_badge 0x7f07005f -int id search_bar 0x7f070060 -int id search_button 0x7f070061 -int id search_close_btn 0x7f070062 -int id search_edit_frame 0x7f070063 -int id search_go_btn 0x7f070064 -int id search_mag_icon 0x7f070065 -int id search_plate 0x7f070066 -int id search_src_text 0x7f070067 -int id search_voice_btn 0x7f070068 -int id select_dialog_listview 0x7f070069 -int id shortcut 0x7f07006a -int id showCustom 0x7f07006b -int id showHome 0x7f07006c -int id showTitle 0x7f07006d -int id spacer 0x7f07006e -int id split_action_bar 0x7f07006f -int id spread 0x7f070070 -int id spread_inside 0x7f070071 -int id src_atop 0x7f070072 -int id src_in 0x7f070073 -int id src_over 0x7f070074 -int id standard 0x7f070075 -int id start 0x7f070076 -int id status_bar_latest_event_content 0x7f070077 -int id submenuarrow 0x7f070078 -int id submit_area 0x7f070079 -int id tabMode 0x7f07007a -int id text 0x7f07007b -int id text2 0x7f07007c -int id textSpacerNoButtons 0x7f07007d -int id textSpacerNoTitle 0x7f07007e -int id textView 0x7f07007f -int id time 0x7f070080 -int id title 0x7f070081 -int id titleDividerNoCustom 0x7f070082 -int id title_template 0x7f070083 -int id top 0x7f070084 -int id topPanel 0x7f070085 -int id uniform 0x7f070086 -int id up 0x7f070087 -int id useLogo 0x7f070088 -int id withText 0x7f070089 -int id wrap 0x7f07008a -int id wrap_content 0x7f07008b -int integer abc_config_activityDefaultDur 0x7f080000 -int integer abc_config_activityShortDur 0x7f080001 -int integer cancel_button_image_alpha 0x7f080002 -int integer config_tooltipAnimTime 0x7f080003 -int integer status_bar_notification_info_maxnum 0x7f080004 -int layout abc_action_bar_title_item 0x7f090000 -int layout abc_action_bar_up_container 0x7f090001 -int layout abc_action_bar_view_list_nav_layout 0x7f090002 -int layout abc_action_menu_item_layout 0x7f090003 -int layout abc_action_menu_layout 0x7f090004 -int layout abc_action_mode_bar 0x7f090005 -int layout abc_action_mode_close_item_material 0x7f090006 -int layout abc_activity_chooser_view 0x7f090007 -int layout abc_activity_chooser_view_list_item 0x7f090008 -int layout abc_alert_dialog_button_bar_material 0x7f090009 -int layout abc_alert_dialog_material 0x7f09000a -int layout abc_alert_dialog_title_material 0x7f09000b -int layout abc_dialog_title_material 0x7f09000c -int layout abc_expanded_menu_layout 0x7f09000d -int layout abc_list_menu_item_checkbox 0x7f09000e -int layout abc_list_menu_item_icon 0x7f09000f -int layout abc_list_menu_item_layout 0x7f090010 -int layout abc_list_menu_item_radio 0x7f090011 -int layout abc_popup_menu_header_item_layout 0x7f090012 -int layout abc_popup_menu_item_layout 0x7f090013 -int layout abc_screen_content_include 0x7f090014 -int layout abc_screen_simple 0x7f090015 -int layout abc_screen_simple_overlay_action_mode 0x7f090016 -int layout abc_screen_toolbar 0x7f090017 -int layout abc_search_dropdown_item_icons_2line 0x7f090018 -int layout abc_search_view 0x7f090019 -int layout abc_select_dialog_material 0x7f09001a -int layout activity_home 0x7f09001b -int layout activity_main 0x7f09001c -int layout notification_action 0x7f09001d -int layout notification_action_tombstone 0x7f09001e -int layout notification_media_action 0x7f09001f -int layout notification_media_cancel_action 0x7f090020 -int layout notification_template_big_media 0x7f090021 -int layout notification_template_big_media_custom 0x7f090022 -int layout notification_template_big_media_narrow 0x7f090023 -int layout notification_template_big_media_narrow_custom 0x7f090024 -int layout notification_template_custom_big 0x7f090025 -int layout notification_template_icon_group 0x7f090026 -int layout notification_template_lines_media 0x7f090027 -int layout notification_template_media 0x7f090028 -int layout notification_template_media_custom 0x7f090029 -int layout notification_template_part_chronometer 0x7f09002a -int layout notification_template_part_time 0x7f09002b -int layout select_dialog_item_material 0x7f09002c -int layout select_dialog_multichoice_material 0x7f09002d -int layout select_dialog_singlechoice_material 0x7f09002e -int layout support_simple_spinner_dropdown_item 0x7f09002f -int layout tooltip 0x7f090030 -int mipmap ic_launcher 0x7f0a0000 -int mipmap ic_launcher_round 0x7f0a0001 -int string abc_action_bar_home_description 0x7f0b0000 -int string abc_action_bar_home_description_format 0x7f0b0001 -int string abc_action_bar_home_subtitle_description_format 0x7f0b0002 -int string abc_action_bar_up_description 0x7f0b0003 -int string abc_action_menu_overflow_description 0x7f0b0004 -int string abc_action_mode_done 0x7f0b0005 -int string abc_activity_chooser_view_see_all 0x7f0b0006 -int string abc_activitychooserview_choose_application 0x7f0b0007 -int string abc_capital_off 0x7f0b0008 -int string abc_capital_on 0x7f0b0009 -int string abc_font_family_body_1_material 0x7f0b000a -int string abc_font_family_body_2_material 0x7f0b000b -int string abc_font_family_button_material 0x7f0b000c -int string abc_font_family_caption_material 0x7f0b000d -int string abc_font_family_display_1_material 0x7f0b000e -int string abc_font_family_display_2_material 0x7f0b000f -int string abc_font_family_display_3_material 0x7f0b0010 -int string abc_font_family_display_4_material 0x7f0b0011 -int string abc_font_family_headline_material 0x7f0b0012 -int string abc_font_family_menu_material 0x7f0b0013 -int string abc_font_family_subhead_material 0x7f0b0014 -int string abc_font_family_title_material 0x7f0b0015 -int string abc_search_hint 0x7f0b0016 -int string abc_searchview_description_clear 0x7f0b0017 -int string abc_searchview_description_query 0x7f0b0018 -int string abc_searchview_description_search 0x7f0b0019 -int string abc_searchview_description_submit 0x7f0b001a -int string abc_searchview_description_voice 0x7f0b001b -int string abc_shareactionprovider_share_with 0x7f0b001c -int string abc_shareactionprovider_share_with_application 0x7f0b001d -int string abc_toolbar_collapse_description 0x7f0b001e -int string app_name 0x7f0b001f -int string search_menu_title 0x7f0b0020 -int string status_bar_notification_info_overflow 0x7f0b0021 -int style AlertDialog_AppCompat 0x7f0c0000 -int style AlertDialog_AppCompat_Light 0x7f0c0001 -int style Animation_AppCompat_Dialog 0x7f0c0002 -int style Animation_AppCompat_DropDownUp 0x7f0c0003 -int style Animation_AppCompat_Tooltip 0x7f0c0004 -int style AppTheme 0x7f0c0005 -int style Base_AlertDialog_AppCompat 0x7f0c0006 -int style Base_AlertDialog_AppCompat_Light 0x7f0c0007 -int style Base_Animation_AppCompat_Dialog 0x7f0c0008 -int style Base_Animation_AppCompat_DropDownUp 0x7f0c0009 -int style Base_Animation_AppCompat_Tooltip 0x7f0c000a -int style Base_DialogWindowTitle_AppCompat 0x7f0c000b -int style Base_DialogWindowTitleBackground_AppCompat 0x7f0c000c -int style Base_TextAppearance_AppCompat 0x7f0c000d -int style Base_TextAppearance_AppCompat_Body1 0x7f0c000e -int style Base_TextAppearance_AppCompat_Body2 0x7f0c000f -int style Base_TextAppearance_AppCompat_Button 0x7f0c0010 -int style Base_TextAppearance_AppCompat_Caption 0x7f0c0011 -int style Base_TextAppearance_AppCompat_Display1 0x7f0c0012 -int style Base_TextAppearance_AppCompat_Display2 0x7f0c0013 -int style Base_TextAppearance_AppCompat_Display3 0x7f0c0014 -int style Base_TextAppearance_AppCompat_Display4 0x7f0c0015 -int style Base_TextAppearance_AppCompat_Headline 0x7f0c0016 -int style Base_TextAppearance_AppCompat_Inverse 0x7f0c0017 -int style Base_TextAppearance_AppCompat_Large 0x7f0c0018 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0c0019 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c001a -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c001b -int style Base_TextAppearance_AppCompat_Medium 0x7f0c001c -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0c001d -int style Base_TextAppearance_AppCompat_Menu 0x7f0c001e -int style Base_TextAppearance_AppCompat_SearchResult 0x7f0c001f -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c0020 -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0c0021 -int style Base_TextAppearance_AppCompat_Small 0x7f0c0022 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0c0023 -int style Base_TextAppearance_AppCompat_Subhead 0x7f0c0024 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0c0025 -int style Base_TextAppearance_AppCompat_Title 0x7f0c0026 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0c0027 -int style Base_TextAppearance_AppCompat_Tooltip 0x7f0c0028 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c0029 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c002a -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c002b -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c002c -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c002d -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c002e -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c002f -int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0c0030 -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0c0031 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0c0032 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0c0033 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0034 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0c0035 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c0036 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c0037 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0c0038 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c0039 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c003a -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c003b -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c003c -int style Base_Theme_AppCompat 0x7f0c003d -int style Base_Theme_AppCompat_CompactMenu 0x7f0c003e -int style Base_Theme_AppCompat_Dialog 0x7f0c003f -int style Base_Theme_AppCompat_Dialog_Alert 0x7f0c0040 -int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0c0041 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0c0042 -int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0c0043 -int style Base_Theme_AppCompat_Light 0x7f0c0044 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0c0045 -int style Base_Theme_AppCompat_Light_Dialog 0x7f0c0046 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0c0047 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0c0048 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0c0049 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0c004a -int style Base_ThemeOverlay_AppCompat 0x7f0c004b -int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0c004c -int style Base_ThemeOverlay_AppCompat_Dark 0x7f0c004d -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c004e -int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0c004f -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0c0050 -int style Base_ThemeOverlay_AppCompat_Light 0x7f0c0051 -int style Base_V11_Theme_AppCompat_Dialog 0x7f0c0052 -int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0c0053 -int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f0c0054 -int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0c0055 -int style Base_V12_Widget_AppCompat_EditText 0x7f0c0056 -int style Base_V21_Theme_AppCompat 0x7f0c0057 -int style Base_V21_Theme_AppCompat_Dialog 0x7f0c0058 -int style Base_V21_Theme_AppCompat_Light 0x7f0c0059 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0c005a -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0c005b -int style Base_V22_Theme_AppCompat 0x7f0c005c -int style Base_V22_Theme_AppCompat_Light 0x7f0c005d -int style Base_V23_Theme_AppCompat 0x7f0c005e -int style Base_V23_Theme_AppCompat_Light 0x7f0c005f -int style Base_V26_Theme_AppCompat 0x7f0c0060 -int style Base_V26_Theme_AppCompat_Light 0x7f0c0061 -int style Base_V26_Widget_AppCompat_Toolbar 0x7f0c0062 -int style Base_V7_Theme_AppCompat 0x7f0c0063 -int style Base_V7_Theme_AppCompat_Dialog 0x7f0c0064 -int style Base_V7_Theme_AppCompat_Light 0x7f0c0065 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0c0066 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0c0067 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0c0068 -int style Base_V7_Widget_AppCompat_EditText 0x7f0c0069 -int style Base_V7_Widget_AppCompat_Toolbar 0x7f0c006a -int style Base_Widget_AppCompat_ActionBar 0x7f0c006b -int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0c006c -int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0c006d -int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0c006e -int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0c006f -int style Base_Widget_AppCompat_ActionButton 0x7f0c0070 -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0c0071 -int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0c0072 -int style Base_Widget_AppCompat_ActionMode 0x7f0c0073 -int style Base_Widget_AppCompat_ActivityChooserView 0x7f0c0074 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0c0075 -int style Base_Widget_AppCompat_Button 0x7f0c0076 -int style Base_Widget_AppCompat_Button_Borderless 0x7f0c0077 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0c0078 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0c0079 -int style Base_Widget_AppCompat_Button_Colored 0x7f0c007a -int style Base_Widget_AppCompat_Button_Small 0x7f0c007b -int style Base_Widget_AppCompat_ButtonBar 0x7f0c007c -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0c007d -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0c007e -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0c007f -int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0c0080 -int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0c0081 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0c0082 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0c0083 -int style Base_Widget_AppCompat_EditText 0x7f0c0084 -int style Base_Widget_AppCompat_ImageButton 0x7f0c0085 -int style Base_Widget_AppCompat_Light_ActionBar 0x7f0c0086 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0c0087 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c0088 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0089 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c008a -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0c008b -int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0c008c -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c008d -int style Base_Widget_AppCompat_ListMenuView 0x7f0c008e -int style Base_Widget_AppCompat_ListPopupWindow 0x7f0c008f -int style Base_Widget_AppCompat_ListView 0x7f0c0090 -int style Base_Widget_AppCompat_ListView_DropDown 0x7f0c0091 -int style Base_Widget_AppCompat_ListView_Menu 0x7f0c0092 -int style Base_Widget_AppCompat_PopupMenu 0x7f0c0093 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0c0094 -int style Base_Widget_AppCompat_PopupWindow 0x7f0c0095 -int style Base_Widget_AppCompat_ProgressBar 0x7f0c0096 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0c0097 -int style Base_Widget_AppCompat_RatingBar 0x7f0c0098 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0c0099 -int style Base_Widget_AppCompat_RatingBar_Small 0x7f0c009a -int style Base_Widget_AppCompat_SearchView 0x7f0c009b -int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0c009c -int style Base_Widget_AppCompat_SeekBar 0x7f0c009d -int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0c009e -int style Base_Widget_AppCompat_Spinner 0x7f0c009f -int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0c00a0 -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0c00a1 -int style Base_Widget_AppCompat_Toolbar 0x7f0c00a2 -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c00a3 -int style Platform_AppCompat 0x7f0c00a4 -int style Platform_AppCompat_Light 0x7f0c00a5 -int style Platform_ThemeOverlay_AppCompat 0x7f0c00a6 -int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0c00a7 -int style Platform_ThemeOverlay_AppCompat_Light 0x7f0c00a8 -int style Platform_V11_AppCompat 0x7f0c00a9 -int style Platform_V11_AppCompat_Light 0x7f0c00aa -int style Platform_V14_AppCompat 0x7f0c00ab -int style Platform_V14_AppCompat_Light 0x7f0c00ac -int style Platform_V21_AppCompat 0x7f0c00ad -int style Platform_V21_AppCompat_Light 0x7f0c00ae -int style Platform_V25_AppCompat 0x7f0c00af -int style Platform_V25_AppCompat_Light 0x7f0c00b0 -int style Platform_Widget_AppCompat_Spinner 0x7f0c00b1 -int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0c00b2 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0c00b3 -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0c00b4 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0c00b5 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0c00b6 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0c00b7 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0c00b8 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0c00b9 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0c00ba -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0c00bb -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0c00bc -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0c00bd -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0c00be -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0c00bf -int style TextAppearance_AppCompat 0x7f0c00c0 -int style TextAppearance_AppCompat_Body1 0x7f0c00c1 -int style TextAppearance_AppCompat_Body2 0x7f0c00c2 -int style TextAppearance_AppCompat_Button 0x7f0c00c3 -int style TextAppearance_AppCompat_Caption 0x7f0c00c4 -int style TextAppearance_AppCompat_Display1 0x7f0c00c5 -int style TextAppearance_AppCompat_Display2 0x7f0c00c6 -int style TextAppearance_AppCompat_Display3 0x7f0c00c7 -int style TextAppearance_AppCompat_Display4 0x7f0c00c8 -int style TextAppearance_AppCompat_Headline 0x7f0c00c9 -int style TextAppearance_AppCompat_Inverse 0x7f0c00ca -int style TextAppearance_AppCompat_Large 0x7f0c00cb -int style TextAppearance_AppCompat_Large_Inverse 0x7f0c00cc -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0c00cd -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0c00ce -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c00cf -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c00d0 -int style TextAppearance_AppCompat_Medium 0x7f0c00d1 -int style TextAppearance_AppCompat_Medium_Inverse 0x7f0c00d2 -int style TextAppearance_AppCompat_Menu 0x7f0c00d3 -int style TextAppearance_AppCompat_Notification 0x7f0c00d4 -int style TextAppearance_AppCompat_Notification_Info 0x7f0c00d5 -int style TextAppearance_AppCompat_Notification_Info_Media 0x7f0c00d6 -int style TextAppearance_AppCompat_Notification_Line2 0x7f0c00d7 -int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0c00d8 -int style TextAppearance_AppCompat_Notification_Media 0x7f0c00d9 -int style TextAppearance_AppCompat_Notification_Time 0x7f0c00da -int style TextAppearance_AppCompat_Notification_Time_Media 0x7f0c00db -int style TextAppearance_AppCompat_Notification_Title 0x7f0c00dc -int style TextAppearance_AppCompat_Notification_Title_Media 0x7f0c00dd -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c00de -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0c00df -int style TextAppearance_AppCompat_Small 0x7f0c00e0 -int style TextAppearance_AppCompat_Small_Inverse 0x7f0c00e1 -int style TextAppearance_AppCompat_Subhead 0x7f0c00e2 -int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0c00e3 -int style TextAppearance_AppCompat_Title 0x7f0c00e4 -int style TextAppearance_AppCompat_Title_Inverse 0x7f0c00e5 -int style TextAppearance_AppCompat_Tooltip 0x7f0c00e6 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c00e7 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c00e8 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c00e9 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c00ea -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c00eb -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c00ec -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0c00ed -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c00ee -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0c00ef -int style TextAppearance_AppCompat_Widget_Button 0x7f0c00f0 -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0c00f1 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0c00f2 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0c00f3 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c00f4 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0c00f5 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c00f6 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c00f7 -int style TextAppearance_AppCompat_Widget_Switch 0x7f0c00f8 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c00f9 -int style TextAppearance_Compat_Notification 0x7f0c00fa -int style TextAppearance_Compat_Notification_Info 0x7f0c00fb -int style TextAppearance_Compat_Notification_Info_Media 0x7f0c00fc -int style TextAppearance_Compat_Notification_Line2 0x7f0c00fd -int style TextAppearance_Compat_Notification_Line2_Media 0x7f0c00fe -int style TextAppearance_Compat_Notification_Media 0x7f0c00ff -int style TextAppearance_Compat_Notification_Time 0x7f0c0100 -int style TextAppearance_Compat_Notification_Time_Media 0x7f0c0101 -int style TextAppearance_Compat_Notification_Title 0x7f0c0102 -int style TextAppearance_Compat_Notification_Title_Media 0x7f0c0103 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c0104 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c0105 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c0106 -int style Theme_AppCompat 0x7f0c0107 -int style Theme_AppCompat_CompactMenu 0x7f0c0108 -int style Theme_AppCompat_DayNight 0x7f0c0109 -int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0c010a -int style Theme_AppCompat_DayNight_Dialog 0x7f0c010b -int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0c010c -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0c010d -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0c010e -int style Theme_AppCompat_DayNight_NoActionBar 0x7f0c010f -int style Theme_AppCompat_Dialog 0x7f0c0110 -int style Theme_AppCompat_Dialog_Alert 0x7f0c0111 -int style Theme_AppCompat_Dialog_MinWidth 0x7f0c0112 -int style Theme_AppCompat_DialogWhenLarge 0x7f0c0113 -int style Theme_AppCompat_Light 0x7f0c0114 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0c0115 -int style Theme_AppCompat_Light_Dialog 0x7f0c0116 -int style Theme_AppCompat_Light_Dialog_Alert 0x7f0c0117 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0c0118 -int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0c0119 -int style Theme_AppCompat_Light_NoActionBar 0x7f0c011a -int style Theme_AppCompat_NoActionBar 0x7f0c011b -int style ThemeOverlay_AppCompat 0x7f0c011c -int style ThemeOverlay_AppCompat_ActionBar 0x7f0c011d -int style ThemeOverlay_AppCompat_Dark 0x7f0c011e -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c011f -int style ThemeOverlay_AppCompat_Dialog 0x7f0c0120 -int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0c0121 -int style ThemeOverlay_AppCompat_Light 0x7f0c0122 -int style Widget_AppCompat_ActionBar 0x7f0c0123 -int style Widget_AppCompat_ActionBar_Solid 0x7f0c0124 -int style Widget_AppCompat_ActionBar_TabBar 0x7f0c0125 -int style Widget_AppCompat_ActionBar_TabText 0x7f0c0126 -int style Widget_AppCompat_ActionBar_TabView 0x7f0c0127 -int style Widget_AppCompat_ActionButton 0x7f0c0128 -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0c0129 -int style Widget_AppCompat_ActionButton_Overflow 0x7f0c012a -int style Widget_AppCompat_ActionMode 0x7f0c012b -int style Widget_AppCompat_ActivityChooserView 0x7f0c012c -int style Widget_AppCompat_AutoCompleteTextView 0x7f0c012d -int style Widget_AppCompat_Button 0x7f0c012e -int style Widget_AppCompat_Button_Borderless 0x7f0c012f -int style Widget_AppCompat_Button_Borderless_Colored 0x7f0c0130 -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0c0131 -int style Widget_AppCompat_Button_Colored 0x7f0c0132 -int style Widget_AppCompat_Button_Small 0x7f0c0133 -int style Widget_AppCompat_ButtonBar 0x7f0c0134 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0c0135 -int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0c0136 -int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0c0137 -int style Widget_AppCompat_CompoundButton_Switch 0x7f0c0138 -int style Widget_AppCompat_DrawerArrowToggle 0x7f0c0139 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0c013a -int style Widget_AppCompat_EditText 0x7f0c013b -int style Widget_AppCompat_ImageButton 0x7f0c013c -int style Widget_AppCompat_Light_ActionBar 0x7f0c013d -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0c013e -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0c013f -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c0140 -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0c0141 -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0142 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c0143 -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0c0144 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0c0145 -int style Widget_AppCompat_Light_ActionButton 0x7f0c0146 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0c0147 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0c0148 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0c0149 -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0c014a -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0c014b -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0c014c -int style Widget_AppCompat_Light_ListPopupWindow 0x7f0c014d -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0c014e -int style Widget_AppCompat_Light_PopupMenu 0x7f0c014f -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c0150 -int style Widget_AppCompat_Light_SearchView 0x7f0c0151 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0c0152 -int style Widget_AppCompat_ListMenuView 0x7f0c0153 -int style Widget_AppCompat_ListPopupWindow 0x7f0c0154 -int style Widget_AppCompat_ListView 0x7f0c0155 -int style Widget_AppCompat_ListView_DropDown 0x7f0c0156 -int style Widget_AppCompat_ListView_Menu 0x7f0c0157 -int style Widget_AppCompat_PopupMenu 0x7f0c0158 -int style Widget_AppCompat_PopupMenu_Overflow 0x7f0c0159 -int style Widget_AppCompat_PopupWindow 0x7f0c015a -int style Widget_AppCompat_ProgressBar 0x7f0c015b -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0c015c -int style Widget_AppCompat_RatingBar 0x7f0c015d -int style Widget_AppCompat_RatingBar_Indicator 0x7f0c015e -int style Widget_AppCompat_RatingBar_Small 0x7f0c015f -int style Widget_AppCompat_SearchView 0x7f0c0160 -int style Widget_AppCompat_SearchView_ActionBar 0x7f0c0161 -int style Widget_AppCompat_SeekBar 0x7f0c0162 -int style Widget_AppCompat_SeekBar_Discrete 0x7f0c0163 -int style Widget_AppCompat_Spinner 0x7f0c0164 -int style Widget_AppCompat_Spinner_DropDown 0x7f0c0165 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c0166 -int style Widget_AppCompat_Spinner_Underlined 0x7f0c0167 -int style Widget_AppCompat_TextView_SpinnerItem 0x7f0c0168 -int style Widget_AppCompat_Toolbar 0x7f0c0169 -int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c016a -int style Widget_Compat_NotificationActionContainer 0x7f0c016b -int style Widget_Compat_NotificationActionText 0x7f0c016c -int[] styleable ActionBar { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 } -int styleable ActionBar_background 0 -int styleable ActionBar_backgroundSplit 1 -int styleable ActionBar_backgroundStacked 2 -int styleable ActionBar_contentInsetEnd 3 -int styleable ActionBar_contentInsetEndWithActions 4 -int styleable ActionBar_contentInsetLeft 5 -int styleable ActionBar_contentInsetRight 6 -int styleable ActionBar_contentInsetStart 7 -int styleable ActionBar_contentInsetStartWithNavigation 8 -int styleable ActionBar_customNavigationLayout 9 -int styleable ActionBar_displayOptions 10 -int styleable ActionBar_divider 11 -int styleable ActionBar_elevation 12 -int styleable ActionBar_height 13 -int styleable ActionBar_hideOnContentScroll 14 -int styleable ActionBar_homeAsUpIndicator 15 -int styleable ActionBar_homeLayout 16 -int styleable ActionBar_icon 17 -int styleable ActionBar_indeterminateProgressStyle 18 -int styleable ActionBar_itemPadding 19 -int styleable ActionBar_logo 20 -int styleable ActionBar_navigationMode 21 -int styleable ActionBar_popupTheme 22 -int styleable ActionBar_progressBarPadding 23 -int styleable ActionBar_progressBarStyle 24 -int styleable ActionBar_subtitle 25 -int styleable ActionBar_subtitleTextStyle 26 -int styleable ActionBar_title 27 -int styleable ActionBar_titleTextStyle 28 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 } -int styleable ActionMode_background 0 -int styleable ActionMode_backgroundSplit 1 -int styleable ActionMode_closeItemLayout 2 -int styleable ActionMode_height 3 -int styleable ActionMode_subtitleTextStyle 4 -int styleable ActionMode_titleTextStyle 5 -int[] styleable ActivityChooserView { 0x7f020075, 0x7f02008c } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable AlertDialog { 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonPanelSideLayout 1 -int styleable AlertDialog_listItemLayout 2 -int styleable AlertDialog_listLayout 3 -int styleable AlertDialog_multiChoiceItemLayout 4 -int styleable AlertDialog_showTitle 5 -int styleable AlertDialog_singleChoiceItemLayout 6 -int[] styleable AppCompatImageView { 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } -int styleable AppCompatTextHelper_android_textAppearance 0 -int styleable AppCompatTextHelper_android_drawableTop 1 -int styleable AppCompatTextHelper_android_drawableBottom 2 -int styleable AppCompatTextHelper_android_drawableLeft 3 -int styleable AppCompatTextHelper_android_drawableRight 4 -int styleable AppCompatTextHelper_android_drawableStart 5 -int styleable AppCompatTextHelper_android_drawableEnd 6 -int[] styleable AppCompatTextView { 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_autoSizeMaxTextSize 1 -int styleable AppCompatTextView_autoSizeMinTextSize 2 -int styleable AppCompatTextView_autoSizePresetSizes 3 -int styleable AppCompatTextView_autoSizeStepGranularity 4 -int styleable AppCompatTextView_autoSizeTextType 5 -int styleable AppCompatTextView_fontFamily 6 -int styleable AppCompatTextView_textAllCaps 7 -int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 } -int styleable AppCompatTheme_android_windowIsFloating 0 -int styleable AppCompatTheme_android_windowAnimationStyle 1 -int styleable AppCompatTheme_actionBarDivider 2 -int styleable AppCompatTheme_actionBarItemBackground 3 -int styleable AppCompatTheme_actionBarPopupTheme 4 -int styleable AppCompatTheme_actionBarSize 5 -int styleable AppCompatTheme_actionBarSplitStyle 6 -int styleable AppCompatTheme_actionBarStyle 7 -int styleable AppCompatTheme_actionBarTabBarStyle 8 -int styleable AppCompatTheme_actionBarTabStyle 9 -int styleable AppCompatTheme_actionBarTabTextStyle 10 -int styleable AppCompatTheme_actionBarTheme 11 -int styleable AppCompatTheme_actionBarWidgetTheme 12 -int styleable AppCompatTheme_actionButtonStyle 13 -int styleable AppCompatTheme_actionDropDownStyle 14 -int styleable AppCompatTheme_actionMenuTextAppearance 15 -int styleable AppCompatTheme_actionMenuTextColor 16 -int styleable AppCompatTheme_actionModeBackground 17 -int styleable AppCompatTheme_actionModeCloseButtonStyle 18 -int styleable AppCompatTheme_actionModeCloseDrawable 19 -int styleable AppCompatTheme_actionModeCopyDrawable 20 -int styleable AppCompatTheme_actionModeCutDrawable 21 -int styleable AppCompatTheme_actionModeFindDrawable 22 -int styleable AppCompatTheme_actionModePasteDrawable 23 -int styleable AppCompatTheme_actionModePopupWindowStyle 24 -int styleable AppCompatTheme_actionModeSelectAllDrawable 25 -int styleable AppCompatTheme_actionModeShareDrawable 26 -int styleable AppCompatTheme_actionModeSplitBackground 27 -int styleable AppCompatTheme_actionModeStyle 28 -int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -int styleable AppCompatTheme_actionOverflowButtonStyle 30 -int styleable AppCompatTheme_actionOverflowMenuStyle 31 -int styleable AppCompatTheme_activityChooserViewStyle 32 -int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -int styleable AppCompatTheme_alertDialogCenterButtons 34 -int styleable AppCompatTheme_alertDialogStyle 35 -int styleable AppCompatTheme_alertDialogTheme 36 -int styleable AppCompatTheme_autoCompleteTextViewStyle 37 -int styleable AppCompatTheme_borderlessButtonStyle 38 -int styleable AppCompatTheme_buttonBarButtonStyle 39 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 -int styleable AppCompatTheme_buttonBarStyle 43 -int styleable AppCompatTheme_buttonStyle 44 -int styleable AppCompatTheme_buttonStyleSmall 45 -int styleable AppCompatTheme_checkboxStyle 46 -int styleable AppCompatTheme_checkedTextViewStyle 47 -int styleable AppCompatTheme_colorAccent 48 -int styleable AppCompatTheme_colorBackgroundFloating 49 -int styleable AppCompatTheme_colorButtonNormal 50 -int styleable AppCompatTheme_colorControlActivated 51 -int styleable AppCompatTheme_colorControlHighlight 52 -int styleable AppCompatTheme_colorControlNormal 53 -int styleable AppCompatTheme_colorError 54 -int styleable AppCompatTheme_colorPrimary 55 -int styleable AppCompatTheme_colorPrimaryDark 56 -int styleable AppCompatTheme_colorSwitchThumbNormal 57 -int styleable AppCompatTheme_controlBackground 58 -int styleable AppCompatTheme_dialogPreferredPadding 59 -int styleable AppCompatTheme_dialogTheme 60 -int styleable AppCompatTheme_dividerHorizontal 61 -int styleable AppCompatTheme_dividerVertical 62 -int styleable AppCompatTheme_dropDownListViewStyle 63 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 64 -int styleable AppCompatTheme_editTextBackground 65 -int styleable AppCompatTheme_editTextColor 66 -int styleable AppCompatTheme_editTextStyle 67 -int styleable AppCompatTheme_homeAsUpIndicator 68 -int styleable AppCompatTheme_imageButtonStyle 69 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 70 -int styleable AppCompatTheme_listDividerAlertDialog 71 -int styleable AppCompatTheme_listMenuViewStyle 72 -int styleable AppCompatTheme_listPopupWindowStyle 73 -int styleable AppCompatTheme_listPreferredItemHeight 74 -int styleable AppCompatTheme_listPreferredItemHeightLarge 75 -int styleable AppCompatTheme_listPreferredItemHeightSmall 76 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 77 -int styleable AppCompatTheme_listPreferredItemPaddingRight 78 -int styleable AppCompatTheme_panelBackground 79 -int styleable AppCompatTheme_panelMenuListTheme 80 -int styleable AppCompatTheme_panelMenuListWidth 81 -int styleable AppCompatTheme_popupMenuStyle 82 -int styleable AppCompatTheme_popupWindowStyle 83 -int styleable AppCompatTheme_radioButtonStyle 84 -int styleable AppCompatTheme_ratingBarStyle 85 -int styleable AppCompatTheme_ratingBarStyleIndicator 86 -int styleable AppCompatTheme_ratingBarStyleSmall 87 -int styleable AppCompatTheme_searchViewStyle 88 -int styleable AppCompatTheme_seekBarStyle 89 -int styleable AppCompatTheme_selectableItemBackground 90 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 91 -int styleable AppCompatTheme_spinnerDropDownItemStyle 92 -int styleable AppCompatTheme_spinnerStyle 93 -int styleable AppCompatTheme_switchStyle 94 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 95 -int styleable AppCompatTheme_textAppearanceListItem 96 -int styleable AppCompatTheme_textAppearanceListItemSecondary 97 -int styleable AppCompatTheme_textAppearanceListItemSmall 98 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 99 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 101 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102 -int styleable AppCompatTheme_textColorAlertDialogListItem 103 -int styleable AppCompatTheme_textColorSearchUrl 104 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 105 -int styleable AppCompatTheme_toolbarStyle 106 -int styleable AppCompatTheme_tooltipForegroundColor 107 -int styleable AppCompatTheme_tooltipFrameBackground 108 -int styleable AppCompatTheme_windowActionBar 109 -int styleable AppCompatTheme_windowActionBarOverlay 110 -int styleable AppCompatTheme_windowActionModeOverlay 111 -int styleable AppCompatTheme_windowFixedHeightMajor 112 -int styleable AppCompatTheme_windowFixedHeightMinor 113 -int styleable AppCompatTheme_windowFixedWidthMajor 114 -int styleable AppCompatTheme_windowFixedWidthMinor 115 -int styleable AppCompatTheme_windowMinWidthMajor 116 -int styleable AppCompatTheme_windowMinWidthMinor 117 -int styleable AppCompatTheme_windowNoTitle 118 -int[] styleable ButtonBarLayout { 0x7f020026 } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f020027 } -int styleable ColorStateListItem_android_color 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_alpha 2 -int[] styleable CompoundButton { 0x01010107, 0x7f020043, 0x7f020044 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonTint 1 -int styleable CompoundButton_buttonTintMode 2 -int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 } -int styleable ConstraintLayout_Layout_android_orientation 0 -int styleable ConstraintLayout_Layout_android_maxWidth 1 -int styleable ConstraintLayout_Layout_android_maxHeight 2 -int styleable ConstraintLayout_Layout_android_minWidth 3 -int styleable ConstraintLayout_Layout_android_minHeight 4 -int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 -int styleable ConstraintLayout_Layout_barrierDirection 6 -int styleable ConstraintLayout_Layout_chainUseRtl 7 -int styleable ConstraintLayout_Layout_constraintSet 8 -int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 -int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 -int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 -int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 -int styleable ConstraintLayout_Layout_layout_constraintCircle 17 -int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 -int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 -int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 -int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 -int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 -int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 -int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 -int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 -int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 -int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 -int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 -int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 -int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 -int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 -int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 -int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 -int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 -int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 -int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 -int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 -int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 -int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 -int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 -int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 -int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 -int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 -int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 -int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 -int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 -int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 -int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 -int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 -int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 -int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 -int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 -int[] styleable ConstraintLayout_placeholder { 0x7f02005a, 0x7f020074 } -int styleable ConstraintLayout_placeholder_content 0 -int styleable ConstraintLayout_placeholder_emptyVisibility 1 -int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 } -int styleable ConstraintSet_android_orientation 0 -int styleable ConstraintSet_android_id 1 -int styleable ConstraintSet_android_visibility 2 -int styleable ConstraintSet_android_layout_width 3 -int styleable ConstraintSet_android_layout_height 4 -int styleable ConstraintSet_android_layout_marginLeft 5 -int styleable ConstraintSet_android_layout_marginTop 6 -int styleable ConstraintSet_android_layout_marginRight 7 -int styleable ConstraintSet_android_layout_marginBottom 8 -int styleable ConstraintSet_android_alpha 9 -int styleable ConstraintSet_android_transformPivotX 10 -int styleable ConstraintSet_android_transformPivotY 11 -int styleable ConstraintSet_android_translationX 12 -int styleable ConstraintSet_android_translationY 13 -int styleable ConstraintSet_android_scaleX 14 -int styleable ConstraintSet_android_scaleY 15 -int styleable ConstraintSet_android_rotation 16 -int styleable ConstraintSet_android_rotationX 17 -int styleable ConstraintSet_android_rotationY 18 -int styleable ConstraintSet_android_layout_marginStart 19 -int styleable ConstraintSet_android_layout_marginEnd 20 -int styleable ConstraintSet_android_translationZ 21 -int styleable ConstraintSet_android_elevation 22 -int styleable ConstraintSet_layout_constrainedHeight 23 -int styleable ConstraintSet_layout_constrainedWidth 24 -int styleable ConstraintSet_layout_constraintBaseline_creator 25 -int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 26 -int styleable ConstraintSet_layout_constraintBottom_creator 27 -int styleable ConstraintSet_layout_constraintBottom_toBottomOf 28 -int styleable ConstraintSet_layout_constraintBottom_toTopOf 29 -int styleable ConstraintSet_layout_constraintCircle 30 -int styleable ConstraintSet_layout_constraintCircleAngle 31 -int styleable ConstraintSet_layout_constraintCircleRadius 32 -int styleable ConstraintSet_layout_constraintDimensionRatio 33 -int styleable ConstraintSet_layout_constraintEnd_toEndOf 34 -int styleable ConstraintSet_layout_constraintEnd_toStartOf 35 -int styleable ConstraintSet_layout_constraintGuide_begin 36 -int styleable ConstraintSet_layout_constraintGuide_end 37 -int styleable ConstraintSet_layout_constraintGuide_percent 38 -int styleable ConstraintSet_layout_constraintHeight_default 39 -int styleable ConstraintSet_layout_constraintHeight_max 40 -int styleable ConstraintSet_layout_constraintHeight_min 41 -int styleable ConstraintSet_layout_constraintHeight_percent 42 -int styleable ConstraintSet_layout_constraintHorizontal_bias 43 -int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 44 -int styleable ConstraintSet_layout_constraintHorizontal_weight 45 -int styleable ConstraintSet_layout_constraintLeft_creator 46 -int styleable ConstraintSet_layout_constraintLeft_toLeftOf 47 -int styleable ConstraintSet_layout_constraintLeft_toRightOf 48 -int styleable ConstraintSet_layout_constraintRight_creator 49 -int styleable ConstraintSet_layout_constraintRight_toLeftOf 50 -int styleable ConstraintSet_layout_constraintRight_toRightOf 51 -int styleable ConstraintSet_layout_constraintStart_toEndOf 52 -int styleable ConstraintSet_layout_constraintStart_toStartOf 53 -int styleable ConstraintSet_layout_constraintTop_creator 54 -int styleable ConstraintSet_layout_constraintTop_toBottomOf 55 -int styleable ConstraintSet_layout_constraintTop_toTopOf 56 -int styleable ConstraintSet_layout_constraintVertical_bias 57 -int styleable ConstraintSet_layout_constraintVertical_chainStyle 58 -int styleable ConstraintSet_layout_constraintVertical_weight 59 -int styleable ConstraintSet_layout_constraintWidth_default 60 -int styleable ConstraintSet_layout_constraintWidth_max 61 -int styleable ConstraintSet_layout_constraintWidth_min 62 -int styleable ConstraintSet_layout_constraintWidth_percent 63 -int styleable ConstraintSet_layout_editor_absoluteX 64 -int styleable ConstraintSet_layout_editor_absoluteY 65 -int styleable ConstraintSet_layout_goneMarginBottom 66 -int styleable ConstraintSet_layout_goneMarginEnd 67 -int styleable ConstraintSet_layout_goneMarginLeft 68 -int styleable ConstraintSet_layout_goneMarginRight 69 -int styleable ConstraintSet_layout_goneMarginStart 70 -int styleable ConstraintSet_layout_goneMarginTop 71 -int[] styleable DrawerArrowToggle { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 } -int styleable DrawerArrowToggle_arrowHeadLength 0 -int styleable DrawerArrowToggle_arrowShaftLength 1 -int styleable DrawerArrowToggle_barLength 2 -int styleable DrawerArrowToggle_color 3 -int styleable DrawerArrowToggle_drawableSize 4 -int styleable DrawerArrowToggle_gapBetweenBars 5 -int styleable DrawerArrowToggle_spinBars 6 -int styleable DrawerArrowToggle_thickness 7 -int[] styleable FontFamily { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int[] styleable FontFamilyFont { 0x7f020076, 0x7f02007e, 0x7f02007f } -int styleable FontFamilyFont_font 0 -int styleable FontFamilyFont_fontStyle 1 -int styleable FontFamilyFont_fontWeight 2 -int[] styleable LinearConstraintLayout { 0x010100c4 } -int styleable LinearConstraintLayout_android_orientation 0 -int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 } -int styleable LinearLayoutCompat_android_gravity 0 -int styleable LinearLayoutCompat_android_orientation 1 -int styleable LinearLayoutCompat_android_baselineAligned 2 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 6 -int styleable LinearLayoutCompat_measureWithLargestChild 7 -int styleable LinearLayoutCompat_showDividers 8 -int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_width 1 -int styleable LinearLayoutCompat_Layout_android_layout_height 2 -int styleable LinearLayoutCompat_Layout_android_layout_weight 3 -int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_visible 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_checkableBehavior 5 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 } -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_actionLayout 13 -int styleable MenuItem_actionProviderClass 14 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_alphabeticModifiers 16 -int styleable MenuItem_contentDescription 17 -int styleable MenuItem_iconTint 18 -int styleable MenuItem_iconTintMode 19 -int styleable MenuItem_numericModifiers 20 -int styleable MenuItem_showAsAction 21 -int styleable MenuItem_tooltipText 22 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, 0x7f0200fb } -int styleable MenuView_android_windowAnimationStyle 0 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200d6 } -int styleable PopupWindow_android_popupBackground 0 -int styleable PopupWindow_android_popupAnimationStyle 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x7f0200fa } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x7f0200d7, 0x7f0200da } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_maxWidth 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_imeOptions 3 -int styleable SearchView_closeIcon 4 -int styleable SearchView_commitIcon 5 -int styleable SearchView_defaultQueryHint 6 -int styleable SearchView_goIcon 7 -int styleable SearchView_iconifiedByDefault 8 -int styleable SearchView_layout 9 -int styleable SearchView_queryBackground 10 -int styleable SearchView_queryHint 11 -int styleable SearchView_searchHintIcon 12 -int styleable SearchView_searchIcon 13 -int styleable SearchView_submitBackground 14 -int styleable SearchView_suggestionRowLayout 15 -int styleable SearchView_voiceIcon 16 -int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200df } -int styleable Spinner_android_entries 0 -int styleable Spinner_android_popupBackground 1 -int styleable Spinner_android_prompt 2 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_popupTheme 4 -int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c } -int styleable SwitchCompat_android_textOn 0 -int styleable SwitchCompat_android_textOff 1 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 3 -int styleable SwitchCompat_splitTrack 4 -int styleable SwitchCompat_switchMinWidth 5 -int styleable SwitchCompat_switchPadding 6 -int styleable SwitchCompat_switchTextAppearance 7 -int styleable SwitchCompat_thumbTextPadding 8 -int styleable SwitchCompat_thumbTint 9 -int styleable SwitchCompat_thumbTintMode 10 -int styleable SwitchCompat_track 11 -int styleable SwitchCompat_trackTint 12 -int styleable SwitchCompat_trackTintMode 13 -int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, 0x7f020106 } -int styleable TextAppearance_android_textSize 0 -int styleable TextAppearance_android_typeface 1 -int styleable TextAppearance_android_textStyle 2 -int styleable TextAppearance_android_textColor 3 -int styleable TextAppearance_android_textColorHint 4 -int styleable TextAppearance_android_textColorLink 5 -int styleable TextAppearance_android_shadowColor 6 -int styleable TextAppearance_android_shadowDx 7 -int styleable TextAppearance_android_shadowDy 8 -int styleable TextAppearance_android_shadowRadius 9 -int styleable TextAppearance_android_fontFamily 10 -int styleable TextAppearance_fontFamily 11 -int styleable TextAppearance_textAllCaps 12 -int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_buttonGravity 2 -int styleable Toolbar_collapseContentDescription 3 -int styleable Toolbar_collapseIcon 4 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetEndWithActions 6 -int styleable Toolbar_contentInsetLeft 7 -int styleable Toolbar_contentInsetRight 8 -int styleable Toolbar_contentInsetStart 9 -int styleable Toolbar_contentInsetStartWithNavigation 10 -int styleable Toolbar_logo 11 -int styleable Toolbar_logoDescription 12 -int styleable Toolbar_maxButtonHeight 13 -int styleable Toolbar_navigationContentDescription 14 -int styleable Toolbar_navigationIcon 15 -int styleable Toolbar_popupTheme 16 -int styleable Toolbar_subtitle 17 -int styleable Toolbar_subtitleTextAppearance 18 -int styleable Toolbar_subtitleTextColor 19 -int styleable Toolbar_title 20 -int styleable Toolbar_titleMargin 21 -int styleable Toolbar_titleMarginBottom 22 -int styleable Toolbar_titleMarginEnd 23 -int styleable Toolbar_titleMarginStart 24 -int styleable Toolbar_titleMarginTop 25 -int styleable Toolbar_titleMargins 26 -int styleable Toolbar_titleTextAppearance 27 -int styleable Toolbar_titleTextColor 28 -int[] styleable View { 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, 0x7f020111 } -int styleable View_android_theme 0 -int styleable View_android_focusable 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020034, 0x7f020035 } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_layout 1 -int styleable ViewStubCompat_android_inflatedId 2 diff --git a/MVPModel/retrofitdemo/build/intermediates/splits-support/androidTest/debug/split-list.gson b/MVPModel/retrofitdemo/build/intermediates/splits-support/androidTest/debug/split-list.gson deleted file mode 100644 index edf6cf1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/splits-support/androidTest/debug/split-list.gson +++ /dev/null @@ -1 +0,0 @@ -[{"splitType":"DENSITY","values":[]},{"splitType":"LANGUAGE","values":[]},{"splitType":"ABI","values":[]},{"splitType":"ResConfigs","values":[]}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/splits-support/debug/split-list.gson b/MVPModel/retrofitdemo/build/intermediates/splits-support/debug/split-list.gson deleted file mode 100644 index edf6cf1..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/splits-support/debug/split-list.gson +++ /dev/null @@ -1 +0,0 @@ -[{"splitType":"DENSITY","values":[]},{"splitType":"LANGUAGE","values":[]},{"splitType":"ABI","values":[]},{"splitType":"ResConfigs","values":[]}] \ No newline at end of file diff --git a/MVPModel/retrofitdemo/build/intermediates/symbols/androidTest/debug/R.txt b/MVPModel/retrofitdemo/build/intermediates/symbols/androidTest/debug/R.txt deleted file mode 100644 index e7b4454..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/symbols/androidTest/debug/R.txt +++ /dev/null @@ -1,1741 +0,0 @@ -int anim abc_fade_in 0x7f010000 -int anim abc_fade_out 0x7f010001 -int anim abc_grow_fade_in_from_bottom 0x7f010002 -int anim abc_popup_enter 0x7f010003 -int anim abc_popup_exit 0x7f010004 -int anim abc_shrink_fade_out_from_bottom 0x7f010005 -int anim abc_slide_in_bottom 0x7f010006 -int anim abc_slide_in_top 0x7f010007 -int anim abc_slide_out_bottom 0x7f010008 -int anim abc_slide_out_top 0x7f010009 -int anim tooltip_enter 0x7f01000a -int anim tooltip_exit 0x7f01000b -int attr actionBarDivider 0x7f020000 -int attr actionBarItemBackground 0x7f020001 -int attr actionBarPopupTheme 0x7f020002 -int attr actionBarSize 0x7f020003 -int attr actionBarSplitStyle 0x7f020004 -int attr actionBarStyle 0x7f020005 -int attr actionBarTabBarStyle 0x7f020006 -int attr actionBarTabStyle 0x7f020007 -int attr actionBarTabTextStyle 0x7f020008 -int attr actionBarTheme 0x7f020009 -int attr actionBarWidgetTheme 0x7f02000a -int attr actionButtonStyle 0x7f02000b -int attr actionDropDownStyle 0x7f02000c -int attr actionLayout 0x7f02000d -int attr actionMenuTextAppearance 0x7f02000e -int attr actionMenuTextColor 0x7f02000f -int attr actionModeBackground 0x7f020010 -int attr actionModeCloseButtonStyle 0x7f020011 -int attr actionModeCloseDrawable 0x7f020012 -int attr actionModeCopyDrawable 0x7f020013 -int attr actionModeCutDrawable 0x7f020014 -int attr actionModeFindDrawable 0x7f020015 -int attr actionModePasteDrawable 0x7f020016 -int attr actionModePopupWindowStyle 0x7f020017 -int attr actionModeSelectAllDrawable 0x7f020018 -int attr actionModeShareDrawable 0x7f020019 -int attr actionModeSplitBackground 0x7f02001a -int attr actionModeStyle 0x7f02001b -int attr actionModeWebSearchDrawable 0x7f02001c -int attr actionOverflowButtonStyle 0x7f02001d -int attr actionOverflowMenuStyle 0x7f02001e -int attr actionProviderClass 0x7f02001f -int attr actionViewClass 0x7f020020 -int attr activityChooserViewStyle 0x7f020021 -int attr alertDialogButtonGroupStyle 0x7f020022 -int attr alertDialogCenterButtons 0x7f020023 -int attr alertDialogStyle 0x7f020024 -int attr alertDialogTheme 0x7f020025 -int attr allowStacking 0x7f020026 -int attr alpha 0x7f020027 -int attr alphabeticModifiers 0x7f020028 -int attr arrowHeadLength 0x7f020029 -int attr arrowShaftLength 0x7f02002a -int attr autoCompleteTextViewStyle 0x7f02002b -int attr autoSizeMaxTextSize 0x7f02002c -int attr autoSizeMinTextSize 0x7f02002d -int attr autoSizePresetSizes 0x7f02002e -int attr autoSizeStepGranularity 0x7f02002f -int attr autoSizeTextType 0x7f020030 -int attr background 0x7f020031 -int attr backgroundSplit 0x7f020032 -int attr backgroundStacked 0x7f020033 -int attr backgroundTint 0x7f020034 -int attr backgroundTintMode 0x7f020035 -int attr barLength 0x7f020036 -int attr barrierAllowsGoneWidgets 0x7f020037 -int attr barrierDirection 0x7f020038 -int attr borderlessButtonStyle 0x7f020039 -int attr buttonBarButtonStyle 0x7f02003a -int attr buttonBarNegativeButtonStyle 0x7f02003b -int attr buttonBarNeutralButtonStyle 0x7f02003c -int attr buttonBarPositiveButtonStyle 0x7f02003d -int attr buttonBarStyle 0x7f02003e -int attr buttonGravity 0x7f02003f -int attr buttonPanelSideLayout 0x7f020040 -int attr buttonStyle 0x7f020041 -int attr buttonStyleSmall 0x7f020042 -int attr buttonTint 0x7f020043 -int attr buttonTintMode 0x7f020044 -int attr chainUseRtl 0x7f020045 -int attr checkboxStyle 0x7f020046 -int attr checkedTextViewStyle 0x7f020047 -int attr closeIcon 0x7f020048 -int attr closeItemLayout 0x7f020049 -int attr collapseContentDescription 0x7f02004a -int attr collapseIcon 0x7f02004b -int attr color 0x7f02004c -int attr colorAccent 0x7f02004d -int attr colorBackgroundFloating 0x7f02004e -int attr colorButtonNormal 0x7f02004f -int attr colorControlActivated 0x7f020050 -int attr colorControlHighlight 0x7f020051 -int attr colorControlNormal 0x7f020052 -int attr colorError 0x7f020053 -int attr colorPrimary 0x7f020054 -int attr colorPrimaryDark 0x7f020055 -int attr colorSwitchThumbNormal 0x7f020056 -int attr commitIcon 0x7f020057 -int attr constraintSet 0x7f020058 -int attr constraint_referenced_ids 0x7f020059 -int attr content 0x7f02005a -int attr contentDescription 0x7f02005b -int attr contentInsetEnd 0x7f02005c -int attr contentInsetEndWithActions 0x7f02005d -int attr contentInsetLeft 0x7f02005e -int attr contentInsetRight 0x7f02005f -int attr contentInsetStart 0x7f020060 -int attr contentInsetStartWithNavigation 0x7f020061 -int attr controlBackground 0x7f020062 -int attr customNavigationLayout 0x7f020063 -int attr defaultQueryHint 0x7f020064 -int attr dialogPreferredPadding 0x7f020065 -int attr dialogTheme 0x7f020066 -int attr displayOptions 0x7f020067 -int attr divider 0x7f020068 -int attr dividerHorizontal 0x7f020069 -int attr dividerPadding 0x7f02006a -int attr dividerVertical 0x7f02006b -int attr drawableSize 0x7f02006c -int attr drawerArrowStyle 0x7f02006d -int attr dropDownListViewStyle 0x7f02006e -int attr dropdownListPreferredItemHeight 0x7f02006f -int attr editTextBackground 0x7f020070 -int attr editTextColor 0x7f020071 -int attr editTextStyle 0x7f020072 -int attr elevation 0x7f020073 -int attr emptyVisibility 0x7f020074 -int attr expandActivityOverflowButtonDrawable 0x7f020075 -int attr font 0x7f020076 -int attr fontFamily 0x7f020077 -int attr fontProviderAuthority 0x7f020078 -int attr fontProviderCerts 0x7f020079 -int attr fontProviderFetchStrategy 0x7f02007a -int attr fontProviderFetchTimeout 0x7f02007b -int attr fontProviderPackage 0x7f02007c -int attr fontProviderQuery 0x7f02007d -int attr fontStyle 0x7f02007e -int attr fontWeight 0x7f02007f -int attr gapBetweenBars 0x7f020080 -int attr goIcon 0x7f020081 -int attr height 0x7f020082 -int attr hideOnContentScroll 0x7f020083 -int attr homeAsUpIndicator 0x7f020084 -int attr homeLayout 0x7f020085 -int attr icon 0x7f020086 -int attr iconTint 0x7f020087 -int attr iconTintMode 0x7f020088 -int attr iconifiedByDefault 0x7f020089 -int attr imageButtonStyle 0x7f02008a -int attr indeterminateProgressStyle 0x7f02008b -int attr initialActivityCount 0x7f02008c -int attr isLightTheme 0x7f02008d -int attr itemPadding 0x7f02008e -int attr layout 0x7f02008f -int attr layout_constrainedHeight 0x7f020090 -int attr layout_constrainedWidth 0x7f020091 -int attr layout_constraintBaseline_creator 0x7f020092 -int attr layout_constraintBaseline_toBaselineOf 0x7f020093 -int attr layout_constraintBottom_creator 0x7f020094 -int attr layout_constraintBottom_toBottomOf 0x7f020095 -int attr layout_constraintBottom_toTopOf 0x7f020096 -int attr layout_constraintCircle 0x7f020097 -int attr layout_constraintCircleAngle 0x7f020098 -int attr layout_constraintCircleRadius 0x7f020099 -int attr layout_constraintDimensionRatio 0x7f02009a -int attr layout_constraintEnd_toEndOf 0x7f02009b -int attr layout_constraintEnd_toStartOf 0x7f02009c -int attr layout_constraintGuide_begin 0x7f02009d -int attr layout_constraintGuide_end 0x7f02009e -int attr layout_constraintGuide_percent 0x7f02009f -int attr layout_constraintHeight_default 0x7f0200a0 -int attr layout_constraintHeight_max 0x7f0200a1 -int attr layout_constraintHeight_min 0x7f0200a2 -int attr layout_constraintHeight_percent 0x7f0200a3 -int attr layout_constraintHorizontal_bias 0x7f0200a4 -int attr layout_constraintHorizontal_chainStyle 0x7f0200a5 -int attr layout_constraintHorizontal_weight 0x7f0200a6 -int attr layout_constraintLeft_creator 0x7f0200a7 -int attr layout_constraintLeft_toLeftOf 0x7f0200a8 -int attr layout_constraintLeft_toRightOf 0x7f0200a9 -int attr layout_constraintRight_creator 0x7f0200aa -int attr layout_constraintRight_toLeftOf 0x7f0200ab -int attr layout_constraintRight_toRightOf 0x7f0200ac -int attr layout_constraintStart_toEndOf 0x7f0200ad -int attr layout_constraintStart_toStartOf 0x7f0200ae -int attr layout_constraintTop_creator 0x7f0200af -int attr layout_constraintTop_toBottomOf 0x7f0200b0 -int attr layout_constraintTop_toTopOf 0x7f0200b1 -int attr layout_constraintVertical_bias 0x7f0200b2 -int attr layout_constraintVertical_chainStyle 0x7f0200b3 -int attr layout_constraintVertical_weight 0x7f0200b4 -int attr layout_constraintWidth_default 0x7f0200b5 -int attr layout_constraintWidth_max 0x7f0200b6 -int attr layout_constraintWidth_min 0x7f0200b7 -int attr layout_constraintWidth_percent 0x7f0200b8 -int attr layout_editor_absoluteX 0x7f0200b9 -int attr layout_editor_absoluteY 0x7f0200ba -int attr layout_goneMarginBottom 0x7f0200bb -int attr layout_goneMarginEnd 0x7f0200bc -int attr layout_goneMarginLeft 0x7f0200bd -int attr layout_goneMarginRight 0x7f0200be -int attr layout_goneMarginStart 0x7f0200bf -int attr layout_goneMarginTop 0x7f0200c0 -int attr layout_optimizationLevel 0x7f0200c1 -int attr listChoiceBackgroundIndicator 0x7f0200c2 -int attr listDividerAlertDialog 0x7f0200c3 -int attr listItemLayout 0x7f0200c4 -int attr listLayout 0x7f0200c5 -int attr listMenuViewStyle 0x7f0200c6 -int attr listPopupWindowStyle 0x7f0200c7 -int attr listPreferredItemHeight 0x7f0200c8 -int attr listPreferredItemHeightLarge 0x7f0200c9 -int attr listPreferredItemHeightSmall 0x7f0200ca -int attr listPreferredItemPaddingLeft 0x7f0200cb -int attr listPreferredItemPaddingRight 0x7f0200cc -int attr logo 0x7f0200cd -int attr logoDescription 0x7f0200ce -int attr maxButtonHeight 0x7f0200cf -int attr measureWithLargestChild 0x7f0200d0 -int attr multiChoiceItemLayout 0x7f0200d1 -int attr navigationContentDescription 0x7f0200d2 -int attr navigationIcon 0x7f0200d3 -int attr navigationMode 0x7f0200d4 -int attr numericModifiers 0x7f0200d5 -int attr overlapAnchor 0x7f0200d6 -int attr paddingBottomNoButtons 0x7f0200d7 -int attr paddingEnd 0x7f0200d8 -int attr paddingStart 0x7f0200d9 -int attr paddingTopNoTitle 0x7f0200da -int attr panelBackground 0x7f0200db -int attr panelMenuListTheme 0x7f0200dc -int attr panelMenuListWidth 0x7f0200dd -int attr popupMenuStyle 0x7f0200de -int attr popupTheme 0x7f0200df -int attr popupWindowStyle 0x7f0200e0 -int attr preserveIconSpacing 0x7f0200e1 -int attr progressBarPadding 0x7f0200e2 -int attr progressBarStyle 0x7f0200e3 -int attr queryBackground 0x7f0200e4 -int attr queryHint 0x7f0200e5 -int attr radioButtonStyle 0x7f0200e6 -int attr ratingBarStyle 0x7f0200e7 -int attr ratingBarStyleIndicator 0x7f0200e8 -int attr ratingBarStyleSmall 0x7f0200e9 -int attr searchHintIcon 0x7f0200ea -int attr searchIcon 0x7f0200eb -int attr searchViewStyle 0x7f0200ec -int attr seekBarStyle 0x7f0200ed -int attr selectableItemBackground 0x7f0200ee -int attr selectableItemBackgroundBorderless 0x7f0200ef -int attr showAsAction 0x7f0200f0 -int attr showDividers 0x7f0200f1 -int attr showText 0x7f0200f2 -int attr showTitle 0x7f0200f3 -int attr singleChoiceItemLayout 0x7f0200f4 -int attr spinBars 0x7f0200f5 -int attr spinnerDropDownItemStyle 0x7f0200f6 -int attr spinnerStyle 0x7f0200f7 -int attr splitTrack 0x7f0200f8 -int attr srcCompat 0x7f0200f9 -int attr state_above_anchor 0x7f0200fa -int attr subMenuArrow 0x7f0200fb -int attr submitBackground 0x7f0200fc -int attr subtitle 0x7f0200fd -int attr subtitleTextAppearance 0x7f0200fe -int attr subtitleTextColor 0x7f0200ff -int attr subtitleTextStyle 0x7f020100 -int attr suggestionRowLayout 0x7f020101 -int attr switchMinWidth 0x7f020102 -int attr switchPadding 0x7f020103 -int attr switchStyle 0x7f020104 -int attr switchTextAppearance 0x7f020105 -int attr textAllCaps 0x7f020106 -int attr textAppearanceLargePopupMenu 0x7f020107 -int attr textAppearanceListItem 0x7f020108 -int attr textAppearanceListItemSecondary 0x7f020109 -int attr textAppearanceListItemSmall 0x7f02010a -int attr textAppearancePopupMenuHeader 0x7f02010b -int attr textAppearanceSearchResultSubtitle 0x7f02010c -int attr textAppearanceSearchResultTitle 0x7f02010d -int attr textAppearanceSmallPopupMenu 0x7f02010e -int attr textColorAlertDialogListItem 0x7f02010f -int attr textColorSearchUrl 0x7f020110 -int attr theme 0x7f020111 -int attr thickness 0x7f020112 -int attr thumbTextPadding 0x7f020113 -int attr thumbTint 0x7f020114 -int attr thumbTintMode 0x7f020115 -int attr tickMark 0x7f020116 -int attr tickMarkTint 0x7f020117 -int attr tickMarkTintMode 0x7f020118 -int attr tint 0x7f020119 -int attr tintMode 0x7f02011a -int attr title 0x7f02011b -int attr titleMargin 0x7f02011c -int attr titleMarginBottom 0x7f02011d -int attr titleMarginEnd 0x7f02011e -int attr titleMarginStart 0x7f02011f -int attr titleMarginTop 0x7f020120 -int attr titleMargins 0x7f020121 -int attr titleTextAppearance 0x7f020122 -int attr titleTextColor 0x7f020123 -int attr titleTextStyle 0x7f020124 -int attr toolbarNavigationButtonStyle 0x7f020125 -int attr toolbarStyle 0x7f020126 -int attr tooltipForegroundColor 0x7f020127 -int attr tooltipFrameBackground 0x7f020128 -int attr tooltipText 0x7f020129 -int attr track 0x7f02012a -int attr trackTint 0x7f02012b -int attr trackTintMode 0x7f02012c -int attr voiceIcon 0x7f02012d -int attr windowActionBar 0x7f02012e -int attr windowActionBarOverlay 0x7f02012f -int attr windowActionModeOverlay 0x7f020130 -int attr windowFixedHeightMajor 0x7f020131 -int attr windowFixedHeightMinor 0x7f020132 -int attr windowFixedWidthMajor 0x7f020133 -int attr windowFixedWidthMinor 0x7f020134 -int attr windowMinWidthMajor 0x7f020135 -int attr windowMinWidthMinor 0x7f020136 -int attr windowNoTitle 0x7f020137 -int bool abc_action_bar_embed_tabs 0x7f030000 -int bool abc_allow_stacked_button_bar 0x7f030001 -int bool abc_config_actionMenuItemAllCaps 0x7f030002 -int bool abc_config_closeDialogWhenTouchOutside 0x7f030003 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f030004 -int color abc_background_cache_hint_selector_material_dark 0x7f040000 -int color abc_background_cache_hint_selector_material_light 0x7f040001 -int color abc_btn_colored_borderless_text_material 0x7f040002 -int color abc_btn_colored_text_material 0x7f040003 -int color abc_color_highlight_material 0x7f040004 -int color abc_hint_foreground_material_dark 0x7f040005 -int color abc_hint_foreground_material_light 0x7f040006 -int color abc_input_method_navigation_guard 0x7f040007 -int color abc_primary_text_disable_only_material_dark 0x7f040008 -int color abc_primary_text_disable_only_material_light 0x7f040009 -int color abc_primary_text_material_dark 0x7f04000a -int color abc_primary_text_material_light 0x7f04000b -int color abc_search_url_text 0x7f04000c -int color abc_search_url_text_normal 0x7f04000d -int color abc_search_url_text_pressed 0x7f04000e -int color abc_search_url_text_selected 0x7f04000f -int color abc_secondary_text_material_dark 0x7f040010 -int color abc_secondary_text_material_light 0x7f040011 -int color abc_tint_btn_checkable 0x7f040012 -int color abc_tint_default 0x7f040013 -int color abc_tint_edittext 0x7f040014 -int color abc_tint_seek_thumb 0x7f040015 -int color abc_tint_spinner 0x7f040016 -int color abc_tint_switch_track 0x7f040017 -int color accent_material_dark 0x7f040018 -int color accent_material_light 0x7f040019 -int color background_floating_material_dark 0x7f04001a -int color background_floating_material_light 0x7f04001b -int color background_material_dark 0x7f04001c -int color background_material_light 0x7f04001d -int color bright_foreground_disabled_material_dark 0x7f04001e -int color bright_foreground_disabled_material_light 0x7f04001f -int color bright_foreground_inverse_material_dark 0x7f040020 -int color bright_foreground_inverse_material_light 0x7f040021 -int color bright_foreground_material_dark 0x7f040022 -int color bright_foreground_material_light 0x7f040023 -int color button_material_dark 0x7f040024 -int color button_material_light 0x7f040025 -int color dim_foreground_disabled_material_dark 0x7f040026 -int color dim_foreground_disabled_material_light 0x7f040027 -int color dim_foreground_material_dark 0x7f040028 -int color dim_foreground_material_light 0x7f040029 -int color error_color_material 0x7f04002a -int color foreground_material_dark 0x7f04002b -int color foreground_material_light 0x7f04002c -int color highlighted_text_material_dark 0x7f04002d -int color highlighted_text_material_light 0x7f04002e -int color material_blue_grey_800 0x7f04002f -int color material_blue_grey_900 0x7f040030 -int color material_blue_grey_950 0x7f040031 -int color material_deep_teal_200 0x7f040032 -int color material_deep_teal_500 0x7f040033 -int color material_grey_100 0x7f040034 -int color material_grey_300 0x7f040035 -int color material_grey_50 0x7f040036 -int color material_grey_600 0x7f040037 -int color material_grey_800 0x7f040038 -int color material_grey_850 0x7f040039 -int color material_grey_900 0x7f04003a -int color notification_action_color_filter 0x7f04003b -int color notification_icon_bg_color 0x7f04003c -int color notification_material_background_media_default_color 0x7f04003d -int color primary_dark_material_dark 0x7f04003e -int color primary_dark_material_light 0x7f04003f -int color primary_material_dark 0x7f040040 -int color primary_material_light 0x7f040041 -int color primary_text_default_material_dark 0x7f040042 -int color primary_text_default_material_light 0x7f040043 -int color primary_text_disabled_material_dark 0x7f040044 -int color primary_text_disabled_material_light 0x7f040045 -int color ripple_material_dark 0x7f040046 -int color ripple_material_light 0x7f040047 -int color secondary_text_default_material_dark 0x7f040048 -int color secondary_text_default_material_light 0x7f040049 -int color secondary_text_disabled_material_dark 0x7f04004a -int color secondary_text_disabled_material_light 0x7f04004b -int color switch_thumb_disabled_material_dark 0x7f04004c -int color switch_thumb_disabled_material_light 0x7f04004d -int color switch_thumb_material_dark 0x7f04004e -int color switch_thumb_material_light 0x7f04004f -int color switch_thumb_normal_material_dark 0x7f040050 -int color switch_thumb_normal_material_light 0x7f040051 -int color tooltip_background_dark 0x7f040052 -int color tooltip_background_light 0x7f040053 -int dimen abc_action_bar_content_inset_material 0x7f050000 -int dimen abc_action_bar_content_inset_with_nav 0x7f050001 -int dimen abc_action_bar_default_height_material 0x7f050002 -int dimen abc_action_bar_default_padding_end_material 0x7f050003 -int dimen abc_action_bar_default_padding_start_material 0x7f050004 -int dimen abc_action_bar_elevation_material 0x7f050005 -int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006 -int dimen abc_action_bar_overflow_padding_end_material 0x7f050007 -int dimen abc_action_bar_overflow_padding_start_material 0x7f050008 -int dimen abc_action_bar_progress_bar_size 0x7f050009 -int dimen abc_action_bar_stacked_max_height 0x7f05000a -int dimen abc_action_bar_stacked_tab_max_width 0x7f05000b -int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000c -int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000d -int dimen abc_action_button_min_height_material 0x7f05000e -int dimen abc_action_button_min_width_material 0x7f05000f -int dimen abc_action_button_min_width_overflow_material 0x7f050010 -int dimen abc_alert_dialog_button_bar_height 0x7f050011 -int dimen abc_button_inset_horizontal_material 0x7f050012 -int dimen abc_button_inset_vertical_material 0x7f050013 -int dimen abc_button_padding_horizontal_material 0x7f050014 -int dimen abc_button_padding_vertical_material 0x7f050015 -int dimen abc_cascading_menus_min_smallest_width 0x7f050016 -int dimen abc_config_prefDialogWidth 0x7f050017 -int dimen abc_control_corner_material 0x7f050018 -int dimen abc_control_inset_material 0x7f050019 -int dimen abc_control_padding_material 0x7f05001a -int dimen abc_dialog_fixed_height_major 0x7f05001b -int dimen abc_dialog_fixed_height_minor 0x7f05001c -int dimen abc_dialog_fixed_width_major 0x7f05001d -int dimen abc_dialog_fixed_width_minor 0x7f05001e -int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f05001f -int dimen abc_dialog_list_padding_top_no_title 0x7f050020 -int dimen abc_dialog_min_width_major 0x7f050021 -int dimen abc_dialog_min_width_minor 0x7f050022 -int dimen abc_dialog_padding_material 0x7f050023 -int dimen abc_dialog_padding_top_material 0x7f050024 -int dimen abc_dialog_title_divider_material 0x7f050025 -int dimen abc_disabled_alpha_material_dark 0x7f050026 -int dimen abc_disabled_alpha_material_light 0x7f050027 -int dimen abc_dropdownitem_icon_width 0x7f050028 -int dimen abc_dropdownitem_text_padding_left 0x7f050029 -int dimen abc_dropdownitem_text_padding_right 0x7f05002a -int dimen abc_edit_text_inset_bottom_material 0x7f05002b -int dimen abc_edit_text_inset_horizontal_material 0x7f05002c -int dimen abc_edit_text_inset_top_material 0x7f05002d -int dimen abc_floating_window_z 0x7f05002e -int dimen abc_list_item_padding_horizontal_material 0x7f05002f -int dimen abc_panel_menu_list_width 0x7f050030 -int dimen abc_progress_bar_height_material 0x7f050031 -int dimen abc_search_view_preferred_height 0x7f050032 -int dimen abc_search_view_preferred_width 0x7f050033 -int dimen abc_seekbar_track_background_height_material 0x7f050034 -int dimen abc_seekbar_track_progress_height_material 0x7f050035 -int dimen abc_select_dialog_padding_start_material 0x7f050036 -int dimen abc_switch_padding 0x7f050037 -int dimen abc_text_size_body_1_material 0x7f050038 -int dimen abc_text_size_body_2_material 0x7f050039 -int dimen abc_text_size_button_material 0x7f05003a -int dimen abc_text_size_caption_material 0x7f05003b -int dimen abc_text_size_display_1_material 0x7f05003c -int dimen abc_text_size_display_2_material 0x7f05003d -int dimen abc_text_size_display_3_material 0x7f05003e -int dimen abc_text_size_display_4_material 0x7f05003f -int dimen abc_text_size_headline_material 0x7f050040 -int dimen abc_text_size_large_material 0x7f050041 -int dimen abc_text_size_medium_material 0x7f050042 -int dimen abc_text_size_menu_header_material 0x7f050043 -int dimen abc_text_size_menu_material 0x7f050044 -int dimen abc_text_size_small_material 0x7f050045 -int dimen abc_text_size_subhead_material 0x7f050046 -int dimen abc_text_size_subtitle_material_toolbar 0x7f050047 -int dimen abc_text_size_title_material 0x7f050048 -int dimen abc_text_size_title_material_toolbar 0x7f050049 -int dimen compat_button_inset_horizontal_material 0x7f05004a -int dimen compat_button_inset_vertical_material 0x7f05004b -int dimen compat_button_padding_horizontal_material 0x7f05004c -int dimen compat_button_padding_vertical_material 0x7f05004d -int dimen compat_control_corner_material 0x7f05004e -int dimen disabled_alpha_material_dark 0x7f05004f -int dimen disabled_alpha_material_light 0x7f050050 -int dimen highlight_alpha_material_colored 0x7f050051 -int dimen highlight_alpha_material_dark 0x7f050052 -int dimen highlight_alpha_material_light 0x7f050053 -int dimen hint_alpha_material_dark 0x7f050054 -int dimen hint_alpha_material_light 0x7f050055 -int dimen hint_pressed_alpha_material_dark 0x7f050056 -int dimen hint_pressed_alpha_material_light 0x7f050057 -int dimen notification_action_icon_size 0x7f050058 -int dimen notification_action_text_size 0x7f050059 -int dimen notification_big_circle_margin 0x7f05005a -int dimen notification_content_margin_start 0x7f05005b -int dimen notification_large_icon_height 0x7f05005c -int dimen notification_large_icon_width 0x7f05005d -int dimen notification_main_column_padding_top 0x7f05005e -int dimen notification_media_narrow_margin 0x7f05005f -int dimen notification_right_icon_size 0x7f050060 -int dimen notification_right_side_padding_top 0x7f050061 -int dimen notification_small_icon_background_padding 0x7f050062 -int dimen notification_small_icon_size_as_large 0x7f050063 -int dimen notification_subtext_size 0x7f050064 -int dimen notification_top_pad 0x7f050065 -int dimen notification_top_pad_large_text 0x7f050066 -int dimen tooltip_corner_radius 0x7f050067 -int dimen tooltip_horizontal_padding 0x7f050068 -int dimen tooltip_margin 0x7f050069 -int dimen tooltip_precise_anchor_extra_offset 0x7f05006a -int dimen tooltip_precise_anchor_threshold 0x7f05006b -int dimen tooltip_vertical_padding 0x7f05006c -int dimen tooltip_y_offset_non_touch 0x7f05006d -int dimen tooltip_y_offset_touch 0x7f05006e -int drawable abc_ab_share_pack_mtrl_alpha 0x7f060000 -int drawable abc_action_bar_item_background_material 0x7f060001 -int drawable abc_btn_borderless_material 0x7f060002 -int drawable abc_btn_check_material 0x7f060003 -int drawable abc_btn_check_to_on_mtrl_000 0x7f060004 -int drawable abc_btn_check_to_on_mtrl_015 0x7f060005 -int drawable abc_btn_colored_material 0x7f060006 -int drawable abc_btn_default_mtrl_shape 0x7f060007 -int drawable abc_btn_radio_material 0x7f060008 -int drawable abc_btn_radio_to_on_mtrl_000 0x7f060009 -int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000a -int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000b -int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000c -int drawable abc_cab_background_internal_bg 0x7f06000d -int drawable abc_cab_background_top_material 0x7f06000e -int drawable abc_cab_background_top_mtrl_alpha 0x7f06000f -int drawable abc_control_background_material 0x7f060010 -int drawable abc_dialog_material_background 0x7f060011 -int drawable abc_edit_text_material 0x7f060012 -int drawable abc_ic_ab_back_material 0x7f060013 -int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060014 -int drawable abc_ic_clear_material 0x7f060015 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060016 -int drawable abc_ic_go_search_api_material 0x7f060017 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060018 -int drawable abc_ic_menu_cut_mtrl_alpha 0x7f060019 -int drawable abc_ic_menu_overflow_material 0x7f06001a -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001b -int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001c -int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001d -int drawable abc_ic_search_api_material 0x7f06001e -int drawable abc_ic_star_black_16dp 0x7f06001f -int drawable abc_ic_star_black_36dp 0x7f060020 -int drawable abc_ic_star_black_48dp 0x7f060021 -int drawable abc_ic_star_half_black_16dp 0x7f060022 -int drawable abc_ic_star_half_black_36dp 0x7f060023 -int drawable abc_ic_star_half_black_48dp 0x7f060024 -int drawable abc_ic_voice_search_api_material 0x7f060025 -int drawable abc_item_background_holo_dark 0x7f060026 -int drawable abc_item_background_holo_light 0x7f060027 -int drawable abc_list_divider_mtrl_alpha 0x7f060028 -int drawable abc_list_focused_holo 0x7f060029 -int drawable abc_list_longpressed_holo 0x7f06002a -int drawable abc_list_pressed_holo_dark 0x7f06002b -int drawable abc_list_pressed_holo_light 0x7f06002c -int drawable abc_list_selector_background_transition_holo_dark 0x7f06002d -int drawable abc_list_selector_background_transition_holo_light 0x7f06002e -int drawable abc_list_selector_disabled_holo_dark 0x7f06002f -int drawable abc_list_selector_disabled_holo_light 0x7f060030 -int drawable abc_list_selector_holo_dark 0x7f060031 -int drawable abc_list_selector_holo_light 0x7f060032 -int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060033 -int drawable abc_popup_background_mtrl_mult 0x7f060034 -int drawable abc_ratingbar_indicator_material 0x7f060035 -int drawable abc_ratingbar_material 0x7f060036 -int drawable abc_ratingbar_small_material 0x7f060037 -int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060038 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f060039 -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003a -int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003b -int drawable abc_scrubber_track_mtrl_alpha 0x7f06003c -int drawable abc_seekbar_thumb_material 0x7f06003d -int drawable abc_seekbar_tick_mark_material 0x7f06003e -int drawable abc_seekbar_track_material 0x7f06003f -int drawable abc_spinner_mtrl_am_alpha 0x7f060040 -int drawable abc_spinner_textfield_background_material 0x7f060041 -int drawable abc_switch_thumb_material 0x7f060042 -int drawable abc_switch_track_mtrl_alpha 0x7f060043 -int drawable abc_tab_indicator_material 0x7f060044 -int drawable abc_tab_indicator_mtrl_alpha 0x7f060045 -int drawable abc_text_cursor_material 0x7f060046 -int drawable abc_text_select_handle_left_mtrl_dark 0x7f060047 -int drawable abc_text_select_handle_left_mtrl_light 0x7f060048 -int drawable abc_text_select_handle_middle_mtrl_dark 0x7f060049 -int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004a -int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004b -int drawable abc_text_select_handle_right_mtrl_light 0x7f06004c -int drawable abc_textfield_activated_mtrl_alpha 0x7f06004d -int drawable abc_textfield_default_mtrl_alpha 0x7f06004e -int drawable abc_textfield_search_activated_mtrl_alpha 0x7f06004f -int drawable abc_textfield_search_default_mtrl_alpha 0x7f060050 -int drawable abc_textfield_search_material 0x7f060051 -int drawable abc_vector_test 0x7f060052 -int drawable notification_action_background 0x7f060053 -int drawable notification_bg 0x7f060054 -int drawable notification_bg_low 0x7f060055 -int drawable notification_bg_low_normal 0x7f060056 -int drawable notification_bg_low_pressed 0x7f060057 -int drawable notification_bg_normal 0x7f060058 -int drawable notification_bg_normal_pressed 0x7f060059 -int drawable notification_icon_background 0x7f06005a -int drawable notification_template_icon_bg 0x7f06005b -int drawable notification_template_icon_low_bg 0x7f06005c -int drawable notification_tile_bg 0x7f06005d -int drawable notify_panel_notification_icon_bg 0x7f06005e -int drawable tooltip_frame_dark 0x7f06005f -int drawable tooltip_frame_light 0x7f060060 -int id ALT 0x7f070000 -int id CTRL 0x7f070001 -int id FUNCTION 0x7f070002 -int id META 0x7f070003 -int id SHIFT 0x7f070004 -int id SYM 0x7f070005 -int id action0 0x7f070006 -int id action_bar 0x7f070007 -int id action_bar_activity_content 0x7f070008 -int id action_bar_container 0x7f070009 -int id action_bar_root 0x7f07000a -int id action_bar_spinner 0x7f07000b -int id action_bar_subtitle 0x7f07000c -int id action_bar_title 0x7f07000d -int id action_container 0x7f07000e -int id action_context_bar 0x7f07000f -int id action_divider 0x7f070010 -int id action_image 0x7f070011 -int id action_menu_divider 0x7f070012 -int id action_menu_presenter 0x7f070013 -int id action_mode_bar 0x7f070014 -int id action_mode_bar_stub 0x7f070015 -int id action_mode_close_button 0x7f070016 -int id action_text 0x7f070017 -int id actions 0x7f070018 -int id activity_chooser_view_content 0x7f070019 -int id add 0x7f07001a -int id alertTitle 0x7f07001b -int id always 0x7f07001c -int id async 0x7f07001d -int id barrier 0x7f07001e -int id beginning 0x7f07001f -int id blocking 0x7f070020 -int id bottom 0x7f070021 -int id buttonPanel 0x7f070022 -int id cancel_action 0x7f070023 -int id chains 0x7f070024 -int id checkbox 0x7f070025 -int id chronometer 0x7f070026 -int id collapseActionView 0x7f070027 -int id contentPanel 0x7f070028 -int id custom 0x7f070029 -int id customPanel 0x7f07002a -int id decor_content_parent 0x7f07002b -int id default_activity_button 0x7f07002c -int id dimensions 0x7f07002d -int id direct 0x7f07002e -int id disableHome 0x7f07002f -int id edit_query 0x7f070030 -int id end 0x7f070031 -int id end_padder 0x7f070032 -int id expand_activities_button 0x7f070033 -int id expanded_menu 0x7f070034 -int id forever 0x7f070035 -int id gone 0x7f070036 -int id home 0x7f070037 -int id homeAsUp 0x7f070038 -int id icon 0x7f070039 -int id icon_group 0x7f07003a -int id ifRoom 0x7f07003b -int id image 0x7f07003c -int id info 0x7f07003d -int id invisible 0x7f07003e -int id italic 0x7f07003f -int id left 0x7f070040 -int id line1 0x7f070041 -int id line3 0x7f070042 -int id listMode 0x7f070043 -int id list_item 0x7f070044 -int id media_actions 0x7f070045 -int id message 0x7f070046 -int id middle 0x7f070047 -int id multiply 0x7f070048 -int id never 0x7f070049 -int id none 0x7f07004a -int id normal 0x7f07004b -int id notification_background 0x7f07004c -int id notification_main_column 0x7f07004d -int id notification_main_column_container 0x7f07004e -int id packed 0x7f07004f -int id parent 0x7f070050 -int id parentPanel 0x7f070051 -int id percent 0x7f070052 -int id progress_circular 0x7f070053 -int id progress_horizontal 0x7f070054 -int id radio 0x7f070055 -int id right 0x7f070056 -int id right_icon 0x7f070057 -int id right_side 0x7f070058 -int id screen 0x7f070059 -int id scrollIndicatorDown 0x7f07005a -int id scrollIndicatorUp 0x7f07005b -int id scrollView 0x7f07005c -int id search_badge 0x7f07005d -int id search_bar 0x7f07005e -int id search_button 0x7f07005f -int id search_close_btn 0x7f070060 -int id search_edit_frame 0x7f070061 -int id search_go_btn 0x7f070062 -int id search_mag_icon 0x7f070063 -int id search_plate 0x7f070064 -int id search_src_text 0x7f070065 -int id search_voice_btn 0x7f070066 -int id select_dialog_listview 0x7f070067 -int id shortcut 0x7f070068 -int id showCustom 0x7f070069 -int id showHome 0x7f07006a -int id showTitle 0x7f07006b -int id spacer 0x7f07006c -int id split_action_bar 0x7f07006d -int id spread 0x7f07006e -int id spread_inside 0x7f07006f -int id src_atop 0x7f070070 -int id src_in 0x7f070071 -int id src_over 0x7f070072 -int id standard 0x7f070073 -int id start 0x7f070074 -int id status_bar_latest_event_content 0x7f070075 -int id submenuarrow 0x7f070076 -int id submit_area 0x7f070077 -int id tabMode 0x7f070078 -int id text 0x7f070079 -int id text2 0x7f07007a -int id textSpacerNoButtons 0x7f07007b -int id textSpacerNoTitle 0x7f07007c -int id time 0x7f07007d -int id title 0x7f07007e -int id titleDividerNoCustom 0x7f07007f -int id title_template 0x7f070080 -int id top 0x7f070081 -int id topPanel 0x7f070082 -int id uniform 0x7f070083 -int id up 0x7f070084 -int id useLogo 0x7f070085 -int id withText 0x7f070086 -int id wrap 0x7f070087 -int id wrap_content 0x7f070088 -int integer abc_config_activityDefaultDur 0x7f080000 -int integer abc_config_activityShortDur 0x7f080001 -int integer cancel_button_image_alpha 0x7f080002 -int integer config_tooltipAnimTime 0x7f080003 -int integer status_bar_notification_info_maxnum 0x7f080004 -int layout abc_action_bar_title_item 0x7f090000 -int layout abc_action_bar_up_container 0x7f090001 -int layout abc_action_bar_view_list_nav_layout 0x7f090002 -int layout abc_action_menu_item_layout 0x7f090003 -int layout abc_action_menu_layout 0x7f090004 -int layout abc_action_mode_bar 0x7f090005 -int layout abc_action_mode_close_item_material 0x7f090006 -int layout abc_activity_chooser_view 0x7f090007 -int layout abc_activity_chooser_view_list_item 0x7f090008 -int layout abc_alert_dialog_button_bar_material 0x7f090009 -int layout abc_alert_dialog_material 0x7f09000a -int layout abc_alert_dialog_title_material 0x7f09000b -int layout abc_dialog_title_material 0x7f09000c -int layout abc_expanded_menu_layout 0x7f09000d -int layout abc_list_menu_item_checkbox 0x7f09000e -int layout abc_list_menu_item_icon 0x7f09000f -int layout abc_list_menu_item_layout 0x7f090010 -int layout abc_list_menu_item_radio 0x7f090011 -int layout abc_popup_menu_header_item_layout 0x7f090012 -int layout abc_popup_menu_item_layout 0x7f090013 -int layout abc_screen_content_include 0x7f090014 -int layout abc_screen_simple 0x7f090015 -int layout abc_screen_simple_overlay_action_mode 0x7f090016 -int layout abc_screen_toolbar 0x7f090017 -int layout abc_search_dropdown_item_icons_2line 0x7f090018 -int layout abc_search_view 0x7f090019 -int layout abc_select_dialog_material 0x7f09001a -int layout notification_action 0x7f09001b -int layout notification_action_tombstone 0x7f09001c -int layout notification_media_action 0x7f09001d -int layout notification_media_cancel_action 0x7f09001e -int layout notification_template_big_media 0x7f09001f -int layout notification_template_big_media_custom 0x7f090020 -int layout notification_template_big_media_narrow 0x7f090021 -int layout notification_template_big_media_narrow_custom 0x7f090022 -int layout notification_template_custom_big 0x7f090023 -int layout notification_template_icon_group 0x7f090024 -int layout notification_template_lines_media 0x7f090025 -int layout notification_template_media 0x7f090026 -int layout notification_template_media_custom 0x7f090027 -int layout notification_template_part_chronometer 0x7f090028 -int layout notification_template_part_time 0x7f090029 -int layout select_dialog_item_material 0x7f09002a -int layout select_dialog_multichoice_material 0x7f09002b -int layout select_dialog_singlechoice_material 0x7f09002c -int layout support_simple_spinner_dropdown_item 0x7f09002d -int layout tooltip 0x7f09002e -int string abc_action_bar_home_description 0x7f0a0000 -int string abc_action_bar_home_description_format 0x7f0a0001 -int string abc_action_bar_home_subtitle_description_format 0x7f0a0002 -int string abc_action_bar_up_description 0x7f0a0003 -int string abc_action_menu_overflow_description 0x7f0a0004 -int string abc_action_mode_done 0x7f0a0005 -int string abc_activity_chooser_view_see_all 0x7f0a0006 -int string abc_activitychooserview_choose_application 0x7f0a0007 -int string abc_capital_off 0x7f0a0008 -int string abc_capital_on 0x7f0a0009 -int string abc_font_family_body_1_material 0x7f0a000a -int string abc_font_family_body_2_material 0x7f0a000b -int string abc_font_family_button_material 0x7f0a000c -int string abc_font_family_caption_material 0x7f0a000d -int string abc_font_family_display_1_material 0x7f0a000e -int string abc_font_family_display_2_material 0x7f0a000f -int string abc_font_family_display_3_material 0x7f0a0010 -int string abc_font_family_display_4_material 0x7f0a0011 -int string abc_font_family_headline_material 0x7f0a0012 -int string abc_font_family_menu_material 0x7f0a0013 -int string abc_font_family_subhead_material 0x7f0a0014 -int string abc_font_family_title_material 0x7f0a0015 -int string abc_search_hint 0x7f0a0016 -int string abc_searchview_description_clear 0x7f0a0017 -int string abc_searchview_description_query 0x7f0a0018 -int string abc_searchview_description_search 0x7f0a0019 -int string abc_searchview_description_submit 0x7f0a001a -int string abc_searchview_description_voice 0x7f0a001b -int string abc_shareactionprovider_share_with 0x7f0a001c -int string abc_shareactionprovider_share_with_application 0x7f0a001d -int string abc_toolbar_collapse_description 0x7f0a001e -int string search_menu_title 0x7f0a001f -int string status_bar_notification_info_overflow 0x7f0a0020 -int style AlertDialog_AppCompat 0x7f0b0000 -int style AlertDialog_AppCompat_Light 0x7f0b0001 -int style Animation_AppCompat_Dialog 0x7f0b0002 -int style Animation_AppCompat_DropDownUp 0x7f0b0003 -int style Animation_AppCompat_Tooltip 0x7f0b0004 -int style Base_AlertDialog_AppCompat 0x7f0b0005 -int style Base_AlertDialog_AppCompat_Light 0x7f0b0006 -int style Base_Animation_AppCompat_Dialog 0x7f0b0007 -int style Base_Animation_AppCompat_DropDownUp 0x7f0b0008 -int style Base_Animation_AppCompat_Tooltip 0x7f0b0009 -int style Base_DialogWindowTitle_AppCompat 0x7f0b000a -int style Base_DialogWindowTitleBackground_AppCompat 0x7f0b000b -int style Base_TextAppearance_AppCompat 0x7f0b000c -int style Base_TextAppearance_AppCompat_Body1 0x7f0b000d -int style Base_TextAppearance_AppCompat_Body2 0x7f0b000e -int style Base_TextAppearance_AppCompat_Button 0x7f0b000f -int style Base_TextAppearance_AppCompat_Caption 0x7f0b0010 -int style Base_TextAppearance_AppCompat_Display1 0x7f0b0011 -int style Base_TextAppearance_AppCompat_Display2 0x7f0b0012 -int style Base_TextAppearance_AppCompat_Display3 0x7f0b0013 -int style Base_TextAppearance_AppCompat_Display4 0x7f0b0014 -int style Base_TextAppearance_AppCompat_Headline 0x7f0b0015 -int style Base_TextAppearance_AppCompat_Inverse 0x7f0b0016 -int style Base_TextAppearance_AppCompat_Large 0x7f0b0017 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b0018 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0019 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b001a -int style Base_TextAppearance_AppCompat_Medium 0x7f0b001b -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b001c -int style Base_TextAppearance_AppCompat_Menu 0x7f0b001d -int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b001e -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b001f -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b0020 -int style Base_TextAppearance_AppCompat_Small 0x7f0b0021 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b0022 -int style Base_TextAppearance_AppCompat_Subhead 0x7f0b0023 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0024 -int style Base_TextAppearance_AppCompat_Title 0x7f0b0025 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b0026 -int style Base_TextAppearance_AppCompat_Tooltip 0x7f0b0027 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0028 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0029 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b002a -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b002b -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b002c -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b002d -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b002e -int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0b002f -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b0030 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b0031 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b0032 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0033 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b0034 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0035 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0036 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b0037 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b0038 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0039 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b003a -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b003b -int style Base_Theme_AppCompat 0x7f0b003c -int style Base_Theme_AppCompat_CompactMenu 0x7f0b003d -int style Base_Theme_AppCompat_Dialog 0x7f0b003e -int style Base_Theme_AppCompat_Dialog_Alert 0x7f0b003f -int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b0040 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0b0041 -int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b0042 -int style Base_Theme_AppCompat_Light 0x7f0b0043 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b0044 -int style Base_Theme_AppCompat_Light_Dialog 0x7f0b0045 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0b0046 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b0047 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0048 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0049 -int style Base_ThemeOverlay_AppCompat 0x7f0b004a -int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b004b -int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b004c -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b004d -int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0b004e -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b004f -int style Base_ThemeOverlay_AppCompat_Light 0x7f0b0050 -int style Base_V11_Theme_AppCompat_Dialog 0x7f0b0051 -int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0b0052 -int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f0b0053 -int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0b0054 -int style Base_V12_Widget_AppCompat_EditText 0x7f0b0055 -int style Base_V21_Theme_AppCompat 0x7f0b0056 -int style Base_V21_Theme_AppCompat_Dialog 0x7f0b0057 -int style Base_V21_Theme_AppCompat_Light 0x7f0b0058 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b0059 -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0b005a -int style Base_V22_Theme_AppCompat 0x7f0b005b -int style Base_V22_Theme_AppCompat_Light 0x7f0b005c -int style Base_V23_Theme_AppCompat 0x7f0b005d -int style Base_V23_Theme_AppCompat_Light 0x7f0b005e -int style Base_V26_Theme_AppCompat 0x7f0b005f -int style Base_V26_Theme_AppCompat_Light 0x7f0b0060 -int style Base_V26_Widget_AppCompat_Toolbar 0x7f0b0061 -int style Base_V7_Theme_AppCompat 0x7f0b0062 -int style Base_V7_Theme_AppCompat_Dialog 0x7f0b0063 -int style Base_V7_Theme_AppCompat_Light 0x7f0b0064 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0b0065 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0b0066 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0b0067 -int style Base_V7_Widget_AppCompat_EditText 0x7f0b0068 -int style Base_V7_Widget_AppCompat_Toolbar 0x7f0b0069 -int style Base_Widget_AppCompat_ActionBar 0x7f0b006a -int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b006b -int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b006c -int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b006d -int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b006e -int style Base_Widget_AppCompat_ActionButton 0x7f0b006f -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0070 -int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0071 -int style Base_Widget_AppCompat_ActionMode 0x7f0b0072 -int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b0073 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b0074 -int style Base_Widget_AppCompat_Button 0x7f0b0075 -int style Base_Widget_AppCompat_Button_Borderless 0x7f0b0076 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0b0077 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0078 -int style Base_Widget_AppCompat_Button_Colored 0x7f0b0079 -int style Base_Widget_AppCompat_Button_Small 0x7f0b007a -int style Base_Widget_AppCompat_ButtonBar 0x7f0b007b -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b007c -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0b007d -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0b007e -int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b007f -int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b0080 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0b0081 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b0082 -int style Base_Widget_AppCompat_EditText 0x7f0b0083 -int style Base_Widget_AppCompat_ImageButton 0x7f0b0084 -int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0085 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0086 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0087 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0088 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0089 -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b008a -int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b008b -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b008c -int style Base_Widget_AppCompat_ListMenuView 0x7f0b008d -int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b008e -int style Base_Widget_AppCompat_ListView 0x7f0b008f -int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b0090 -int style Base_Widget_AppCompat_ListView_Menu 0x7f0b0091 -int style Base_Widget_AppCompat_PopupMenu 0x7f0b0092 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b0093 -int style Base_Widget_AppCompat_PopupWindow 0x7f0b0094 -int style Base_Widget_AppCompat_ProgressBar 0x7f0b0095 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0096 -int style Base_Widget_AppCompat_RatingBar 0x7f0b0097 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0b0098 -int style Base_Widget_AppCompat_RatingBar_Small 0x7f0b0099 -int style Base_Widget_AppCompat_SearchView 0x7f0b009a -int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0b009b -int style Base_Widget_AppCompat_SeekBar 0x7f0b009c -int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0b009d -int style Base_Widget_AppCompat_Spinner 0x7f0b009e -int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0b009f -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0b00a0 -int style Base_Widget_AppCompat_Toolbar 0x7f0b00a1 -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b00a2 -int style Platform_AppCompat 0x7f0b00a3 -int style Platform_AppCompat_Light 0x7f0b00a4 -int style Platform_ThemeOverlay_AppCompat 0x7f0b00a5 -int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0b00a6 -int style Platform_ThemeOverlay_AppCompat_Light 0x7f0b00a7 -int style Platform_V11_AppCompat 0x7f0b00a8 -int style Platform_V11_AppCompat_Light 0x7f0b00a9 -int style Platform_V14_AppCompat 0x7f0b00aa -int style Platform_V14_AppCompat_Light 0x7f0b00ab -int style Platform_V21_AppCompat 0x7f0b00ac -int style Platform_V21_AppCompat_Light 0x7f0b00ad -int style Platform_V25_AppCompat 0x7f0b00ae -int style Platform_V25_AppCompat_Light 0x7f0b00af -int style Platform_Widget_AppCompat_Spinner 0x7f0b00b0 -int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0b00b1 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00b2 -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0b00b3 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00b4 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00b5 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00b6 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00b7 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00b8 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00b9 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00ba -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00bb -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00bc -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0b00bd -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00be -int style TextAppearance_AppCompat 0x7f0b00bf -int style TextAppearance_AppCompat_Body1 0x7f0b00c0 -int style TextAppearance_AppCompat_Body2 0x7f0b00c1 -int style TextAppearance_AppCompat_Button 0x7f0b00c2 -int style TextAppearance_AppCompat_Caption 0x7f0b00c3 -int style TextAppearance_AppCompat_Display1 0x7f0b00c4 -int style TextAppearance_AppCompat_Display2 0x7f0b00c5 -int style TextAppearance_AppCompat_Display3 0x7f0b00c6 -int style TextAppearance_AppCompat_Display4 0x7f0b00c7 -int style TextAppearance_AppCompat_Headline 0x7f0b00c8 -int style TextAppearance_AppCompat_Inverse 0x7f0b00c9 -int style TextAppearance_AppCompat_Large 0x7f0b00ca -int style TextAppearance_AppCompat_Large_Inverse 0x7f0b00cb -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b00cc -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b00cd -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b00ce -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b00cf -int style TextAppearance_AppCompat_Medium 0x7f0b00d0 -int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b00d1 -int style TextAppearance_AppCompat_Menu 0x7f0b00d2 -int style TextAppearance_AppCompat_Notification 0x7f0b00d3 -int style TextAppearance_AppCompat_Notification_Info 0x7f0b00d4 -int style TextAppearance_AppCompat_Notification_Info_Media 0x7f0b00d5 -int style TextAppearance_AppCompat_Notification_Line2 0x7f0b00d6 -int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0b00d7 -int style TextAppearance_AppCompat_Notification_Media 0x7f0b00d8 -int style TextAppearance_AppCompat_Notification_Time 0x7f0b00d9 -int style TextAppearance_AppCompat_Notification_Time_Media 0x7f0b00da -int style TextAppearance_AppCompat_Notification_Title 0x7f0b00db -int style TextAppearance_AppCompat_Notification_Title_Media 0x7f0b00dc -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b00dd -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b00de -int style TextAppearance_AppCompat_Small 0x7f0b00df -int style TextAppearance_AppCompat_Small_Inverse 0x7f0b00e0 -int style TextAppearance_AppCompat_Subhead 0x7f0b00e1 -int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00e2 -int style TextAppearance_AppCompat_Title 0x7f0b00e3 -int style TextAppearance_AppCompat_Title_Inverse 0x7f0b00e4 -int style TextAppearance_AppCompat_Tooltip 0x7f0b00e5 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b00e6 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b00e7 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b00e8 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b00e9 -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b00ea -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b00eb -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b00ec -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b00ed -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b00ee -int style TextAppearance_AppCompat_Widget_Button 0x7f0b00ef -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b00f0 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b00f1 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b00f2 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b00f3 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b00f4 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b00f5 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b00f6 -int style TextAppearance_AppCompat_Widget_Switch 0x7f0b00f7 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b00f8 -int style TextAppearance_Compat_Notification 0x7f0b00f9 -int style TextAppearance_Compat_Notification_Info 0x7f0b00fa -int style TextAppearance_Compat_Notification_Info_Media 0x7f0b00fb -int style TextAppearance_Compat_Notification_Line2 0x7f0b00fc -int style TextAppearance_Compat_Notification_Line2_Media 0x7f0b00fd -int style TextAppearance_Compat_Notification_Media 0x7f0b00fe -int style TextAppearance_Compat_Notification_Time 0x7f0b00ff -int style TextAppearance_Compat_Notification_Time_Media 0x7f0b0100 -int style TextAppearance_Compat_Notification_Title 0x7f0b0101 -int style TextAppearance_Compat_Notification_Title_Media 0x7f0b0102 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0103 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0104 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0105 -int style Theme_AppCompat 0x7f0b0106 -int style Theme_AppCompat_CompactMenu 0x7f0b0107 -int style Theme_AppCompat_DayNight 0x7f0b0108 -int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0b0109 -int style Theme_AppCompat_DayNight_Dialog 0x7f0b010a -int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0b010b -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0b010c -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0b010d -int style Theme_AppCompat_DayNight_NoActionBar 0x7f0b010e -int style Theme_AppCompat_Dialog 0x7f0b010f -int style Theme_AppCompat_Dialog_Alert 0x7f0b0110 -int style Theme_AppCompat_Dialog_MinWidth 0x7f0b0111 -int style Theme_AppCompat_DialogWhenLarge 0x7f0b0112 -int style Theme_AppCompat_Light 0x7f0b0113 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0114 -int style Theme_AppCompat_Light_Dialog 0x7f0b0115 -int style Theme_AppCompat_Light_Dialog_Alert 0x7f0b0116 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0117 -int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0118 -int style Theme_AppCompat_Light_NoActionBar 0x7f0b0119 -int style Theme_AppCompat_NoActionBar 0x7f0b011a -int style ThemeOverlay_AppCompat 0x7f0b011b -int style ThemeOverlay_AppCompat_ActionBar 0x7f0b011c -int style ThemeOverlay_AppCompat_Dark 0x7f0b011d -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b011e -int style ThemeOverlay_AppCompat_Dialog 0x7f0b011f -int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b0120 -int style ThemeOverlay_AppCompat_Light 0x7f0b0121 -int style Widget_AppCompat_ActionBar 0x7f0b0122 -int style Widget_AppCompat_ActionBar_Solid 0x7f0b0123 -int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0124 -int style Widget_AppCompat_ActionBar_TabText 0x7f0b0125 -int style Widget_AppCompat_ActionBar_TabView 0x7f0b0126 -int style Widget_AppCompat_ActionButton 0x7f0b0127 -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b0128 -int style Widget_AppCompat_ActionButton_Overflow 0x7f0b0129 -int style Widget_AppCompat_ActionMode 0x7f0b012a -int style Widget_AppCompat_ActivityChooserView 0x7f0b012b -int style Widget_AppCompat_AutoCompleteTextView 0x7f0b012c -int style Widget_AppCompat_Button 0x7f0b012d -int style Widget_AppCompat_Button_Borderless 0x7f0b012e -int style Widget_AppCompat_Button_Borderless_Colored 0x7f0b012f -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0130 -int style Widget_AppCompat_Button_Colored 0x7f0b0131 -int style Widget_AppCompat_Button_Small 0x7f0b0132 -int style Widget_AppCompat_ButtonBar 0x7f0b0133 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b0134 -int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0b0135 -int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0b0136 -int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0137 -int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0138 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0139 -int style Widget_AppCompat_EditText 0x7f0b013a -int style Widget_AppCompat_ImageButton 0x7f0b013b -int style Widget_AppCompat_Light_ActionBar 0x7f0b013c -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b013d -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b013e -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b013f -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0140 -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0141 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0142 -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0143 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0144 -int style Widget_AppCompat_Light_ActionButton 0x7f0b0145 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b0146 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0147 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0148 -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0149 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b014a -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b014b -int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b014c -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b014d -int style Widget_AppCompat_Light_PopupMenu 0x7f0b014e -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b014f -int style Widget_AppCompat_Light_SearchView 0x7f0b0150 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0151 -int style Widget_AppCompat_ListMenuView 0x7f0b0152 -int style Widget_AppCompat_ListPopupWindow 0x7f0b0153 -int style Widget_AppCompat_ListView 0x7f0b0154 -int style Widget_AppCompat_ListView_DropDown 0x7f0b0155 -int style Widget_AppCompat_ListView_Menu 0x7f0b0156 -int style Widget_AppCompat_PopupMenu 0x7f0b0157 -int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0158 -int style Widget_AppCompat_PopupWindow 0x7f0b0159 -int style Widget_AppCompat_ProgressBar 0x7f0b015a -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b015b -int style Widget_AppCompat_RatingBar 0x7f0b015c -int style Widget_AppCompat_RatingBar_Indicator 0x7f0b015d -int style Widget_AppCompat_RatingBar_Small 0x7f0b015e -int style Widget_AppCompat_SearchView 0x7f0b015f -int style Widget_AppCompat_SearchView_ActionBar 0x7f0b0160 -int style Widget_AppCompat_SeekBar 0x7f0b0161 -int style Widget_AppCompat_SeekBar_Discrete 0x7f0b0162 -int style Widget_AppCompat_Spinner 0x7f0b0163 -int style Widget_AppCompat_Spinner_DropDown 0x7f0b0164 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0165 -int style Widget_AppCompat_Spinner_Underlined 0x7f0b0166 -int style Widget_AppCompat_TextView_SpinnerItem 0x7f0b0167 -int style Widget_AppCompat_Toolbar 0x7f0b0168 -int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0169 -int style Widget_Compat_NotificationActionContainer 0x7f0b016a -int style Widget_Compat_NotificationActionText 0x7f0b016b -int[] styleable ActionBar { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 } -int styleable ActionBar_background 0 -int styleable ActionBar_backgroundSplit 1 -int styleable ActionBar_backgroundStacked 2 -int styleable ActionBar_contentInsetEnd 3 -int styleable ActionBar_contentInsetEndWithActions 4 -int styleable ActionBar_contentInsetLeft 5 -int styleable ActionBar_contentInsetRight 6 -int styleable ActionBar_contentInsetStart 7 -int styleable ActionBar_contentInsetStartWithNavigation 8 -int styleable ActionBar_customNavigationLayout 9 -int styleable ActionBar_displayOptions 10 -int styleable ActionBar_divider 11 -int styleable ActionBar_elevation 12 -int styleable ActionBar_height 13 -int styleable ActionBar_hideOnContentScroll 14 -int styleable ActionBar_homeAsUpIndicator 15 -int styleable ActionBar_homeLayout 16 -int styleable ActionBar_icon 17 -int styleable ActionBar_indeterminateProgressStyle 18 -int styleable ActionBar_itemPadding 19 -int styleable ActionBar_logo 20 -int styleable ActionBar_navigationMode 21 -int styleable ActionBar_popupTheme 22 -int styleable ActionBar_progressBarPadding 23 -int styleable ActionBar_progressBarStyle 24 -int styleable ActionBar_subtitle 25 -int styleable ActionBar_subtitleTextStyle 26 -int styleable ActionBar_title 27 -int styleable ActionBar_titleTextStyle 28 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 } -int styleable ActionMode_background 0 -int styleable ActionMode_backgroundSplit 1 -int styleable ActionMode_closeItemLayout 2 -int styleable ActionMode_height 3 -int styleable ActionMode_subtitleTextStyle 4 -int styleable ActionMode_titleTextStyle 5 -int[] styleable ActivityChooserView { 0x7f020075, 0x7f02008c } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable AlertDialog { 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonPanelSideLayout 1 -int styleable AlertDialog_listItemLayout 2 -int styleable AlertDialog_listLayout 3 -int styleable AlertDialog_multiChoiceItemLayout 4 -int styleable AlertDialog_showTitle 5 -int styleable AlertDialog_singleChoiceItemLayout 6 -int[] styleable AppCompatImageView { 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } -int styleable AppCompatTextHelper_android_textAppearance 0 -int styleable AppCompatTextHelper_android_drawableTop 1 -int styleable AppCompatTextHelper_android_drawableBottom 2 -int styleable AppCompatTextHelper_android_drawableLeft 3 -int styleable AppCompatTextHelper_android_drawableRight 4 -int styleable AppCompatTextHelper_android_drawableStart 5 -int styleable AppCompatTextHelper_android_drawableEnd 6 -int[] styleable AppCompatTextView { 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_autoSizeMaxTextSize 1 -int styleable AppCompatTextView_autoSizeMinTextSize 2 -int styleable AppCompatTextView_autoSizePresetSizes 3 -int styleable AppCompatTextView_autoSizeStepGranularity 4 -int styleable AppCompatTextView_autoSizeTextType 5 -int styleable AppCompatTextView_fontFamily 6 -int styleable AppCompatTextView_textAllCaps 7 -int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 } -int styleable AppCompatTheme_android_windowIsFloating 0 -int styleable AppCompatTheme_android_windowAnimationStyle 1 -int styleable AppCompatTheme_actionBarDivider 2 -int styleable AppCompatTheme_actionBarItemBackground 3 -int styleable AppCompatTheme_actionBarPopupTheme 4 -int styleable AppCompatTheme_actionBarSize 5 -int styleable AppCompatTheme_actionBarSplitStyle 6 -int styleable AppCompatTheme_actionBarStyle 7 -int styleable AppCompatTheme_actionBarTabBarStyle 8 -int styleable AppCompatTheme_actionBarTabStyle 9 -int styleable AppCompatTheme_actionBarTabTextStyle 10 -int styleable AppCompatTheme_actionBarTheme 11 -int styleable AppCompatTheme_actionBarWidgetTheme 12 -int styleable AppCompatTheme_actionButtonStyle 13 -int styleable AppCompatTheme_actionDropDownStyle 14 -int styleable AppCompatTheme_actionMenuTextAppearance 15 -int styleable AppCompatTheme_actionMenuTextColor 16 -int styleable AppCompatTheme_actionModeBackground 17 -int styleable AppCompatTheme_actionModeCloseButtonStyle 18 -int styleable AppCompatTheme_actionModeCloseDrawable 19 -int styleable AppCompatTheme_actionModeCopyDrawable 20 -int styleable AppCompatTheme_actionModeCutDrawable 21 -int styleable AppCompatTheme_actionModeFindDrawable 22 -int styleable AppCompatTheme_actionModePasteDrawable 23 -int styleable AppCompatTheme_actionModePopupWindowStyle 24 -int styleable AppCompatTheme_actionModeSelectAllDrawable 25 -int styleable AppCompatTheme_actionModeShareDrawable 26 -int styleable AppCompatTheme_actionModeSplitBackground 27 -int styleable AppCompatTheme_actionModeStyle 28 -int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -int styleable AppCompatTheme_actionOverflowButtonStyle 30 -int styleable AppCompatTheme_actionOverflowMenuStyle 31 -int styleable AppCompatTheme_activityChooserViewStyle 32 -int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -int styleable AppCompatTheme_alertDialogCenterButtons 34 -int styleable AppCompatTheme_alertDialogStyle 35 -int styleable AppCompatTheme_alertDialogTheme 36 -int styleable AppCompatTheme_autoCompleteTextViewStyle 37 -int styleable AppCompatTheme_borderlessButtonStyle 38 -int styleable AppCompatTheme_buttonBarButtonStyle 39 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 -int styleable AppCompatTheme_buttonBarStyle 43 -int styleable AppCompatTheme_buttonStyle 44 -int styleable AppCompatTheme_buttonStyleSmall 45 -int styleable AppCompatTheme_checkboxStyle 46 -int styleable AppCompatTheme_checkedTextViewStyle 47 -int styleable AppCompatTheme_colorAccent 48 -int styleable AppCompatTheme_colorBackgroundFloating 49 -int styleable AppCompatTheme_colorButtonNormal 50 -int styleable AppCompatTheme_colorControlActivated 51 -int styleable AppCompatTheme_colorControlHighlight 52 -int styleable AppCompatTheme_colorControlNormal 53 -int styleable AppCompatTheme_colorError 54 -int styleable AppCompatTheme_colorPrimary 55 -int styleable AppCompatTheme_colorPrimaryDark 56 -int styleable AppCompatTheme_colorSwitchThumbNormal 57 -int styleable AppCompatTheme_controlBackground 58 -int styleable AppCompatTheme_dialogPreferredPadding 59 -int styleable AppCompatTheme_dialogTheme 60 -int styleable AppCompatTheme_dividerHorizontal 61 -int styleable AppCompatTheme_dividerVertical 62 -int styleable AppCompatTheme_dropDownListViewStyle 63 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 64 -int styleable AppCompatTheme_editTextBackground 65 -int styleable AppCompatTheme_editTextColor 66 -int styleable AppCompatTheme_editTextStyle 67 -int styleable AppCompatTheme_homeAsUpIndicator 68 -int styleable AppCompatTheme_imageButtonStyle 69 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 70 -int styleable AppCompatTheme_listDividerAlertDialog 71 -int styleable AppCompatTheme_listMenuViewStyle 72 -int styleable AppCompatTheme_listPopupWindowStyle 73 -int styleable AppCompatTheme_listPreferredItemHeight 74 -int styleable AppCompatTheme_listPreferredItemHeightLarge 75 -int styleable AppCompatTheme_listPreferredItemHeightSmall 76 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 77 -int styleable AppCompatTheme_listPreferredItemPaddingRight 78 -int styleable AppCompatTheme_panelBackground 79 -int styleable AppCompatTheme_panelMenuListTheme 80 -int styleable AppCompatTheme_panelMenuListWidth 81 -int styleable AppCompatTheme_popupMenuStyle 82 -int styleable AppCompatTheme_popupWindowStyle 83 -int styleable AppCompatTheme_radioButtonStyle 84 -int styleable AppCompatTheme_ratingBarStyle 85 -int styleable AppCompatTheme_ratingBarStyleIndicator 86 -int styleable AppCompatTheme_ratingBarStyleSmall 87 -int styleable AppCompatTheme_searchViewStyle 88 -int styleable AppCompatTheme_seekBarStyle 89 -int styleable AppCompatTheme_selectableItemBackground 90 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 91 -int styleable AppCompatTheme_spinnerDropDownItemStyle 92 -int styleable AppCompatTheme_spinnerStyle 93 -int styleable AppCompatTheme_switchStyle 94 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 95 -int styleable AppCompatTheme_textAppearanceListItem 96 -int styleable AppCompatTheme_textAppearanceListItemSecondary 97 -int styleable AppCompatTheme_textAppearanceListItemSmall 98 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 99 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 101 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102 -int styleable AppCompatTheme_textColorAlertDialogListItem 103 -int styleable AppCompatTheme_textColorSearchUrl 104 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 105 -int styleable AppCompatTheme_toolbarStyle 106 -int styleable AppCompatTheme_tooltipForegroundColor 107 -int styleable AppCompatTheme_tooltipFrameBackground 108 -int styleable AppCompatTheme_windowActionBar 109 -int styleable AppCompatTheme_windowActionBarOverlay 110 -int styleable AppCompatTheme_windowActionModeOverlay 111 -int styleable AppCompatTheme_windowFixedHeightMajor 112 -int styleable AppCompatTheme_windowFixedHeightMinor 113 -int styleable AppCompatTheme_windowFixedWidthMajor 114 -int styleable AppCompatTheme_windowFixedWidthMinor 115 -int styleable AppCompatTheme_windowMinWidthMajor 116 -int styleable AppCompatTheme_windowMinWidthMinor 117 -int styleable AppCompatTheme_windowNoTitle 118 -int[] styleable ButtonBarLayout { 0x7f020026 } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f020027 } -int styleable ColorStateListItem_android_color 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_alpha 2 -int[] styleable CompoundButton { 0x01010107, 0x7f020043, 0x7f020044 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonTint 1 -int styleable CompoundButton_buttonTintMode 2 -int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 } -int styleable ConstraintLayout_Layout_android_orientation 0 -int styleable ConstraintLayout_Layout_android_maxWidth 1 -int styleable ConstraintLayout_Layout_android_maxHeight 2 -int styleable ConstraintLayout_Layout_android_minWidth 3 -int styleable ConstraintLayout_Layout_android_minHeight 4 -int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 -int styleable ConstraintLayout_Layout_barrierDirection 6 -int styleable ConstraintLayout_Layout_chainUseRtl 7 -int styleable ConstraintLayout_Layout_constraintSet 8 -int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 -int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 -int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 -int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 -int styleable ConstraintLayout_Layout_layout_constraintCircle 17 -int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 -int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 -int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 -int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 -int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 -int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 -int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 -int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 -int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 -int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 -int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 -int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 -int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 -int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 -int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 -int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 -int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 -int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 -int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 -int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 -int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 -int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 -int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 -int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 -int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 -int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 -int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 -int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 -int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 -int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 -int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 -int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 -int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 -int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 -int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 -int[] styleable ConstraintLayout_placeholder { 0x7f02005a, 0x7f020074 } -int styleable ConstraintLayout_placeholder_content 0 -int styleable ConstraintLayout_placeholder_emptyVisibility 1 -int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 } -int styleable ConstraintSet_android_orientation 0 -int styleable ConstraintSet_android_id 1 -int styleable ConstraintSet_android_visibility 2 -int styleable ConstraintSet_android_layout_width 3 -int styleable ConstraintSet_android_layout_height 4 -int styleable ConstraintSet_android_layout_marginLeft 5 -int styleable ConstraintSet_android_layout_marginTop 6 -int styleable ConstraintSet_android_layout_marginRight 7 -int styleable ConstraintSet_android_layout_marginBottom 8 -int styleable ConstraintSet_android_alpha 9 -int styleable ConstraintSet_android_transformPivotX 10 -int styleable ConstraintSet_android_transformPivotY 11 -int styleable ConstraintSet_android_translationX 12 -int styleable ConstraintSet_android_translationY 13 -int styleable ConstraintSet_android_scaleX 14 -int styleable ConstraintSet_android_scaleY 15 -int styleable ConstraintSet_android_rotation 16 -int styleable ConstraintSet_android_rotationX 17 -int styleable ConstraintSet_android_rotationY 18 -int styleable ConstraintSet_android_layout_marginStart 19 -int styleable ConstraintSet_android_layout_marginEnd 20 -int styleable ConstraintSet_android_translationZ 21 -int styleable ConstraintSet_android_elevation 22 -int styleable ConstraintSet_layout_constrainedHeight 23 -int styleable ConstraintSet_layout_constrainedWidth 24 -int styleable ConstraintSet_layout_constraintBaseline_creator 25 -int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 26 -int styleable ConstraintSet_layout_constraintBottom_creator 27 -int styleable ConstraintSet_layout_constraintBottom_toBottomOf 28 -int styleable ConstraintSet_layout_constraintBottom_toTopOf 29 -int styleable ConstraintSet_layout_constraintCircle 30 -int styleable ConstraintSet_layout_constraintCircleAngle 31 -int styleable ConstraintSet_layout_constraintCircleRadius 32 -int styleable ConstraintSet_layout_constraintDimensionRatio 33 -int styleable ConstraintSet_layout_constraintEnd_toEndOf 34 -int styleable ConstraintSet_layout_constraintEnd_toStartOf 35 -int styleable ConstraintSet_layout_constraintGuide_begin 36 -int styleable ConstraintSet_layout_constraintGuide_end 37 -int styleable ConstraintSet_layout_constraintGuide_percent 38 -int styleable ConstraintSet_layout_constraintHeight_default 39 -int styleable ConstraintSet_layout_constraintHeight_max 40 -int styleable ConstraintSet_layout_constraintHeight_min 41 -int styleable ConstraintSet_layout_constraintHeight_percent 42 -int styleable ConstraintSet_layout_constraintHorizontal_bias 43 -int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 44 -int styleable ConstraintSet_layout_constraintHorizontal_weight 45 -int styleable ConstraintSet_layout_constraintLeft_creator 46 -int styleable ConstraintSet_layout_constraintLeft_toLeftOf 47 -int styleable ConstraintSet_layout_constraintLeft_toRightOf 48 -int styleable ConstraintSet_layout_constraintRight_creator 49 -int styleable ConstraintSet_layout_constraintRight_toLeftOf 50 -int styleable ConstraintSet_layout_constraintRight_toRightOf 51 -int styleable ConstraintSet_layout_constraintStart_toEndOf 52 -int styleable ConstraintSet_layout_constraintStart_toStartOf 53 -int styleable ConstraintSet_layout_constraintTop_creator 54 -int styleable ConstraintSet_layout_constraintTop_toBottomOf 55 -int styleable ConstraintSet_layout_constraintTop_toTopOf 56 -int styleable ConstraintSet_layout_constraintVertical_bias 57 -int styleable ConstraintSet_layout_constraintVertical_chainStyle 58 -int styleable ConstraintSet_layout_constraintVertical_weight 59 -int styleable ConstraintSet_layout_constraintWidth_default 60 -int styleable ConstraintSet_layout_constraintWidth_max 61 -int styleable ConstraintSet_layout_constraintWidth_min 62 -int styleable ConstraintSet_layout_constraintWidth_percent 63 -int styleable ConstraintSet_layout_editor_absoluteX 64 -int styleable ConstraintSet_layout_editor_absoluteY 65 -int styleable ConstraintSet_layout_goneMarginBottom 66 -int styleable ConstraintSet_layout_goneMarginEnd 67 -int styleable ConstraintSet_layout_goneMarginLeft 68 -int styleable ConstraintSet_layout_goneMarginRight 69 -int styleable ConstraintSet_layout_goneMarginStart 70 -int styleable ConstraintSet_layout_goneMarginTop 71 -int[] styleable DrawerArrowToggle { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 } -int styleable DrawerArrowToggle_arrowHeadLength 0 -int styleable DrawerArrowToggle_arrowShaftLength 1 -int styleable DrawerArrowToggle_barLength 2 -int styleable DrawerArrowToggle_color 3 -int styleable DrawerArrowToggle_drawableSize 4 -int styleable DrawerArrowToggle_gapBetweenBars 5 -int styleable DrawerArrowToggle_spinBars 6 -int styleable DrawerArrowToggle_thickness 7 -int[] styleable FontFamily { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int[] styleable FontFamilyFont { 0x7f020076, 0x7f02007e, 0x7f02007f } -int styleable FontFamilyFont_font 0 -int styleable FontFamilyFont_fontStyle 1 -int styleable FontFamilyFont_fontWeight 2 -int[] styleable LinearConstraintLayout { 0x010100c4 } -int styleable LinearConstraintLayout_android_orientation 0 -int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 } -int styleable LinearLayoutCompat_android_gravity 0 -int styleable LinearLayoutCompat_android_orientation 1 -int styleable LinearLayoutCompat_android_baselineAligned 2 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 6 -int styleable LinearLayoutCompat_measureWithLargestChild 7 -int styleable LinearLayoutCompat_showDividers 8 -int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_width 1 -int styleable LinearLayoutCompat_Layout_android_layout_height 2 -int styleable LinearLayoutCompat_Layout_android_layout_weight 3 -int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_visible 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_checkableBehavior 5 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 } -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_actionLayout 13 -int styleable MenuItem_actionProviderClass 14 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_alphabeticModifiers 16 -int styleable MenuItem_contentDescription 17 -int styleable MenuItem_iconTint 18 -int styleable MenuItem_iconTintMode 19 -int styleable MenuItem_numericModifiers 20 -int styleable MenuItem_showAsAction 21 -int styleable MenuItem_tooltipText 22 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, 0x7f0200fb } -int styleable MenuView_android_windowAnimationStyle 0 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200d6 } -int styleable PopupWindow_android_popupBackground 0 -int styleable PopupWindow_android_popupAnimationStyle 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x7f0200fa } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x7f0200d7, 0x7f0200da } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_maxWidth 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_imeOptions 3 -int styleable SearchView_closeIcon 4 -int styleable SearchView_commitIcon 5 -int styleable SearchView_defaultQueryHint 6 -int styleable SearchView_goIcon 7 -int styleable SearchView_iconifiedByDefault 8 -int styleable SearchView_layout 9 -int styleable SearchView_queryBackground 10 -int styleable SearchView_queryHint 11 -int styleable SearchView_searchHintIcon 12 -int styleable SearchView_searchIcon 13 -int styleable SearchView_submitBackground 14 -int styleable SearchView_suggestionRowLayout 15 -int styleable SearchView_voiceIcon 16 -int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200df } -int styleable Spinner_android_entries 0 -int styleable Spinner_android_popupBackground 1 -int styleable Spinner_android_prompt 2 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_popupTheme 4 -int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c } -int styleable SwitchCompat_android_textOn 0 -int styleable SwitchCompat_android_textOff 1 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 3 -int styleable SwitchCompat_splitTrack 4 -int styleable SwitchCompat_switchMinWidth 5 -int styleable SwitchCompat_switchPadding 6 -int styleable SwitchCompat_switchTextAppearance 7 -int styleable SwitchCompat_thumbTextPadding 8 -int styleable SwitchCompat_thumbTint 9 -int styleable SwitchCompat_thumbTintMode 10 -int styleable SwitchCompat_track 11 -int styleable SwitchCompat_trackTint 12 -int styleable SwitchCompat_trackTintMode 13 -int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, 0x7f020106 } -int styleable TextAppearance_android_textSize 0 -int styleable TextAppearance_android_typeface 1 -int styleable TextAppearance_android_textStyle 2 -int styleable TextAppearance_android_textColor 3 -int styleable TextAppearance_android_textColorHint 4 -int styleable TextAppearance_android_textColorLink 5 -int styleable TextAppearance_android_shadowColor 6 -int styleable TextAppearance_android_shadowDx 7 -int styleable TextAppearance_android_shadowDy 8 -int styleable TextAppearance_android_shadowRadius 9 -int styleable TextAppearance_android_fontFamily 10 -int styleable TextAppearance_fontFamily 11 -int styleable TextAppearance_textAllCaps 12 -int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_buttonGravity 2 -int styleable Toolbar_collapseContentDescription 3 -int styleable Toolbar_collapseIcon 4 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetEndWithActions 6 -int styleable Toolbar_contentInsetLeft 7 -int styleable Toolbar_contentInsetRight 8 -int styleable Toolbar_contentInsetStart 9 -int styleable Toolbar_contentInsetStartWithNavigation 10 -int styleable Toolbar_logo 11 -int styleable Toolbar_logoDescription 12 -int styleable Toolbar_maxButtonHeight 13 -int styleable Toolbar_navigationContentDescription 14 -int styleable Toolbar_navigationIcon 15 -int styleable Toolbar_popupTheme 16 -int styleable Toolbar_subtitle 17 -int styleable Toolbar_subtitleTextAppearance 18 -int styleable Toolbar_subtitleTextColor 19 -int styleable Toolbar_title 20 -int styleable Toolbar_titleMargin 21 -int styleable Toolbar_titleMarginBottom 22 -int styleable Toolbar_titleMarginEnd 23 -int styleable Toolbar_titleMarginStart 24 -int styleable Toolbar_titleMarginTop 25 -int styleable Toolbar_titleMargins 26 -int styleable Toolbar_titleTextAppearance 27 -int styleable Toolbar_titleTextColor 28 -int[] styleable View { 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, 0x7f020111 } -int styleable View_android_theme 0 -int styleable View_android_focusable 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020034, 0x7f020035 } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_layout 1 -int styleable ViewStubCompat_android_inflatedId 2 diff --git a/MVPModel/retrofitdemo/build/intermediates/symbols/debug/R.txt b/MVPModel/retrofitdemo/build/intermediates/symbols/debug/R.txt deleted file mode 100644 index 0ee2b8c..0000000 --- a/MVPModel/retrofitdemo/build/intermediates/symbols/debug/R.txt +++ /dev/null @@ -1,1755 +0,0 @@ -int anim abc_fade_in 0x7f010000 -int anim abc_fade_out 0x7f010001 -int anim abc_grow_fade_in_from_bottom 0x7f010002 -int anim abc_popup_enter 0x7f010003 -int anim abc_popup_exit 0x7f010004 -int anim abc_shrink_fade_out_from_bottom 0x7f010005 -int anim abc_slide_in_bottom 0x7f010006 -int anim abc_slide_in_top 0x7f010007 -int anim abc_slide_out_bottom 0x7f010008 -int anim abc_slide_out_top 0x7f010009 -int anim tooltip_enter 0x7f01000a -int anim tooltip_exit 0x7f01000b -int attr actionBarDivider 0x7f020000 -int attr actionBarItemBackground 0x7f020001 -int attr actionBarPopupTheme 0x7f020002 -int attr actionBarSize 0x7f020003 -int attr actionBarSplitStyle 0x7f020004 -int attr actionBarStyle 0x7f020005 -int attr actionBarTabBarStyle 0x7f020006 -int attr actionBarTabStyle 0x7f020007 -int attr actionBarTabTextStyle 0x7f020008 -int attr actionBarTheme 0x7f020009 -int attr actionBarWidgetTheme 0x7f02000a -int attr actionButtonStyle 0x7f02000b -int attr actionDropDownStyle 0x7f02000c -int attr actionLayout 0x7f02000d -int attr actionMenuTextAppearance 0x7f02000e -int attr actionMenuTextColor 0x7f02000f -int attr actionModeBackground 0x7f020010 -int attr actionModeCloseButtonStyle 0x7f020011 -int attr actionModeCloseDrawable 0x7f020012 -int attr actionModeCopyDrawable 0x7f020013 -int attr actionModeCutDrawable 0x7f020014 -int attr actionModeFindDrawable 0x7f020015 -int attr actionModePasteDrawable 0x7f020016 -int attr actionModePopupWindowStyle 0x7f020017 -int attr actionModeSelectAllDrawable 0x7f020018 -int attr actionModeShareDrawable 0x7f020019 -int attr actionModeSplitBackground 0x7f02001a -int attr actionModeStyle 0x7f02001b -int attr actionModeWebSearchDrawable 0x7f02001c -int attr actionOverflowButtonStyle 0x7f02001d -int attr actionOverflowMenuStyle 0x7f02001e -int attr actionProviderClass 0x7f02001f -int attr actionViewClass 0x7f020020 -int attr activityChooserViewStyle 0x7f020021 -int attr alertDialogButtonGroupStyle 0x7f020022 -int attr alertDialogCenterButtons 0x7f020023 -int attr alertDialogStyle 0x7f020024 -int attr alertDialogTheme 0x7f020025 -int attr allowStacking 0x7f020026 -int attr alpha 0x7f020027 -int attr alphabeticModifiers 0x7f020028 -int attr arrowHeadLength 0x7f020029 -int attr arrowShaftLength 0x7f02002a -int attr autoCompleteTextViewStyle 0x7f02002b -int attr autoSizeMaxTextSize 0x7f02002c -int attr autoSizeMinTextSize 0x7f02002d -int attr autoSizePresetSizes 0x7f02002e -int attr autoSizeStepGranularity 0x7f02002f -int attr autoSizeTextType 0x7f020030 -int attr background 0x7f020031 -int attr backgroundSplit 0x7f020032 -int attr backgroundStacked 0x7f020033 -int attr backgroundTint 0x7f020034 -int attr backgroundTintMode 0x7f020035 -int attr barLength 0x7f020036 -int attr barrierAllowsGoneWidgets 0x7f020037 -int attr barrierDirection 0x7f020038 -int attr borderlessButtonStyle 0x7f020039 -int attr buttonBarButtonStyle 0x7f02003a -int attr buttonBarNegativeButtonStyle 0x7f02003b -int attr buttonBarNeutralButtonStyle 0x7f02003c -int attr buttonBarPositiveButtonStyle 0x7f02003d -int attr buttonBarStyle 0x7f02003e -int attr buttonGravity 0x7f02003f -int attr buttonPanelSideLayout 0x7f020040 -int attr buttonStyle 0x7f020041 -int attr buttonStyleSmall 0x7f020042 -int attr buttonTint 0x7f020043 -int attr buttonTintMode 0x7f020044 -int attr chainUseRtl 0x7f020045 -int attr checkboxStyle 0x7f020046 -int attr checkedTextViewStyle 0x7f020047 -int attr closeIcon 0x7f020048 -int attr closeItemLayout 0x7f020049 -int attr collapseContentDescription 0x7f02004a -int attr collapseIcon 0x7f02004b -int attr color 0x7f02004c -int attr colorAccent 0x7f02004d -int attr colorBackgroundFloating 0x7f02004e -int attr colorButtonNormal 0x7f02004f -int attr colorControlActivated 0x7f020050 -int attr colorControlHighlight 0x7f020051 -int attr colorControlNormal 0x7f020052 -int attr colorError 0x7f020053 -int attr colorPrimary 0x7f020054 -int attr colorPrimaryDark 0x7f020055 -int attr colorSwitchThumbNormal 0x7f020056 -int attr commitIcon 0x7f020057 -int attr constraintSet 0x7f020058 -int attr constraint_referenced_ids 0x7f020059 -int attr content 0x7f02005a -int attr contentDescription 0x7f02005b -int attr contentInsetEnd 0x7f02005c -int attr contentInsetEndWithActions 0x7f02005d -int attr contentInsetLeft 0x7f02005e -int attr contentInsetRight 0x7f02005f -int attr contentInsetStart 0x7f020060 -int attr contentInsetStartWithNavigation 0x7f020061 -int attr controlBackground 0x7f020062 -int attr customNavigationLayout 0x7f020063 -int attr defaultQueryHint 0x7f020064 -int attr dialogPreferredPadding 0x7f020065 -int attr dialogTheme 0x7f020066 -int attr displayOptions 0x7f020067 -int attr divider 0x7f020068 -int attr dividerHorizontal 0x7f020069 -int attr dividerPadding 0x7f02006a -int attr dividerVertical 0x7f02006b -int attr drawableSize 0x7f02006c -int attr drawerArrowStyle 0x7f02006d -int attr dropDownListViewStyle 0x7f02006e -int attr dropdownListPreferredItemHeight 0x7f02006f -int attr editTextBackground 0x7f020070 -int attr editTextColor 0x7f020071 -int attr editTextStyle 0x7f020072 -int attr elevation 0x7f020073 -int attr emptyVisibility 0x7f020074 -int attr expandActivityOverflowButtonDrawable 0x7f020075 -int attr font 0x7f020076 -int attr fontFamily 0x7f020077 -int attr fontProviderAuthority 0x7f020078 -int attr fontProviderCerts 0x7f020079 -int attr fontProviderFetchStrategy 0x7f02007a -int attr fontProviderFetchTimeout 0x7f02007b -int attr fontProviderPackage 0x7f02007c -int attr fontProviderQuery 0x7f02007d -int attr fontStyle 0x7f02007e -int attr fontWeight 0x7f02007f -int attr gapBetweenBars 0x7f020080 -int attr goIcon 0x7f020081 -int attr height 0x7f020082 -int attr hideOnContentScroll 0x7f020083 -int attr homeAsUpIndicator 0x7f020084 -int attr homeLayout 0x7f020085 -int attr icon 0x7f020086 -int attr iconTint 0x7f020087 -int attr iconTintMode 0x7f020088 -int attr iconifiedByDefault 0x7f020089 -int attr imageButtonStyle 0x7f02008a -int attr indeterminateProgressStyle 0x7f02008b -int attr initialActivityCount 0x7f02008c -int attr isLightTheme 0x7f02008d -int attr itemPadding 0x7f02008e -int attr layout 0x7f02008f -int attr layout_constrainedHeight 0x7f020090 -int attr layout_constrainedWidth 0x7f020091 -int attr layout_constraintBaseline_creator 0x7f020092 -int attr layout_constraintBaseline_toBaselineOf 0x7f020093 -int attr layout_constraintBottom_creator 0x7f020094 -int attr layout_constraintBottom_toBottomOf 0x7f020095 -int attr layout_constraintBottom_toTopOf 0x7f020096 -int attr layout_constraintCircle 0x7f020097 -int attr layout_constraintCircleAngle 0x7f020098 -int attr layout_constraintCircleRadius 0x7f020099 -int attr layout_constraintDimensionRatio 0x7f02009a -int attr layout_constraintEnd_toEndOf 0x7f02009b -int attr layout_constraintEnd_toStartOf 0x7f02009c -int attr layout_constraintGuide_begin 0x7f02009d -int attr layout_constraintGuide_end 0x7f02009e -int attr layout_constraintGuide_percent 0x7f02009f -int attr layout_constraintHeight_default 0x7f0200a0 -int attr layout_constraintHeight_max 0x7f0200a1 -int attr layout_constraintHeight_min 0x7f0200a2 -int attr layout_constraintHeight_percent 0x7f0200a3 -int attr layout_constraintHorizontal_bias 0x7f0200a4 -int attr layout_constraintHorizontal_chainStyle 0x7f0200a5 -int attr layout_constraintHorizontal_weight 0x7f0200a6 -int attr layout_constraintLeft_creator 0x7f0200a7 -int attr layout_constraintLeft_toLeftOf 0x7f0200a8 -int attr layout_constraintLeft_toRightOf 0x7f0200a9 -int attr layout_constraintRight_creator 0x7f0200aa -int attr layout_constraintRight_toLeftOf 0x7f0200ab -int attr layout_constraintRight_toRightOf 0x7f0200ac -int attr layout_constraintStart_toEndOf 0x7f0200ad -int attr layout_constraintStart_toStartOf 0x7f0200ae -int attr layout_constraintTop_creator 0x7f0200af -int attr layout_constraintTop_toBottomOf 0x7f0200b0 -int attr layout_constraintTop_toTopOf 0x7f0200b1 -int attr layout_constraintVertical_bias 0x7f0200b2 -int attr layout_constraintVertical_chainStyle 0x7f0200b3 -int attr layout_constraintVertical_weight 0x7f0200b4 -int attr layout_constraintWidth_default 0x7f0200b5 -int attr layout_constraintWidth_max 0x7f0200b6 -int attr layout_constraintWidth_min 0x7f0200b7 -int attr layout_constraintWidth_percent 0x7f0200b8 -int attr layout_editor_absoluteX 0x7f0200b9 -int attr layout_editor_absoluteY 0x7f0200ba -int attr layout_goneMarginBottom 0x7f0200bb -int attr layout_goneMarginEnd 0x7f0200bc -int attr layout_goneMarginLeft 0x7f0200bd -int attr layout_goneMarginRight 0x7f0200be -int attr layout_goneMarginStart 0x7f0200bf -int attr layout_goneMarginTop 0x7f0200c0 -int attr layout_optimizationLevel 0x7f0200c1 -int attr listChoiceBackgroundIndicator 0x7f0200c2 -int attr listDividerAlertDialog 0x7f0200c3 -int attr listItemLayout 0x7f0200c4 -int attr listLayout 0x7f0200c5 -int attr listMenuViewStyle 0x7f0200c6 -int attr listPopupWindowStyle 0x7f0200c7 -int attr listPreferredItemHeight 0x7f0200c8 -int attr listPreferredItemHeightLarge 0x7f0200c9 -int attr listPreferredItemHeightSmall 0x7f0200ca -int attr listPreferredItemPaddingLeft 0x7f0200cb -int attr listPreferredItemPaddingRight 0x7f0200cc -int attr logo 0x7f0200cd -int attr logoDescription 0x7f0200ce -int attr maxButtonHeight 0x7f0200cf -int attr measureWithLargestChild 0x7f0200d0 -int attr multiChoiceItemLayout 0x7f0200d1 -int attr navigationContentDescription 0x7f0200d2 -int attr navigationIcon 0x7f0200d3 -int attr navigationMode 0x7f0200d4 -int attr numericModifiers 0x7f0200d5 -int attr overlapAnchor 0x7f0200d6 -int attr paddingBottomNoButtons 0x7f0200d7 -int attr paddingEnd 0x7f0200d8 -int attr paddingStart 0x7f0200d9 -int attr paddingTopNoTitle 0x7f0200da -int attr panelBackground 0x7f0200db -int attr panelMenuListTheme 0x7f0200dc -int attr panelMenuListWidth 0x7f0200dd -int attr popupMenuStyle 0x7f0200de -int attr popupTheme 0x7f0200df -int attr popupWindowStyle 0x7f0200e0 -int attr preserveIconSpacing 0x7f0200e1 -int attr progressBarPadding 0x7f0200e2 -int attr progressBarStyle 0x7f0200e3 -int attr queryBackground 0x7f0200e4 -int attr queryHint 0x7f0200e5 -int attr radioButtonStyle 0x7f0200e6 -int attr ratingBarStyle 0x7f0200e7 -int attr ratingBarStyleIndicator 0x7f0200e8 -int attr ratingBarStyleSmall 0x7f0200e9 -int attr searchHintIcon 0x7f0200ea -int attr searchIcon 0x7f0200eb -int attr searchViewStyle 0x7f0200ec -int attr seekBarStyle 0x7f0200ed -int attr selectableItemBackground 0x7f0200ee -int attr selectableItemBackgroundBorderless 0x7f0200ef -int attr showAsAction 0x7f0200f0 -int attr showDividers 0x7f0200f1 -int attr showText 0x7f0200f2 -int attr showTitle 0x7f0200f3 -int attr singleChoiceItemLayout 0x7f0200f4 -int attr spinBars 0x7f0200f5 -int attr spinnerDropDownItemStyle 0x7f0200f6 -int attr spinnerStyle 0x7f0200f7 -int attr splitTrack 0x7f0200f8 -int attr srcCompat 0x7f0200f9 -int attr state_above_anchor 0x7f0200fa -int attr subMenuArrow 0x7f0200fb -int attr submitBackground 0x7f0200fc -int attr subtitle 0x7f0200fd -int attr subtitleTextAppearance 0x7f0200fe -int attr subtitleTextColor 0x7f0200ff -int attr subtitleTextStyle 0x7f020100 -int attr suggestionRowLayout 0x7f020101 -int attr switchMinWidth 0x7f020102 -int attr switchPadding 0x7f020103 -int attr switchStyle 0x7f020104 -int attr switchTextAppearance 0x7f020105 -int attr textAllCaps 0x7f020106 -int attr textAppearanceLargePopupMenu 0x7f020107 -int attr textAppearanceListItem 0x7f020108 -int attr textAppearanceListItemSecondary 0x7f020109 -int attr textAppearanceListItemSmall 0x7f02010a -int attr textAppearancePopupMenuHeader 0x7f02010b -int attr textAppearanceSearchResultSubtitle 0x7f02010c -int attr textAppearanceSearchResultTitle 0x7f02010d -int attr textAppearanceSmallPopupMenu 0x7f02010e -int attr textColorAlertDialogListItem 0x7f02010f -int attr textColorSearchUrl 0x7f020110 -int attr theme 0x7f020111 -int attr thickness 0x7f020112 -int attr thumbTextPadding 0x7f020113 -int attr thumbTint 0x7f020114 -int attr thumbTintMode 0x7f020115 -int attr tickMark 0x7f020116 -int attr tickMarkTint 0x7f020117 -int attr tickMarkTintMode 0x7f020118 -int attr tint 0x7f020119 -int attr tintMode 0x7f02011a -int attr title 0x7f02011b -int attr titleMargin 0x7f02011c -int attr titleMarginBottom 0x7f02011d -int attr titleMarginEnd 0x7f02011e -int attr titleMarginStart 0x7f02011f -int attr titleMarginTop 0x7f020120 -int attr titleMargins 0x7f020121 -int attr titleTextAppearance 0x7f020122 -int attr titleTextColor 0x7f020123 -int attr titleTextStyle 0x7f020124 -int attr toolbarNavigationButtonStyle 0x7f020125 -int attr toolbarStyle 0x7f020126 -int attr tooltipForegroundColor 0x7f020127 -int attr tooltipFrameBackground 0x7f020128 -int attr tooltipText 0x7f020129 -int attr track 0x7f02012a -int attr trackTint 0x7f02012b -int attr trackTintMode 0x7f02012c -int attr voiceIcon 0x7f02012d -int attr windowActionBar 0x7f02012e -int attr windowActionBarOverlay 0x7f02012f -int attr windowActionModeOverlay 0x7f020130 -int attr windowFixedHeightMajor 0x7f020131 -int attr windowFixedHeightMinor 0x7f020132 -int attr windowFixedWidthMajor 0x7f020133 -int attr windowFixedWidthMinor 0x7f020134 -int attr windowMinWidthMajor 0x7f020135 -int attr windowMinWidthMinor 0x7f020136 -int attr windowNoTitle 0x7f020137 -int bool abc_action_bar_embed_tabs 0x7f030000 -int bool abc_allow_stacked_button_bar 0x7f030001 -int bool abc_config_actionMenuItemAllCaps 0x7f030002 -int bool abc_config_closeDialogWhenTouchOutside 0x7f030003 -int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f030004 -int color abc_background_cache_hint_selector_material_dark 0x7f040000 -int color abc_background_cache_hint_selector_material_light 0x7f040001 -int color abc_btn_colored_borderless_text_material 0x7f040002 -int color abc_btn_colored_text_material 0x7f040003 -int color abc_color_highlight_material 0x7f040004 -int color abc_hint_foreground_material_dark 0x7f040005 -int color abc_hint_foreground_material_light 0x7f040006 -int color abc_input_method_navigation_guard 0x7f040007 -int color abc_primary_text_disable_only_material_dark 0x7f040008 -int color abc_primary_text_disable_only_material_light 0x7f040009 -int color abc_primary_text_material_dark 0x7f04000a -int color abc_primary_text_material_light 0x7f04000b -int color abc_search_url_text 0x7f04000c -int color abc_search_url_text_normal 0x7f04000d -int color abc_search_url_text_pressed 0x7f04000e -int color abc_search_url_text_selected 0x7f04000f -int color abc_secondary_text_material_dark 0x7f040010 -int color abc_secondary_text_material_light 0x7f040011 -int color abc_tint_btn_checkable 0x7f040012 -int color abc_tint_default 0x7f040013 -int color abc_tint_edittext 0x7f040014 -int color abc_tint_seek_thumb 0x7f040015 -int color abc_tint_spinner 0x7f040016 -int color abc_tint_switch_track 0x7f040017 -int color accent_material_dark 0x7f040018 -int color accent_material_light 0x7f040019 -int color background_floating_material_dark 0x7f04001a -int color background_floating_material_light 0x7f04001b -int color background_material_dark 0x7f04001c -int color background_material_light 0x7f04001d -int color bright_foreground_disabled_material_dark 0x7f04001e -int color bright_foreground_disabled_material_light 0x7f04001f -int color bright_foreground_inverse_material_dark 0x7f040020 -int color bright_foreground_inverse_material_light 0x7f040021 -int color bright_foreground_material_dark 0x7f040022 -int color bright_foreground_material_light 0x7f040023 -int color button_material_dark 0x7f040024 -int color button_material_light 0x7f040025 -int color colorAccent 0x7f040026 -int color colorPrimary 0x7f040027 -int color colorPrimaryDark 0x7f040028 -int color dim_foreground_disabled_material_dark 0x7f040029 -int color dim_foreground_disabled_material_light 0x7f04002a -int color dim_foreground_material_dark 0x7f04002b -int color dim_foreground_material_light 0x7f04002c -int color error_color_material 0x7f04002d -int color foreground_material_dark 0x7f04002e -int color foreground_material_light 0x7f04002f -int color highlighted_text_material_dark 0x7f040030 -int color highlighted_text_material_light 0x7f040031 -int color material_blue_grey_800 0x7f040032 -int color material_blue_grey_900 0x7f040033 -int color material_blue_grey_950 0x7f040034 -int color material_deep_teal_200 0x7f040035 -int color material_deep_teal_500 0x7f040036 -int color material_grey_100 0x7f040037 -int color material_grey_300 0x7f040038 -int color material_grey_50 0x7f040039 -int color material_grey_600 0x7f04003a -int color material_grey_800 0x7f04003b -int color material_grey_850 0x7f04003c -int color material_grey_900 0x7f04003d -int color notification_action_color_filter 0x7f04003e -int color notification_icon_bg_color 0x7f04003f -int color notification_material_background_media_default_color 0x7f040040 -int color primary_dark_material_dark 0x7f040041 -int color primary_dark_material_light 0x7f040042 -int color primary_material_dark 0x7f040043 -int color primary_material_light 0x7f040044 -int color primary_text_default_material_dark 0x7f040045 -int color primary_text_default_material_light 0x7f040046 -int color primary_text_disabled_material_dark 0x7f040047 -int color primary_text_disabled_material_light 0x7f040048 -int color ripple_material_dark 0x7f040049 -int color ripple_material_light 0x7f04004a -int color secondary_text_default_material_dark 0x7f04004b -int color secondary_text_default_material_light 0x7f04004c -int color secondary_text_disabled_material_dark 0x7f04004d -int color secondary_text_disabled_material_light 0x7f04004e -int color switch_thumb_disabled_material_dark 0x7f04004f -int color switch_thumb_disabled_material_light 0x7f040050 -int color switch_thumb_material_dark 0x7f040051 -int color switch_thumb_material_light 0x7f040052 -int color switch_thumb_normal_material_dark 0x7f040053 -int color switch_thumb_normal_material_light 0x7f040054 -int color tooltip_background_dark 0x7f040055 -int color tooltip_background_light 0x7f040056 -int dimen abc_action_bar_content_inset_material 0x7f050000 -int dimen abc_action_bar_content_inset_with_nav 0x7f050001 -int dimen abc_action_bar_default_height_material 0x7f050002 -int dimen abc_action_bar_default_padding_end_material 0x7f050003 -int dimen abc_action_bar_default_padding_start_material 0x7f050004 -int dimen abc_action_bar_elevation_material 0x7f050005 -int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006 -int dimen abc_action_bar_overflow_padding_end_material 0x7f050007 -int dimen abc_action_bar_overflow_padding_start_material 0x7f050008 -int dimen abc_action_bar_progress_bar_size 0x7f050009 -int dimen abc_action_bar_stacked_max_height 0x7f05000a -int dimen abc_action_bar_stacked_tab_max_width 0x7f05000b -int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000c -int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000d -int dimen abc_action_button_min_height_material 0x7f05000e -int dimen abc_action_button_min_width_material 0x7f05000f -int dimen abc_action_button_min_width_overflow_material 0x7f050010 -int dimen abc_alert_dialog_button_bar_height 0x7f050011 -int dimen abc_button_inset_horizontal_material 0x7f050012 -int dimen abc_button_inset_vertical_material 0x7f050013 -int dimen abc_button_padding_horizontal_material 0x7f050014 -int dimen abc_button_padding_vertical_material 0x7f050015 -int dimen abc_cascading_menus_min_smallest_width 0x7f050016 -int dimen abc_config_prefDialogWidth 0x7f050017 -int dimen abc_control_corner_material 0x7f050018 -int dimen abc_control_inset_material 0x7f050019 -int dimen abc_control_padding_material 0x7f05001a -int dimen abc_dialog_fixed_height_major 0x7f05001b -int dimen abc_dialog_fixed_height_minor 0x7f05001c -int dimen abc_dialog_fixed_width_major 0x7f05001d -int dimen abc_dialog_fixed_width_minor 0x7f05001e -int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f05001f -int dimen abc_dialog_list_padding_top_no_title 0x7f050020 -int dimen abc_dialog_min_width_major 0x7f050021 -int dimen abc_dialog_min_width_minor 0x7f050022 -int dimen abc_dialog_padding_material 0x7f050023 -int dimen abc_dialog_padding_top_material 0x7f050024 -int dimen abc_dialog_title_divider_material 0x7f050025 -int dimen abc_disabled_alpha_material_dark 0x7f050026 -int dimen abc_disabled_alpha_material_light 0x7f050027 -int dimen abc_dropdownitem_icon_width 0x7f050028 -int dimen abc_dropdownitem_text_padding_left 0x7f050029 -int dimen abc_dropdownitem_text_padding_right 0x7f05002a -int dimen abc_edit_text_inset_bottom_material 0x7f05002b -int dimen abc_edit_text_inset_horizontal_material 0x7f05002c -int dimen abc_edit_text_inset_top_material 0x7f05002d -int dimen abc_floating_window_z 0x7f05002e -int dimen abc_list_item_padding_horizontal_material 0x7f05002f -int dimen abc_panel_menu_list_width 0x7f050030 -int dimen abc_progress_bar_height_material 0x7f050031 -int dimen abc_search_view_preferred_height 0x7f050032 -int dimen abc_search_view_preferred_width 0x7f050033 -int dimen abc_seekbar_track_background_height_material 0x7f050034 -int dimen abc_seekbar_track_progress_height_material 0x7f050035 -int dimen abc_select_dialog_padding_start_material 0x7f050036 -int dimen abc_switch_padding 0x7f050037 -int dimen abc_text_size_body_1_material 0x7f050038 -int dimen abc_text_size_body_2_material 0x7f050039 -int dimen abc_text_size_button_material 0x7f05003a -int dimen abc_text_size_caption_material 0x7f05003b -int dimen abc_text_size_display_1_material 0x7f05003c -int dimen abc_text_size_display_2_material 0x7f05003d -int dimen abc_text_size_display_3_material 0x7f05003e -int dimen abc_text_size_display_4_material 0x7f05003f -int dimen abc_text_size_headline_material 0x7f050040 -int dimen abc_text_size_large_material 0x7f050041 -int dimen abc_text_size_medium_material 0x7f050042 -int dimen abc_text_size_menu_header_material 0x7f050043 -int dimen abc_text_size_menu_material 0x7f050044 -int dimen abc_text_size_small_material 0x7f050045 -int dimen abc_text_size_subhead_material 0x7f050046 -int dimen abc_text_size_subtitle_material_toolbar 0x7f050047 -int dimen abc_text_size_title_material 0x7f050048 -int dimen abc_text_size_title_material_toolbar 0x7f050049 -int dimen compat_button_inset_horizontal_material 0x7f05004a -int dimen compat_button_inset_vertical_material 0x7f05004b -int dimen compat_button_padding_horizontal_material 0x7f05004c -int dimen compat_button_padding_vertical_material 0x7f05004d -int dimen compat_control_corner_material 0x7f05004e -int dimen disabled_alpha_material_dark 0x7f05004f -int dimen disabled_alpha_material_light 0x7f050050 -int dimen highlight_alpha_material_colored 0x7f050051 -int dimen highlight_alpha_material_dark 0x7f050052 -int dimen highlight_alpha_material_light 0x7f050053 -int dimen hint_alpha_material_dark 0x7f050054 -int dimen hint_alpha_material_light 0x7f050055 -int dimen hint_pressed_alpha_material_dark 0x7f050056 -int dimen hint_pressed_alpha_material_light 0x7f050057 -int dimen notification_action_icon_size 0x7f050058 -int dimen notification_action_text_size 0x7f050059 -int dimen notification_big_circle_margin 0x7f05005a -int dimen notification_content_margin_start 0x7f05005b -int dimen notification_large_icon_height 0x7f05005c -int dimen notification_large_icon_width 0x7f05005d -int dimen notification_main_column_padding_top 0x7f05005e -int dimen notification_media_narrow_margin 0x7f05005f -int dimen notification_right_icon_size 0x7f050060 -int dimen notification_right_side_padding_top 0x7f050061 -int dimen notification_small_icon_background_padding 0x7f050062 -int dimen notification_small_icon_size_as_large 0x7f050063 -int dimen notification_subtext_size 0x7f050064 -int dimen notification_top_pad 0x7f050065 -int dimen notification_top_pad_large_text 0x7f050066 -int dimen tooltip_corner_radius 0x7f050067 -int dimen tooltip_horizontal_padding 0x7f050068 -int dimen tooltip_margin 0x7f050069 -int dimen tooltip_precise_anchor_extra_offset 0x7f05006a -int dimen tooltip_precise_anchor_threshold 0x7f05006b -int dimen tooltip_vertical_padding 0x7f05006c -int dimen tooltip_y_offset_non_touch 0x7f05006d -int dimen tooltip_y_offset_touch 0x7f05006e -int drawable abc_ab_share_pack_mtrl_alpha 0x7f060001 -int drawable abc_action_bar_item_background_material 0x7f060002 -int drawable abc_btn_borderless_material 0x7f060003 -int drawable abc_btn_check_material 0x7f060004 -int drawable abc_btn_check_to_on_mtrl_000 0x7f060005 -int drawable abc_btn_check_to_on_mtrl_015 0x7f060006 -int drawable abc_btn_colored_material 0x7f060007 -int drawable abc_btn_default_mtrl_shape 0x7f060008 -int drawable abc_btn_radio_material 0x7f060009 -int drawable abc_btn_radio_to_on_mtrl_000 0x7f06000a -int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000b -int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000c -int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000d -int drawable abc_cab_background_internal_bg 0x7f06000e -int drawable abc_cab_background_top_material 0x7f06000f -int drawable abc_cab_background_top_mtrl_alpha 0x7f060010 -int drawable abc_control_background_material 0x7f060011 -int drawable abc_dialog_material_background 0x7f060012 -int drawable abc_edit_text_material 0x7f060013 -int drawable abc_ic_ab_back_material 0x7f060014 -int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060015 -int drawable abc_ic_clear_material 0x7f060016 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060017 -int drawable abc_ic_go_search_api_material 0x7f060018 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060019 -int drawable abc_ic_menu_cut_mtrl_alpha 0x7f06001a -int drawable abc_ic_menu_overflow_material 0x7f06001b -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001c -int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001d -int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001e -int drawable abc_ic_search_api_material 0x7f06001f -int drawable abc_ic_star_black_16dp 0x7f060020 -int drawable abc_ic_star_black_36dp 0x7f060021 -int drawable abc_ic_star_black_48dp 0x7f060022 -int drawable abc_ic_star_half_black_16dp 0x7f060023 -int drawable abc_ic_star_half_black_36dp 0x7f060024 -int drawable abc_ic_star_half_black_48dp 0x7f060025 -int drawable abc_ic_voice_search_api_material 0x7f060026 -int drawable abc_item_background_holo_dark 0x7f060027 -int drawable abc_item_background_holo_light 0x7f060028 -int drawable abc_list_divider_mtrl_alpha 0x7f060029 -int drawable abc_list_focused_holo 0x7f06002a -int drawable abc_list_longpressed_holo 0x7f06002b -int drawable abc_list_pressed_holo_dark 0x7f06002c -int drawable abc_list_pressed_holo_light 0x7f06002d -int drawable abc_list_selector_background_transition_holo_dark 0x7f06002e -int drawable abc_list_selector_background_transition_holo_light 0x7f06002f -int drawable abc_list_selector_disabled_holo_dark 0x7f060030 -int drawable abc_list_selector_disabled_holo_light 0x7f060031 -int drawable abc_list_selector_holo_dark 0x7f060032 -int drawable abc_list_selector_holo_light 0x7f060033 -int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060034 -int drawable abc_popup_background_mtrl_mult 0x7f060035 -int drawable abc_ratingbar_indicator_material 0x7f060036 -int drawable abc_ratingbar_material 0x7f060037 -int drawable abc_ratingbar_small_material 0x7f060038 -int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060039 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f06003a -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003b -int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003c -int drawable abc_scrubber_track_mtrl_alpha 0x7f06003d -int drawable abc_seekbar_thumb_material 0x7f06003e -int drawable abc_seekbar_tick_mark_material 0x7f06003f -int drawable abc_seekbar_track_material 0x7f060040 -int drawable abc_spinner_mtrl_am_alpha 0x7f060041 -int drawable abc_spinner_textfield_background_material 0x7f060042 -int drawable abc_switch_thumb_material 0x7f060043 -int drawable abc_switch_track_mtrl_alpha 0x7f060044 -int drawable abc_tab_indicator_material 0x7f060045 -int drawable abc_tab_indicator_mtrl_alpha 0x7f060046 -int drawable abc_text_cursor_material 0x7f060047 -int drawable abc_text_select_handle_left_mtrl_dark 0x7f060048 -int drawable abc_text_select_handle_left_mtrl_light 0x7f060049 -int drawable abc_text_select_handle_middle_mtrl_dark 0x7f06004a -int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004b -int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004c -int drawable abc_text_select_handle_right_mtrl_light 0x7f06004d -int drawable abc_textfield_activated_mtrl_alpha 0x7f06004e -int drawable abc_textfield_default_mtrl_alpha 0x7f06004f -int drawable abc_textfield_search_activated_mtrl_alpha 0x7f060050 -int drawable abc_textfield_search_default_mtrl_alpha 0x7f060051 -int drawable abc_textfield_search_material 0x7f060052 -int drawable abc_vector_test 0x7f060053 -int drawable ic_launcher_background 0x7f060054 -int drawable ic_launcher_foreground 0x7f060055 -int drawable notification_action_background 0x7f060056 -int drawable notification_bg 0x7f060057 -int drawable notification_bg_low 0x7f060058 -int drawable notification_bg_low_normal 0x7f060059 -int drawable notification_bg_low_pressed 0x7f06005a -int drawable notification_bg_normal 0x7f06005b -int drawable notification_bg_normal_pressed 0x7f06005c -int drawable notification_icon_background 0x7f06005d -int drawable notification_template_icon_bg 0x7f06005e -int drawable notification_template_icon_low_bg 0x7f06005f -int drawable notification_tile_bg 0x7f060060 -int drawable notify_panel_notification_icon_bg 0x7f060061 -int drawable tooltip_frame_dark 0x7f060062 -int drawable tooltip_frame_light 0x7f060063 -int id ALT 0x7f070000 -int id CTRL 0x7f070001 -int id FUNCTION 0x7f070002 -int id META 0x7f070003 -int id SHIFT 0x7f070004 -int id SYM 0x7f070005 -int id action0 0x7f070006 -int id action_bar 0x7f070007 -int id action_bar_activity_content 0x7f070008 -int id action_bar_container 0x7f070009 -int id action_bar_root 0x7f07000a -int id action_bar_spinner 0x7f07000b -int id action_bar_subtitle 0x7f07000c -int id action_bar_title 0x7f07000d -int id action_container 0x7f07000e -int id action_context_bar 0x7f07000f -int id action_divider 0x7f070010 -int id action_image 0x7f070011 -int id action_menu_divider 0x7f070012 -int id action_menu_presenter 0x7f070013 -int id action_mode_bar 0x7f070014 -int id action_mode_bar_stub 0x7f070015 -int id action_mode_close_button 0x7f070016 -int id action_text 0x7f070017 -int id actions 0x7f070018 -int id activity_chooser_view_content 0x7f070019 -int id activity_main 0x7f07001a -int id add 0x7f07001b -int id alertTitle 0x7f07001c -int id always 0x7f07001d -int id async 0x7f07001e -int id barrier 0x7f07001f -int id beginning 0x7f070020 -int id blocking 0x7f070021 -int id bottom 0x7f070022 -int id button 0x7f070023 -int id buttonPanel 0x7f070024 -int id cancel_action 0x7f070025 -int id chains 0x7f070026 -int id checkbox 0x7f070027 -int id chronometer 0x7f070028 -int id collapseActionView 0x7f070029 -int id contentPanel 0x7f07002a -int id custom 0x7f07002b -int id customPanel 0x7f07002c -int id decor_content_parent 0x7f07002d -int id default_activity_button 0x7f07002e -int id dimensions 0x7f07002f -int id direct 0x7f070030 -int id disableHome 0x7f070031 -int id edit_query 0x7f070032 -int id end 0x7f070033 -int id end_padder 0x7f070034 -int id expand_activities_button 0x7f070035 -int id expanded_menu 0x7f070036 -int id forever 0x7f070037 -int id gone 0x7f070038 -int id home 0x7f070039 -int id homeAsUp 0x7f07003a -int id icon 0x7f07003b -int id icon_group 0x7f07003c -int id ifRoom 0x7f07003d -int id image 0x7f07003e -int id info 0x7f07003f -int id invisible 0x7f070040 -int id italic 0x7f070041 -int id left 0x7f070042 -int id line1 0x7f070043 -int id line3 0x7f070044 -int id listMode 0x7f070045 -int id list_item 0x7f070046 -int id media_actions 0x7f070047 -int id message 0x7f070048 -int id middle 0x7f070049 -int id multiply 0x7f07004a -int id never 0x7f07004b -int id none 0x7f07004c -int id normal 0x7f07004d -int id notification_background 0x7f07004e -int id notification_main_column 0x7f07004f -int id notification_main_column_container 0x7f070050 -int id packed 0x7f070051 -int id parent 0x7f070052 -int id parentPanel 0x7f070053 -int id percent 0x7f070054 -int id progress_circular 0x7f070055 -int id progress_horizontal 0x7f070056 -int id radio 0x7f070057 -int id right 0x7f070058 -int id right_icon 0x7f070059 -int id right_side 0x7f07005a -int id screen 0x7f07005b -int id scrollIndicatorDown 0x7f07005c -int id scrollIndicatorUp 0x7f07005d -int id scrollView 0x7f07005e -int id search_badge 0x7f07005f -int id search_bar 0x7f070060 -int id search_button 0x7f070061 -int id search_close_btn 0x7f070062 -int id search_edit_frame 0x7f070063 -int id search_go_btn 0x7f070064 -int id search_mag_icon 0x7f070065 -int id search_plate 0x7f070066 -int id search_src_text 0x7f070067 -int id search_voice_btn 0x7f070068 -int id select_dialog_listview 0x7f070069 -int id shortcut 0x7f07006a -int id showCustom 0x7f07006b -int id showHome 0x7f07006c -int id showTitle 0x7f07006d -int id spacer 0x7f07006e -int id split_action_bar 0x7f07006f -int id spread 0x7f070070 -int id spread_inside 0x7f070071 -int id src_atop 0x7f070072 -int id src_in 0x7f070073 -int id src_over 0x7f070074 -int id standard 0x7f070075 -int id start 0x7f070076 -int id status_bar_latest_event_content 0x7f070077 -int id submenuarrow 0x7f070078 -int id submit_area 0x7f070079 -int id tabMode 0x7f07007a -int id text 0x7f07007b -int id text2 0x7f07007c -int id textSpacerNoButtons 0x7f07007d -int id textSpacerNoTitle 0x7f07007e -int id textView 0x7f07007f -int id time 0x7f070080 -int id title 0x7f070081 -int id titleDividerNoCustom 0x7f070082 -int id title_template 0x7f070083 -int id top 0x7f070084 -int id topPanel 0x7f070085 -int id uniform 0x7f070086 -int id up 0x7f070087 -int id useLogo 0x7f070088 -int id withText 0x7f070089 -int id wrap 0x7f07008a -int id wrap_content 0x7f07008b -int integer abc_config_activityDefaultDur 0x7f080000 -int integer abc_config_activityShortDur 0x7f080001 -int integer cancel_button_image_alpha 0x7f080002 -int integer config_tooltipAnimTime 0x7f080003 -int integer status_bar_notification_info_maxnum 0x7f080004 -int layout abc_action_bar_title_item 0x7f090000 -int layout abc_action_bar_up_container 0x7f090001 -int layout abc_action_bar_view_list_nav_layout 0x7f090002 -int layout abc_action_menu_item_layout 0x7f090003 -int layout abc_action_menu_layout 0x7f090004 -int layout abc_action_mode_bar 0x7f090005 -int layout abc_action_mode_close_item_material 0x7f090006 -int layout abc_activity_chooser_view 0x7f090007 -int layout abc_activity_chooser_view_list_item 0x7f090008 -int layout abc_alert_dialog_button_bar_material 0x7f090009 -int layout abc_alert_dialog_material 0x7f09000a -int layout abc_alert_dialog_title_material 0x7f09000b -int layout abc_dialog_title_material 0x7f09000c -int layout abc_expanded_menu_layout 0x7f09000d -int layout abc_list_menu_item_checkbox 0x7f09000e -int layout abc_list_menu_item_icon 0x7f09000f -int layout abc_list_menu_item_layout 0x7f090010 -int layout abc_list_menu_item_radio 0x7f090011 -int layout abc_popup_menu_header_item_layout 0x7f090012 -int layout abc_popup_menu_item_layout 0x7f090013 -int layout abc_screen_content_include 0x7f090014 -int layout abc_screen_simple 0x7f090015 -int layout abc_screen_simple_overlay_action_mode 0x7f090016 -int layout abc_screen_toolbar 0x7f090017 -int layout abc_search_dropdown_item_icons_2line 0x7f090018 -int layout abc_search_view 0x7f090019 -int layout abc_select_dialog_material 0x7f09001a -int layout activity_home 0x7f09001b -int layout activity_main 0x7f09001c -int layout notification_action 0x7f09001d -int layout notification_action_tombstone 0x7f09001e -int layout notification_media_action 0x7f09001f -int layout notification_media_cancel_action 0x7f090020 -int layout notification_template_big_media 0x7f090021 -int layout notification_template_big_media_custom 0x7f090022 -int layout notification_template_big_media_narrow 0x7f090023 -int layout notification_template_big_media_narrow_custom 0x7f090024 -int layout notification_template_custom_big 0x7f090025 -int layout notification_template_icon_group 0x7f090026 -int layout notification_template_lines_media 0x7f090027 -int layout notification_template_media 0x7f090028 -int layout notification_template_media_custom 0x7f090029 -int layout notification_template_part_chronometer 0x7f09002a -int layout notification_template_part_time 0x7f09002b -int layout select_dialog_item_material 0x7f09002c -int layout select_dialog_multichoice_material 0x7f09002d -int layout select_dialog_singlechoice_material 0x7f09002e -int layout support_simple_spinner_dropdown_item 0x7f09002f -int layout tooltip 0x7f090030 -int mipmap ic_launcher 0x7f0a0000 -int mipmap ic_launcher_round 0x7f0a0001 -int string abc_action_bar_home_description 0x7f0b0000 -int string abc_action_bar_home_description_format 0x7f0b0001 -int string abc_action_bar_home_subtitle_description_format 0x7f0b0002 -int string abc_action_bar_up_description 0x7f0b0003 -int string abc_action_menu_overflow_description 0x7f0b0004 -int string abc_action_mode_done 0x7f0b0005 -int string abc_activity_chooser_view_see_all 0x7f0b0006 -int string abc_activitychooserview_choose_application 0x7f0b0007 -int string abc_capital_off 0x7f0b0008 -int string abc_capital_on 0x7f0b0009 -int string abc_font_family_body_1_material 0x7f0b000a -int string abc_font_family_body_2_material 0x7f0b000b -int string abc_font_family_button_material 0x7f0b000c -int string abc_font_family_caption_material 0x7f0b000d -int string abc_font_family_display_1_material 0x7f0b000e -int string abc_font_family_display_2_material 0x7f0b000f -int string abc_font_family_display_3_material 0x7f0b0010 -int string abc_font_family_display_4_material 0x7f0b0011 -int string abc_font_family_headline_material 0x7f0b0012 -int string abc_font_family_menu_material 0x7f0b0013 -int string abc_font_family_subhead_material 0x7f0b0014 -int string abc_font_family_title_material 0x7f0b0015 -int string abc_search_hint 0x7f0b0016 -int string abc_searchview_description_clear 0x7f0b0017 -int string abc_searchview_description_query 0x7f0b0018 -int string abc_searchview_description_search 0x7f0b0019 -int string abc_searchview_description_submit 0x7f0b001a -int string abc_searchview_description_voice 0x7f0b001b -int string abc_shareactionprovider_share_with 0x7f0b001c -int string abc_shareactionprovider_share_with_application 0x7f0b001d -int string abc_toolbar_collapse_description 0x7f0b001e -int string app_name 0x7f0b001f -int string search_menu_title 0x7f0b0020 -int string status_bar_notification_info_overflow 0x7f0b0021 -int style AlertDialog_AppCompat 0x7f0c0000 -int style AlertDialog_AppCompat_Light 0x7f0c0001 -int style Animation_AppCompat_Dialog 0x7f0c0002 -int style Animation_AppCompat_DropDownUp 0x7f0c0003 -int style Animation_AppCompat_Tooltip 0x7f0c0004 -int style AppTheme 0x7f0c0005 -int style Base_AlertDialog_AppCompat 0x7f0c0006 -int style Base_AlertDialog_AppCompat_Light 0x7f0c0007 -int style Base_Animation_AppCompat_Dialog 0x7f0c0008 -int style Base_Animation_AppCompat_DropDownUp 0x7f0c0009 -int style Base_Animation_AppCompat_Tooltip 0x7f0c000a -int style Base_DialogWindowTitle_AppCompat 0x7f0c000b -int style Base_DialogWindowTitleBackground_AppCompat 0x7f0c000c -int style Base_TextAppearance_AppCompat 0x7f0c000d -int style Base_TextAppearance_AppCompat_Body1 0x7f0c000e -int style Base_TextAppearance_AppCompat_Body2 0x7f0c000f -int style Base_TextAppearance_AppCompat_Button 0x7f0c0010 -int style Base_TextAppearance_AppCompat_Caption 0x7f0c0011 -int style Base_TextAppearance_AppCompat_Display1 0x7f0c0012 -int style Base_TextAppearance_AppCompat_Display2 0x7f0c0013 -int style Base_TextAppearance_AppCompat_Display3 0x7f0c0014 -int style Base_TextAppearance_AppCompat_Display4 0x7f0c0015 -int style Base_TextAppearance_AppCompat_Headline 0x7f0c0016 -int style Base_TextAppearance_AppCompat_Inverse 0x7f0c0017 -int style Base_TextAppearance_AppCompat_Large 0x7f0c0018 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0c0019 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c001a -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c001b -int style Base_TextAppearance_AppCompat_Medium 0x7f0c001c -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0c001d -int style Base_TextAppearance_AppCompat_Menu 0x7f0c001e -int style Base_TextAppearance_AppCompat_SearchResult 0x7f0c001f -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c0020 -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0c0021 -int style Base_TextAppearance_AppCompat_Small 0x7f0c0022 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0c0023 -int style Base_TextAppearance_AppCompat_Subhead 0x7f0c0024 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0c0025 -int style Base_TextAppearance_AppCompat_Title 0x7f0c0026 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0c0027 -int style Base_TextAppearance_AppCompat_Tooltip 0x7f0c0028 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c0029 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c002a -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c002b -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c002c -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c002d -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c002e -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c002f -int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0c0030 -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0c0031 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0c0032 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0c0033 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0034 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0c0035 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c0036 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c0037 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0c0038 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c0039 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c003a -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c003b -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c003c -int style Base_Theme_AppCompat 0x7f0c003d -int style Base_Theme_AppCompat_CompactMenu 0x7f0c003e -int style Base_Theme_AppCompat_Dialog 0x7f0c003f -int style Base_Theme_AppCompat_Dialog_Alert 0x7f0c0040 -int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0c0041 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0c0042 -int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0c0043 -int style Base_Theme_AppCompat_Light 0x7f0c0044 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0c0045 -int style Base_Theme_AppCompat_Light_Dialog 0x7f0c0046 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0c0047 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0c0048 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0c0049 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0c004a -int style Base_ThemeOverlay_AppCompat 0x7f0c004b -int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0c004c -int style Base_ThemeOverlay_AppCompat_Dark 0x7f0c004d -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c004e -int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0c004f -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0c0050 -int style Base_ThemeOverlay_AppCompat_Light 0x7f0c0051 -int style Base_V11_Theme_AppCompat_Dialog 0x7f0c0052 -int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0c0053 -int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f0c0054 -int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0c0055 -int style Base_V12_Widget_AppCompat_EditText 0x7f0c0056 -int style Base_V21_Theme_AppCompat 0x7f0c0057 -int style Base_V21_Theme_AppCompat_Dialog 0x7f0c0058 -int style Base_V21_Theme_AppCompat_Light 0x7f0c0059 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0c005a -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0c005b -int style Base_V22_Theme_AppCompat 0x7f0c005c -int style Base_V22_Theme_AppCompat_Light 0x7f0c005d -int style Base_V23_Theme_AppCompat 0x7f0c005e -int style Base_V23_Theme_AppCompat_Light 0x7f0c005f -int style Base_V26_Theme_AppCompat 0x7f0c0060 -int style Base_V26_Theme_AppCompat_Light 0x7f0c0061 -int style Base_V26_Widget_AppCompat_Toolbar 0x7f0c0062 -int style Base_V7_Theme_AppCompat 0x7f0c0063 -int style Base_V7_Theme_AppCompat_Dialog 0x7f0c0064 -int style Base_V7_Theme_AppCompat_Light 0x7f0c0065 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0c0066 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0c0067 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0c0068 -int style Base_V7_Widget_AppCompat_EditText 0x7f0c0069 -int style Base_V7_Widget_AppCompat_Toolbar 0x7f0c006a -int style Base_Widget_AppCompat_ActionBar 0x7f0c006b -int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0c006c -int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0c006d -int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0c006e -int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0c006f -int style Base_Widget_AppCompat_ActionButton 0x7f0c0070 -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0c0071 -int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0c0072 -int style Base_Widget_AppCompat_ActionMode 0x7f0c0073 -int style Base_Widget_AppCompat_ActivityChooserView 0x7f0c0074 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0c0075 -int style Base_Widget_AppCompat_Button 0x7f0c0076 -int style Base_Widget_AppCompat_Button_Borderless 0x7f0c0077 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0c0078 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0c0079 -int style Base_Widget_AppCompat_Button_Colored 0x7f0c007a -int style Base_Widget_AppCompat_Button_Small 0x7f0c007b -int style Base_Widget_AppCompat_ButtonBar 0x7f0c007c -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0c007d -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0c007e -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0c007f -int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0c0080 -int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0c0081 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0c0082 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0c0083 -int style Base_Widget_AppCompat_EditText 0x7f0c0084 -int style Base_Widget_AppCompat_ImageButton 0x7f0c0085 -int style Base_Widget_AppCompat_Light_ActionBar 0x7f0c0086 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0c0087 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c0088 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0089 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c008a -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0c008b -int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0c008c -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c008d -int style Base_Widget_AppCompat_ListMenuView 0x7f0c008e -int style Base_Widget_AppCompat_ListPopupWindow 0x7f0c008f -int style Base_Widget_AppCompat_ListView 0x7f0c0090 -int style Base_Widget_AppCompat_ListView_DropDown 0x7f0c0091 -int style Base_Widget_AppCompat_ListView_Menu 0x7f0c0092 -int style Base_Widget_AppCompat_PopupMenu 0x7f0c0093 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0c0094 -int style Base_Widget_AppCompat_PopupWindow 0x7f0c0095 -int style Base_Widget_AppCompat_ProgressBar 0x7f0c0096 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0c0097 -int style Base_Widget_AppCompat_RatingBar 0x7f0c0098 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0c0099 -int style Base_Widget_AppCompat_RatingBar_Small 0x7f0c009a -int style Base_Widget_AppCompat_SearchView 0x7f0c009b -int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0c009c -int style Base_Widget_AppCompat_SeekBar 0x7f0c009d -int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0c009e -int style Base_Widget_AppCompat_Spinner 0x7f0c009f -int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0c00a0 -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0c00a1 -int style Base_Widget_AppCompat_Toolbar 0x7f0c00a2 -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c00a3 -int style Platform_AppCompat 0x7f0c00a4 -int style Platform_AppCompat_Light 0x7f0c00a5 -int style Platform_ThemeOverlay_AppCompat 0x7f0c00a6 -int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0c00a7 -int style Platform_ThemeOverlay_AppCompat_Light 0x7f0c00a8 -int style Platform_V11_AppCompat 0x7f0c00a9 -int style Platform_V11_AppCompat_Light 0x7f0c00aa -int style Platform_V14_AppCompat 0x7f0c00ab -int style Platform_V14_AppCompat_Light 0x7f0c00ac -int style Platform_V21_AppCompat 0x7f0c00ad -int style Platform_V21_AppCompat_Light 0x7f0c00ae -int style Platform_V25_AppCompat 0x7f0c00af -int style Platform_V25_AppCompat_Light 0x7f0c00b0 -int style Platform_Widget_AppCompat_Spinner 0x7f0c00b1 -int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0c00b2 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0c00b3 -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0c00b4 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0c00b5 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0c00b6 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0c00b7 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0c00b8 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0c00b9 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0c00ba -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0c00bb -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0c00bc -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0c00bd -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0c00be -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0c00bf -int style TextAppearance_AppCompat 0x7f0c00c0 -int style TextAppearance_AppCompat_Body1 0x7f0c00c1 -int style TextAppearance_AppCompat_Body2 0x7f0c00c2 -int style TextAppearance_AppCompat_Button 0x7f0c00c3 -int style TextAppearance_AppCompat_Caption 0x7f0c00c4 -int style TextAppearance_AppCompat_Display1 0x7f0c00c5 -int style TextAppearance_AppCompat_Display2 0x7f0c00c6 -int style TextAppearance_AppCompat_Display3 0x7f0c00c7 -int style TextAppearance_AppCompat_Display4 0x7f0c00c8 -int style TextAppearance_AppCompat_Headline 0x7f0c00c9 -int style TextAppearance_AppCompat_Inverse 0x7f0c00ca -int style TextAppearance_AppCompat_Large 0x7f0c00cb -int style TextAppearance_AppCompat_Large_Inverse 0x7f0c00cc -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0c00cd -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0c00ce -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c00cf -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c00d0 -int style TextAppearance_AppCompat_Medium 0x7f0c00d1 -int style TextAppearance_AppCompat_Medium_Inverse 0x7f0c00d2 -int style TextAppearance_AppCompat_Menu 0x7f0c00d3 -int style TextAppearance_AppCompat_Notification 0x7f0c00d4 -int style TextAppearance_AppCompat_Notification_Info 0x7f0c00d5 -int style TextAppearance_AppCompat_Notification_Info_Media 0x7f0c00d6 -int style TextAppearance_AppCompat_Notification_Line2 0x7f0c00d7 -int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0c00d8 -int style TextAppearance_AppCompat_Notification_Media 0x7f0c00d9 -int style TextAppearance_AppCompat_Notification_Time 0x7f0c00da -int style TextAppearance_AppCompat_Notification_Time_Media 0x7f0c00db -int style TextAppearance_AppCompat_Notification_Title 0x7f0c00dc -int style TextAppearance_AppCompat_Notification_Title_Media 0x7f0c00dd -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c00de -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0c00df -int style TextAppearance_AppCompat_Small 0x7f0c00e0 -int style TextAppearance_AppCompat_Small_Inverse 0x7f0c00e1 -int style TextAppearance_AppCompat_Subhead 0x7f0c00e2 -int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0c00e3 -int style TextAppearance_AppCompat_Title 0x7f0c00e4 -int style TextAppearance_AppCompat_Title_Inverse 0x7f0c00e5 -int style TextAppearance_AppCompat_Tooltip 0x7f0c00e6 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c00e7 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c00e8 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c00e9 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c00ea -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c00eb -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c00ec -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0c00ed -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c00ee -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0c00ef -int style TextAppearance_AppCompat_Widget_Button 0x7f0c00f0 -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0c00f1 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0c00f2 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0c00f3 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c00f4 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0c00f5 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c00f6 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c00f7 -int style TextAppearance_AppCompat_Widget_Switch 0x7f0c00f8 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c00f9 -int style TextAppearance_Compat_Notification 0x7f0c00fa -int style TextAppearance_Compat_Notification_Info 0x7f0c00fb -int style TextAppearance_Compat_Notification_Info_Media 0x7f0c00fc -int style TextAppearance_Compat_Notification_Line2 0x7f0c00fd -int style TextAppearance_Compat_Notification_Line2_Media 0x7f0c00fe -int style TextAppearance_Compat_Notification_Media 0x7f0c00ff -int style TextAppearance_Compat_Notification_Time 0x7f0c0100 -int style TextAppearance_Compat_Notification_Time_Media 0x7f0c0101 -int style TextAppearance_Compat_Notification_Title 0x7f0c0102 -int style TextAppearance_Compat_Notification_Title_Media 0x7f0c0103 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c0104 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c0105 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c0106 -int style Theme_AppCompat 0x7f0c0107 -int style Theme_AppCompat_CompactMenu 0x7f0c0108 -int style Theme_AppCompat_DayNight 0x7f0c0109 -int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0c010a -int style Theme_AppCompat_DayNight_Dialog 0x7f0c010b -int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0c010c -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0c010d -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0c010e -int style Theme_AppCompat_DayNight_NoActionBar 0x7f0c010f -int style Theme_AppCompat_Dialog 0x7f0c0110 -int style Theme_AppCompat_Dialog_Alert 0x7f0c0111 -int style Theme_AppCompat_Dialog_MinWidth 0x7f0c0112 -int style Theme_AppCompat_DialogWhenLarge 0x7f0c0113 -int style Theme_AppCompat_Light 0x7f0c0114 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0c0115 -int style Theme_AppCompat_Light_Dialog 0x7f0c0116 -int style Theme_AppCompat_Light_Dialog_Alert 0x7f0c0117 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0c0118 -int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0c0119 -int style Theme_AppCompat_Light_NoActionBar 0x7f0c011a -int style Theme_AppCompat_NoActionBar 0x7f0c011b -int style ThemeOverlay_AppCompat 0x7f0c011c -int style ThemeOverlay_AppCompat_ActionBar 0x7f0c011d -int style ThemeOverlay_AppCompat_Dark 0x7f0c011e -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c011f -int style ThemeOverlay_AppCompat_Dialog 0x7f0c0120 -int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0c0121 -int style ThemeOverlay_AppCompat_Light 0x7f0c0122 -int style Widget_AppCompat_ActionBar 0x7f0c0123 -int style Widget_AppCompat_ActionBar_Solid 0x7f0c0124 -int style Widget_AppCompat_ActionBar_TabBar 0x7f0c0125 -int style Widget_AppCompat_ActionBar_TabText 0x7f0c0126 -int style Widget_AppCompat_ActionBar_TabView 0x7f0c0127 -int style Widget_AppCompat_ActionButton 0x7f0c0128 -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0c0129 -int style Widget_AppCompat_ActionButton_Overflow 0x7f0c012a -int style Widget_AppCompat_ActionMode 0x7f0c012b -int style Widget_AppCompat_ActivityChooserView 0x7f0c012c -int style Widget_AppCompat_AutoCompleteTextView 0x7f0c012d -int style Widget_AppCompat_Button 0x7f0c012e -int style Widget_AppCompat_Button_Borderless 0x7f0c012f -int style Widget_AppCompat_Button_Borderless_Colored 0x7f0c0130 -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0c0131 -int style Widget_AppCompat_Button_Colored 0x7f0c0132 -int style Widget_AppCompat_Button_Small 0x7f0c0133 -int style Widget_AppCompat_ButtonBar 0x7f0c0134 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0c0135 -int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0c0136 -int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0c0137 -int style Widget_AppCompat_CompoundButton_Switch 0x7f0c0138 -int style Widget_AppCompat_DrawerArrowToggle 0x7f0c0139 -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0c013a -int style Widget_AppCompat_EditText 0x7f0c013b -int style Widget_AppCompat_ImageButton 0x7f0c013c -int style Widget_AppCompat_Light_ActionBar 0x7f0c013d -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0c013e -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0c013f -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c0140 -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0c0141 -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0142 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c0143 -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0c0144 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0c0145 -int style Widget_AppCompat_Light_ActionButton 0x7f0c0146 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0c0147 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0c0148 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0c0149 -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0c014a -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0c014b -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0c014c -int style Widget_AppCompat_Light_ListPopupWindow 0x7f0c014d -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0c014e -int style Widget_AppCompat_Light_PopupMenu 0x7f0c014f -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c0150 -int style Widget_AppCompat_Light_SearchView 0x7f0c0151 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0c0152 -int style Widget_AppCompat_ListMenuView 0x7f0c0153 -int style Widget_AppCompat_ListPopupWindow 0x7f0c0154 -int style Widget_AppCompat_ListView 0x7f0c0155 -int style Widget_AppCompat_ListView_DropDown 0x7f0c0156 -int style Widget_AppCompat_ListView_Menu 0x7f0c0157 -int style Widget_AppCompat_PopupMenu 0x7f0c0158 -int style Widget_AppCompat_PopupMenu_Overflow 0x7f0c0159 -int style Widget_AppCompat_PopupWindow 0x7f0c015a -int style Widget_AppCompat_ProgressBar 0x7f0c015b -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0c015c -int style Widget_AppCompat_RatingBar 0x7f0c015d -int style Widget_AppCompat_RatingBar_Indicator 0x7f0c015e -int style Widget_AppCompat_RatingBar_Small 0x7f0c015f -int style Widget_AppCompat_SearchView 0x7f0c0160 -int style Widget_AppCompat_SearchView_ActionBar 0x7f0c0161 -int style Widget_AppCompat_SeekBar 0x7f0c0162 -int style Widget_AppCompat_SeekBar_Discrete 0x7f0c0163 -int style Widget_AppCompat_Spinner 0x7f0c0164 -int style Widget_AppCompat_Spinner_DropDown 0x7f0c0165 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c0166 -int style Widget_AppCompat_Spinner_Underlined 0x7f0c0167 -int style Widget_AppCompat_TextView_SpinnerItem 0x7f0c0168 -int style Widget_AppCompat_Toolbar 0x7f0c0169 -int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c016a -int style Widget_Compat_NotificationActionContainer 0x7f0c016b -int style Widget_Compat_NotificationActionText 0x7f0c016c -int[] styleable ActionBar { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 } -int styleable ActionBar_background 0 -int styleable ActionBar_backgroundSplit 1 -int styleable ActionBar_backgroundStacked 2 -int styleable ActionBar_contentInsetEnd 3 -int styleable ActionBar_contentInsetEndWithActions 4 -int styleable ActionBar_contentInsetLeft 5 -int styleable ActionBar_contentInsetRight 6 -int styleable ActionBar_contentInsetStart 7 -int styleable ActionBar_contentInsetStartWithNavigation 8 -int styleable ActionBar_customNavigationLayout 9 -int styleable ActionBar_displayOptions 10 -int styleable ActionBar_divider 11 -int styleable ActionBar_elevation 12 -int styleable ActionBar_height 13 -int styleable ActionBar_hideOnContentScroll 14 -int styleable ActionBar_homeAsUpIndicator 15 -int styleable ActionBar_homeLayout 16 -int styleable ActionBar_icon 17 -int styleable ActionBar_indeterminateProgressStyle 18 -int styleable ActionBar_itemPadding 19 -int styleable ActionBar_logo 20 -int styleable ActionBar_navigationMode 21 -int styleable ActionBar_popupTheme 22 -int styleable ActionBar_progressBarPadding 23 -int styleable ActionBar_progressBarStyle 24 -int styleable ActionBar_subtitle 25 -int styleable ActionBar_subtitleTextStyle 26 -int styleable ActionBar_title 27 -int styleable ActionBar_titleTextStyle 28 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 } -int styleable ActionMode_background 0 -int styleable ActionMode_backgroundSplit 1 -int styleable ActionMode_closeItemLayout 2 -int styleable ActionMode_height 3 -int styleable ActionMode_subtitleTextStyle 4 -int styleable ActionMode_titleTextStyle 5 -int[] styleable ActivityChooserView { 0x7f020075, 0x7f02008c } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable AlertDialog { 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonPanelSideLayout 1 -int styleable AlertDialog_listItemLayout 2 -int styleable AlertDialog_listLayout 3 -int styleable AlertDialog_multiChoiceItemLayout 4 -int styleable AlertDialog_showTitle 5 -int styleable AlertDialog_singleChoiceItemLayout 6 -int[] styleable AppCompatImageView { 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } -int styleable AppCompatTextHelper_android_textAppearance 0 -int styleable AppCompatTextHelper_android_drawableTop 1 -int styleable AppCompatTextHelper_android_drawableBottom 2 -int styleable AppCompatTextHelper_android_drawableLeft 3 -int styleable AppCompatTextHelper_android_drawableRight 4 -int styleable AppCompatTextHelper_android_drawableStart 5 -int styleable AppCompatTextHelper_android_drawableEnd 6 -int[] styleable AppCompatTextView { 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_autoSizeMaxTextSize 1 -int styleable AppCompatTextView_autoSizeMinTextSize 2 -int styleable AppCompatTextView_autoSizePresetSizes 3 -int styleable AppCompatTextView_autoSizeStepGranularity 4 -int styleable AppCompatTextView_autoSizeTextType 5 -int styleable AppCompatTextView_fontFamily 6 -int styleable AppCompatTextView_textAllCaps 7 -int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 } -int styleable AppCompatTheme_android_windowIsFloating 0 -int styleable AppCompatTheme_android_windowAnimationStyle 1 -int styleable AppCompatTheme_actionBarDivider 2 -int styleable AppCompatTheme_actionBarItemBackground 3 -int styleable AppCompatTheme_actionBarPopupTheme 4 -int styleable AppCompatTheme_actionBarSize 5 -int styleable AppCompatTheme_actionBarSplitStyle 6 -int styleable AppCompatTheme_actionBarStyle 7 -int styleable AppCompatTheme_actionBarTabBarStyle 8 -int styleable AppCompatTheme_actionBarTabStyle 9 -int styleable AppCompatTheme_actionBarTabTextStyle 10 -int styleable AppCompatTheme_actionBarTheme 11 -int styleable AppCompatTheme_actionBarWidgetTheme 12 -int styleable AppCompatTheme_actionButtonStyle 13 -int styleable AppCompatTheme_actionDropDownStyle 14 -int styleable AppCompatTheme_actionMenuTextAppearance 15 -int styleable AppCompatTheme_actionMenuTextColor 16 -int styleable AppCompatTheme_actionModeBackground 17 -int styleable AppCompatTheme_actionModeCloseButtonStyle 18 -int styleable AppCompatTheme_actionModeCloseDrawable 19 -int styleable AppCompatTheme_actionModeCopyDrawable 20 -int styleable AppCompatTheme_actionModeCutDrawable 21 -int styleable AppCompatTheme_actionModeFindDrawable 22 -int styleable AppCompatTheme_actionModePasteDrawable 23 -int styleable AppCompatTheme_actionModePopupWindowStyle 24 -int styleable AppCompatTheme_actionModeSelectAllDrawable 25 -int styleable AppCompatTheme_actionModeShareDrawable 26 -int styleable AppCompatTheme_actionModeSplitBackground 27 -int styleable AppCompatTheme_actionModeStyle 28 -int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -int styleable AppCompatTheme_actionOverflowButtonStyle 30 -int styleable AppCompatTheme_actionOverflowMenuStyle 31 -int styleable AppCompatTheme_activityChooserViewStyle 32 -int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -int styleable AppCompatTheme_alertDialogCenterButtons 34 -int styleable AppCompatTheme_alertDialogStyle 35 -int styleable AppCompatTheme_alertDialogTheme 36 -int styleable AppCompatTheme_autoCompleteTextViewStyle 37 -int styleable AppCompatTheme_borderlessButtonStyle 38 -int styleable AppCompatTheme_buttonBarButtonStyle 39 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 -int styleable AppCompatTheme_buttonBarStyle 43 -int styleable AppCompatTheme_buttonStyle 44 -int styleable AppCompatTheme_buttonStyleSmall 45 -int styleable AppCompatTheme_checkboxStyle 46 -int styleable AppCompatTheme_checkedTextViewStyle 47 -int styleable AppCompatTheme_colorAccent 48 -int styleable AppCompatTheme_colorBackgroundFloating 49 -int styleable AppCompatTheme_colorButtonNormal 50 -int styleable AppCompatTheme_colorControlActivated 51 -int styleable AppCompatTheme_colorControlHighlight 52 -int styleable AppCompatTheme_colorControlNormal 53 -int styleable AppCompatTheme_colorError 54 -int styleable AppCompatTheme_colorPrimary 55 -int styleable AppCompatTheme_colorPrimaryDark 56 -int styleable AppCompatTheme_colorSwitchThumbNormal 57 -int styleable AppCompatTheme_controlBackground 58 -int styleable AppCompatTheme_dialogPreferredPadding 59 -int styleable AppCompatTheme_dialogTheme 60 -int styleable AppCompatTheme_dividerHorizontal 61 -int styleable AppCompatTheme_dividerVertical 62 -int styleable AppCompatTheme_dropDownListViewStyle 63 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 64 -int styleable AppCompatTheme_editTextBackground 65 -int styleable AppCompatTheme_editTextColor 66 -int styleable AppCompatTheme_editTextStyle 67 -int styleable AppCompatTheme_homeAsUpIndicator 68 -int styleable AppCompatTheme_imageButtonStyle 69 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 70 -int styleable AppCompatTheme_listDividerAlertDialog 71 -int styleable AppCompatTheme_listMenuViewStyle 72 -int styleable AppCompatTheme_listPopupWindowStyle 73 -int styleable AppCompatTheme_listPreferredItemHeight 74 -int styleable AppCompatTheme_listPreferredItemHeightLarge 75 -int styleable AppCompatTheme_listPreferredItemHeightSmall 76 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 77 -int styleable AppCompatTheme_listPreferredItemPaddingRight 78 -int styleable AppCompatTheme_panelBackground 79 -int styleable AppCompatTheme_panelMenuListTheme 80 -int styleable AppCompatTheme_panelMenuListWidth 81 -int styleable AppCompatTheme_popupMenuStyle 82 -int styleable AppCompatTheme_popupWindowStyle 83 -int styleable AppCompatTheme_radioButtonStyle 84 -int styleable AppCompatTheme_ratingBarStyle 85 -int styleable AppCompatTheme_ratingBarStyleIndicator 86 -int styleable AppCompatTheme_ratingBarStyleSmall 87 -int styleable AppCompatTheme_searchViewStyle 88 -int styleable AppCompatTheme_seekBarStyle 89 -int styleable AppCompatTheme_selectableItemBackground 90 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 91 -int styleable AppCompatTheme_spinnerDropDownItemStyle 92 -int styleable AppCompatTheme_spinnerStyle 93 -int styleable AppCompatTheme_switchStyle 94 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 95 -int styleable AppCompatTheme_textAppearanceListItem 96 -int styleable AppCompatTheme_textAppearanceListItemSecondary 97 -int styleable AppCompatTheme_textAppearanceListItemSmall 98 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 99 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 101 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102 -int styleable AppCompatTheme_textColorAlertDialogListItem 103 -int styleable AppCompatTheme_textColorSearchUrl 104 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 105 -int styleable AppCompatTheme_toolbarStyle 106 -int styleable AppCompatTheme_tooltipForegroundColor 107 -int styleable AppCompatTheme_tooltipFrameBackground 108 -int styleable AppCompatTheme_windowActionBar 109 -int styleable AppCompatTheme_windowActionBarOverlay 110 -int styleable AppCompatTheme_windowActionModeOverlay 111 -int styleable AppCompatTheme_windowFixedHeightMajor 112 -int styleable AppCompatTheme_windowFixedHeightMinor 113 -int styleable AppCompatTheme_windowFixedWidthMajor 114 -int styleable AppCompatTheme_windowFixedWidthMinor 115 -int styleable AppCompatTheme_windowMinWidthMajor 116 -int styleable AppCompatTheme_windowMinWidthMinor 117 -int styleable AppCompatTheme_windowNoTitle 118 -int[] styleable ButtonBarLayout { 0x7f020026 } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f020027 } -int styleable ColorStateListItem_android_color 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_alpha 2 -int[] styleable CompoundButton { 0x01010107, 0x7f020043, 0x7f020044 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonTint 1 -int styleable CompoundButton_buttonTintMode 2 -int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 } -int styleable ConstraintLayout_Layout_android_orientation 0 -int styleable ConstraintLayout_Layout_android_maxWidth 1 -int styleable ConstraintLayout_Layout_android_maxHeight 2 -int styleable ConstraintLayout_Layout_android_minWidth 3 -int styleable ConstraintLayout_Layout_android_minHeight 4 -int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 -int styleable ConstraintLayout_Layout_barrierDirection 6 -int styleable ConstraintLayout_Layout_chainUseRtl 7 -int styleable ConstraintLayout_Layout_constraintSet 8 -int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 -int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 -int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 -int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 -int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 -int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 -int styleable ConstraintLayout_Layout_layout_constraintCircle 17 -int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 -int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 -int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 -int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 -int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 -int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 -int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 -int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 -int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 -int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 -int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 -int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 -int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 -int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 -int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 -int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 -int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 -int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 -int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 -int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 -int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 -int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 -int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 -int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 -int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 -int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 -int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 -int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 -int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 -int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 -int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 -int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 -int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 -int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 -int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 -int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 -int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 -int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 -int[] styleable ConstraintLayout_placeholder { 0x7f02005a, 0x7f020074 } -int styleable ConstraintLayout_placeholder_content 0 -int styleable ConstraintLayout_placeholder_emptyVisibility 1 -int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 } -int styleable ConstraintSet_android_orientation 0 -int styleable ConstraintSet_android_id 1 -int styleable ConstraintSet_android_visibility 2 -int styleable ConstraintSet_android_layout_width 3 -int styleable ConstraintSet_android_layout_height 4 -int styleable ConstraintSet_android_layout_marginLeft 5 -int styleable ConstraintSet_android_layout_marginTop 6 -int styleable ConstraintSet_android_layout_marginRight 7 -int styleable ConstraintSet_android_layout_marginBottom 8 -int styleable ConstraintSet_android_alpha 9 -int styleable ConstraintSet_android_transformPivotX 10 -int styleable ConstraintSet_android_transformPivotY 11 -int styleable ConstraintSet_android_translationX 12 -int styleable ConstraintSet_android_translationY 13 -int styleable ConstraintSet_android_scaleX 14 -int styleable ConstraintSet_android_scaleY 15 -int styleable ConstraintSet_android_rotation 16 -int styleable ConstraintSet_android_rotationX 17 -int styleable ConstraintSet_android_rotationY 18 -int styleable ConstraintSet_android_layout_marginStart 19 -int styleable ConstraintSet_android_layout_marginEnd 20 -int styleable ConstraintSet_android_translationZ 21 -int styleable ConstraintSet_android_elevation 22 -int styleable ConstraintSet_layout_constrainedHeight 23 -int styleable ConstraintSet_layout_constrainedWidth 24 -int styleable ConstraintSet_layout_constraintBaseline_creator 25 -int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 26 -int styleable ConstraintSet_layout_constraintBottom_creator 27 -int styleable ConstraintSet_layout_constraintBottom_toBottomOf 28 -int styleable ConstraintSet_layout_constraintBottom_toTopOf 29 -int styleable ConstraintSet_layout_constraintCircle 30 -int styleable ConstraintSet_layout_constraintCircleAngle 31 -int styleable ConstraintSet_layout_constraintCircleRadius 32 -int styleable ConstraintSet_layout_constraintDimensionRatio 33 -int styleable ConstraintSet_layout_constraintEnd_toEndOf 34 -int styleable ConstraintSet_layout_constraintEnd_toStartOf 35 -int styleable ConstraintSet_layout_constraintGuide_begin 36 -int styleable ConstraintSet_layout_constraintGuide_end 37 -int styleable ConstraintSet_layout_constraintGuide_percent 38 -int styleable ConstraintSet_layout_constraintHeight_default 39 -int styleable ConstraintSet_layout_constraintHeight_max 40 -int styleable ConstraintSet_layout_constraintHeight_min 41 -int styleable ConstraintSet_layout_constraintHeight_percent 42 -int styleable ConstraintSet_layout_constraintHorizontal_bias 43 -int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 44 -int styleable ConstraintSet_layout_constraintHorizontal_weight 45 -int styleable ConstraintSet_layout_constraintLeft_creator 46 -int styleable ConstraintSet_layout_constraintLeft_toLeftOf 47 -int styleable ConstraintSet_layout_constraintLeft_toRightOf 48 -int styleable ConstraintSet_layout_constraintRight_creator 49 -int styleable ConstraintSet_layout_constraintRight_toLeftOf 50 -int styleable ConstraintSet_layout_constraintRight_toRightOf 51 -int styleable ConstraintSet_layout_constraintStart_toEndOf 52 -int styleable ConstraintSet_layout_constraintStart_toStartOf 53 -int styleable ConstraintSet_layout_constraintTop_creator 54 -int styleable ConstraintSet_layout_constraintTop_toBottomOf 55 -int styleable ConstraintSet_layout_constraintTop_toTopOf 56 -int styleable ConstraintSet_layout_constraintVertical_bias 57 -int styleable ConstraintSet_layout_constraintVertical_chainStyle 58 -int styleable ConstraintSet_layout_constraintVertical_weight 59 -int styleable ConstraintSet_layout_constraintWidth_default 60 -int styleable ConstraintSet_layout_constraintWidth_max 61 -int styleable ConstraintSet_layout_constraintWidth_min 62 -int styleable ConstraintSet_layout_constraintWidth_percent 63 -int styleable ConstraintSet_layout_editor_absoluteX 64 -int styleable ConstraintSet_layout_editor_absoluteY 65 -int styleable ConstraintSet_layout_goneMarginBottom 66 -int styleable ConstraintSet_layout_goneMarginEnd 67 -int styleable ConstraintSet_layout_goneMarginLeft 68 -int styleable ConstraintSet_layout_goneMarginRight 69 -int styleable ConstraintSet_layout_goneMarginStart 70 -int styleable ConstraintSet_layout_goneMarginTop 71 -int[] styleable DrawerArrowToggle { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 } -int styleable DrawerArrowToggle_arrowHeadLength 0 -int styleable DrawerArrowToggle_arrowShaftLength 1 -int styleable DrawerArrowToggle_barLength 2 -int styleable DrawerArrowToggle_color 3 -int styleable DrawerArrowToggle_drawableSize 4 -int styleable DrawerArrowToggle_gapBetweenBars 5 -int styleable DrawerArrowToggle_spinBars 6 -int styleable DrawerArrowToggle_thickness 7 -int[] styleable FontFamily { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int[] styleable FontFamilyFont { 0x7f020076, 0x7f02007e, 0x7f02007f } -int styleable FontFamilyFont_font 0 -int styleable FontFamilyFont_fontStyle 1 -int styleable FontFamilyFont_fontWeight 2 -int[] styleable LinearConstraintLayout { 0x010100c4 } -int styleable LinearConstraintLayout_android_orientation 0 -int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 } -int styleable LinearLayoutCompat_android_gravity 0 -int styleable LinearLayoutCompat_android_orientation 1 -int styleable LinearLayoutCompat_android_baselineAligned 2 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 6 -int styleable LinearLayoutCompat_measureWithLargestChild 7 -int styleable LinearLayoutCompat_showDividers 8 -int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_width 1 -int styleable LinearLayoutCompat_Layout_android_layout_height 2 -int styleable LinearLayoutCompat_Layout_android_layout_weight 3 -int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_visible 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_checkableBehavior 5 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 } -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_actionLayout 13 -int styleable MenuItem_actionProviderClass 14 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_alphabeticModifiers 16 -int styleable MenuItem_contentDescription 17 -int styleable MenuItem_iconTint 18 -int styleable MenuItem_iconTintMode 19 -int styleable MenuItem_numericModifiers 20 -int styleable MenuItem_showAsAction 21 -int styleable MenuItem_tooltipText 22 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, 0x7f0200fb } -int styleable MenuView_android_windowAnimationStyle 0 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200d6 } -int styleable PopupWindow_android_popupBackground 0 -int styleable PopupWindow_android_popupAnimationStyle 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x7f0200fa } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x7f0200d7, 0x7f0200da } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_maxWidth 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_imeOptions 3 -int styleable SearchView_closeIcon 4 -int styleable SearchView_commitIcon 5 -int styleable SearchView_defaultQueryHint 6 -int styleable SearchView_goIcon 7 -int styleable SearchView_iconifiedByDefault 8 -int styleable SearchView_layout 9 -int styleable SearchView_queryBackground 10 -int styleable SearchView_queryHint 11 -int styleable SearchView_searchHintIcon 12 -int styleable SearchView_searchIcon 13 -int styleable SearchView_submitBackground 14 -int styleable SearchView_suggestionRowLayout 15 -int styleable SearchView_voiceIcon 16 -int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200df } -int styleable Spinner_android_entries 0 -int styleable Spinner_android_popupBackground 1 -int styleable Spinner_android_prompt 2 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_popupTheme 4 -int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c } -int styleable SwitchCompat_android_textOn 0 -int styleable SwitchCompat_android_textOff 1 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 3 -int styleable SwitchCompat_splitTrack 4 -int styleable SwitchCompat_switchMinWidth 5 -int styleable SwitchCompat_switchPadding 6 -int styleable SwitchCompat_switchTextAppearance 7 -int styleable SwitchCompat_thumbTextPadding 8 -int styleable SwitchCompat_thumbTint 9 -int styleable SwitchCompat_thumbTintMode 10 -int styleable SwitchCompat_track 11 -int styleable SwitchCompat_trackTint 12 -int styleable SwitchCompat_trackTintMode 13 -int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, 0x7f020106 } -int styleable TextAppearance_android_textSize 0 -int styleable TextAppearance_android_typeface 1 -int styleable TextAppearance_android_textStyle 2 -int styleable TextAppearance_android_textColor 3 -int styleable TextAppearance_android_textColorHint 4 -int styleable TextAppearance_android_textColorLink 5 -int styleable TextAppearance_android_shadowColor 6 -int styleable TextAppearance_android_shadowDx 7 -int styleable TextAppearance_android_shadowDy 8 -int styleable TextAppearance_android_shadowRadius 9 -int styleable TextAppearance_android_fontFamily 10 -int styleable TextAppearance_fontFamily 11 -int styleable TextAppearance_textAllCaps 12 -int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_buttonGravity 2 -int styleable Toolbar_collapseContentDescription 3 -int styleable Toolbar_collapseIcon 4 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetEndWithActions 6 -int styleable Toolbar_contentInsetLeft 7 -int styleable Toolbar_contentInsetRight 8 -int styleable Toolbar_contentInsetStart 9 -int styleable Toolbar_contentInsetStartWithNavigation 10 -int styleable Toolbar_logo 11 -int styleable Toolbar_logoDescription 12 -int styleable Toolbar_maxButtonHeight 13 -int styleable Toolbar_navigationContentDescription 14 -int styleable Toolbar_navigationIcon 15 -int styleable Toolbar_popupTheme 16 -int styleable Toolbar_subtitle 17 -int styleable Toolbar_subtitleTextAppearance 18 -int styleable Toolbar_subtitleTextColor 19 -int styleable Toolbar_title 20 -int styleable Toolbar_titleMargin 21 -int styleable Toolbar_titleMarginBottom 22 -int styleable Toolbar_titleMarginEnd 23 -int styleable Toolbar_titleMarginStart 24 -int styleable Toolbar_titleMarginTop 25 -int styleable Toolbar_titleMargins 26 -int styleable Toolbar_titleTextAppearance 27 -int styleable Toolbar_titleTextColor 28 -int[] styleable View { 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, 0x7f020111 } -int styleable View_android_theme 0 -int styleable View_android_focusable 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020034, 0x7f020035 } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_layout 1 -int styleable ViewStubCompat_android_inflatedId 2 diff --git a/MVPModel/retrofitdemo/build/outputs/logs/manifest-merger-debug-report.txt b/MVPModel/retrofitdemo/build/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index 8036cec..0000000 --- a/MVPModel/retrofitdemo/build/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,170 +0,0 @@ --- Merging decision tree log --- -manifest -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 -MERGED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:17:1-31:12 -MERGED from [com.android.support.constraint:constraint-layout:1.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/AndroidManifest.xml:2:1-11:12 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:17:1-28:12 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:17:1-28:12 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:17:1-31:12 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:17:1-31:12 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:17:1-31:12 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:17:1-31:12 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:17:1-31:12 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:17:1-31:12 -MERGED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:17:1-30:12 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 - package - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:3:5-38 - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - android:versionName - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - android:versionCode - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:1-34:12 - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - xmlns:android - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:2:11-69 -uses-permission#android.permission.READ_EXTERNAL_STORAGE -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:5:5-80 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:5:22-77 -uses-permission#android.permission.WRITE_EXTERNAL_STORAGE -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:6:5-81 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:6:22-78 -uses-permission#android.permission.ACCESS_NETWORK_STATE -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:7:5-79 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:7:22-76 -uses-permission#android.permission.ACCESS_WIFI_STATE -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:8:5-76 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:8:22-73 -uses-permission#android.permission.INTERNET -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:9:5-67 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:9:22-64 -application -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:11:5-32:19 -MERGED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support.constraint:constraint-layout:1.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/AndroidManifest.xml:9:5-20 -MERGED from [com.android.support.constraint:constraint-layout:1.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/AndroidManifest.xml:9:5-20 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:22:5-26:19 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:22:5-26:19 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:22:5-26:19 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:22:5-26:19 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:25:5-29:19 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:25:5-29:19 -MERGED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:24:5-28:19 -MERGED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:24:5-28:19 - android:supportsRtl - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:16:9-35 - android:label - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:14:9-41 - android:roundIcon - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:15:9-54 - android:icon - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:13:9-43 - android:allowBackup - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:12:9-35 - android:theme - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:17:9-40 -activity#com.gaolei.retrofitdemo.github.GithubActivity -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:25:9-31:20 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:25:19-56 -intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:26:13-30:29 -action#android.intent.action.MAIN -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:27:17-69 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:27:25-66 -category#android.intent.category.LAUNCHER -ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:29:17-77 - android:name - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml:29:27-74 -uses-sdk -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml reason: use-sdk injection requested -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml -MERGED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:21:5-23:78 -MERGED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:21:5-23:78 -MERGED from [com.android.support.constraint:constraint-layout:1.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/AndroidManifest.xml:5:5-7:41 -MERGED from [com.android.support.constraint:constraint-layout:1.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/constraint-layout-1.1.0.aar/1b3881383e2bcf26c05c908b8f9f5aa7/AndroidManifest.xml:5:5-7:41 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:20:5-44 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:20:5-44 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:20:5-44 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:20:5-44 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:21:5-23:54 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:21:5-23:54 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:21:5-23:63 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:21:5-23:63 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:21:5-23:60 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:21:5-23:60 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:21:5-23:61 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:21:5-23:61 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:21:5-23:58 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:21:5-23:58 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:21:5-23:58 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:21:5-23:58 -MERGED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:20:5-22:41 -MERGED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:20:5-22:41 -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml -INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - tools:overrideLibrary - ADDED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:23:9-75 - android:targetSdkVersion - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - android:minSdkVersion - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - ADDED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml - INJECTED from /Users/gaolei/gaolei/Work/Android/Github/MVPModel/MVPModel/retrofitdemo/src/main/AndroidManifest.xml -meta-data#android.support.VERSION -ADDED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:23:9-25:38 -MERGED from [com.android.support:animated-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/animated-vector-drawable-26.1.0.aar/a8492e76a0db358dd24921efe35b4ea8/AndroidManifest.xml:23:9-25:38 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:23:9-25:38 -MERGED from [com.android.support:support-vector-drawable:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-vector-drawable-26.1.0.aar/c0577eb2af61b837710f5e39078b0bb9/AndroidManifest.xml:23:9-25:38 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-v4:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-v4-26.1.0.aar/ab7647bdbbb40d8c6a953432ee1ffa66/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-media-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-media-compat-26.1.0.aar/6e1a1f7fd86c78ce2974ae0deb8b8f41/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-fragment:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-fragment-26.1.0.aar/6a24af75cc99379b1a8cee0b36a796e0/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-core-utils:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-utils-26.1.0.aar/0a710d3da13bffe119722921c38585bb/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-core-ui:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-core-ui-26.1.0.aar/ff025cf3dbc31c889bfcf25226303a9c/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:26:9-28:38 -MERGED from [com.android.support:support-compat:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/support-compat-26.1.0.aar/41a85124d005f2fd33c922b8f92a4bd4/AndroidManifest.xml:26:9-28:38 - android:value - ADDED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:28:13-35 - android:name - ADDED from [com.android.support:appcompat-v7:26.1.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/3f4dc88781d6f6deda9099233ab7393e/AndroidManifest.xml:27:13-51 -meta-data#android.arch.lifecycle.VERSION -ADDED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:25:9-27:47 - android:value - ADDED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:27:13-44 - android:name - ADDED from [android.arch.lifecycle:runtime:1.0.0] /Users/gaolei/.gradle/caches/transforms-1/files-1.1/runtime-1.0.0.aar/2ea49fa8545e450f827a6dda7ee03040/AndroidManifest.xml:26:13-58