diff --git a/2p-android/.gitignore b/2p-android/.gitignore
new file mode 100644
index 0000000..796b96d
--- /dev/null
+++ b/2p-android/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/2p-android/trunk/.settings/org.eclipse.jdt.core.prefs b/2p-android/.settings/org.eclipse.jdt.core.prefs
similarity index 100%
rename from 2p-android/trunk/.settings/org.eclipse.jdt.core.prefs
rename to 2p-android/.settings/org.eclipse.jdt.core.prefs
diff --git a/2p-android/trunk/ant/build.xml b/2p-android/ant/build.xml
similarity index 100%
rename from 2p-android/trunk/ant/build.xml
rename to 2p-android/ant/build.xml
diff --git a/2p-android/trunk/ant/environment.properties b/2p-android/ant/environment.properties
similarity index 100%
rename from 2p-android/trunk/ant/environment.properties
rename to 2p-android/ant/environment.properties
diff --git a/2p-android/trunk/ant/lib/svnClientAdapter.jar b/2p-android/ant/lib/svnClientAdapter.jar
similarity index 100%
rename from 2p-android/trunk/ant/lib/svnClientAdapter.jar
rename to 2p-android/ant/lib/svnClientAdapter.jar
diff --git a/2p-android/trunk/ant/lib/svnant.jar b/2p-android/ant/lib/svnant.jar
similarity index 100%
rename from 2p-android/trunk/ant/lib/svnant.jar
rename to 2p-android/ant/lib/svnant.jar
diff --git a/2p-android/trunk/ant/lib/svnjavahl.jar b/2p-android/ant/lib/svnjavahl.jar
similarity index 100%
rename from 2p-android/trunk/ant/lib/svnjavahl.jar
rename to 2p-android/ant/lib/svnjavahl.jar
diff --git a/2p-android/trunk/ant/lib/svnkit.jar b/2p-android/ant/lib/svnkit.jar
similarity index 100%
rename from 2p-android/trunk/ant/lib/svnkit.jar
rename to 2p-android/ant/lib/svnkit.jar
diff --git a/2p-android/app.iml b/2p-android/app.iml
new file mode 100644
index 0000000..a48e5fd
--- /dev/null
+++ b/2p-android/app.iml
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ generateDebugSources
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/2p-android/build.gradle b/2p-android/build.gradle
new file mode 100644
index 0000000..7ef40c3
--- /dev/null
+++ b/2p-android/build.gradle
@@ -0,0 +1,28 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 26
+ buildToolsVersion '26.0.2'
+
+ defaultConfig {
+ applicationId "alice.tuprologx.android.tuprologmobile"
+ minSdkVersion 15
+ targetSdkVersion 26
+ versionCode 1
+ versionName "2.0"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+// compile fileTree(include: '*.jar', dir: 'libs')
+ testCompile 'junit:junit:4.12'
+ compile 'com.android.support:appcompat-v7:26.0.2'
+ compile 'com.android.support:design:26.0.2'
+}
diff --git a/2p-android/trunk/libs/ReadMe b/2p-android/libs/ReadMe
similarity index 100%
rename from 2p-android/trunk/libs/ReadMe
rename to 2p-android/libs/ReadMe
diff --git a/2p-android/trunk/libs/tuprolog.jar b/2p-android/libs/tuprolog.jar
similarity index 100%
rename from 2p-android/trunk/libs/tuprolog.jar
rename to 2p-android/libs/tuprolog.jar
diff --git a/2p-android/trunk/proguard-rules.pro b/2p-android/proguard-rules.pro
similarity index 100%
rename from 2p-android/trunk/proguard-rules.pro
rename to 2p-android/proguard-rules.pro
diff --git a/2p-android/release/app-release.apk b/2p-android/release/app-release.apk
new file mode 100644
index 0000000..17b16d9
Binary files /dev/null and b/2p-android/release/app-release.apk differ
diff --git a/2p-android/release/output.json b/2p-android/release/output.json
new file mode 100644
index 0000000..d861431
--- /dev/null
+++ b/2p-android/release/output.json
@@ -0,0 +1 @@
+[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"app-release.apk","properties":{"packageId":"alice.tuprologx.android.tuprologmobile","split":"","minSdkVersion":"15"}}]
\ No newline at end of file
diff --git a/2p-android/trunk/src/androidTest/java/alice/tuprologx/android/tuprologmobile/ApplicationTest.java b/2p-android/src/androidTest/java/alice/tuprologx/android/tuprologmobile/ApplicationTest.java
similarity index 100%
rename from 2p-android/trunk/src/androidTest/java/alice/tuprologx/android/tuprologmobile/ApplicationTest.java
rename to 2p-android/src/androidTest/java/alice/tuprologx/android/tuprologmobile/ApplicationTest.java
diff --git a/2p-android/trunk/src/main/AndroidManifest.xml b/2p-android/src/main/AndroidManifest.xml
similarity index 100%
rename from 2p-android/trunk/src/main/AndroidManifest.xml
rename to 2p-android/src/main/AndroidManifest.xml
diff --git a/2p-android/trunk/build/intermediates/assets/debug/calibri.ttf b/2p-android/src/main/assets/calibri.ttf
similarity index 100%
rename from 2p-android/trunk/build/intermediates/assets/debug/calibri.ttf
rename to 2p-android/src/main/assets/calibri.ttf
diff --git a/2p-android/trunk/build/intermediates/assets/debug/calibrib.ttf b/2p-android/src/main/assets/calibrib.ttf
similarity index 100%
rename from 2p-android/trunk/build/intermediates/assets/debug/calibrib.ttf
rename to 2p-android/src/main/assets/calibrib.ttf
diff --git a/2p-android/trunk/build/intermediates/assets/debug/calibrii.ttf b/2p-android/src/main/assets/calibrii.ttf
similarity index 100%
rename from 2p-android/trunk/build/intermediates/assets/debug/calibrii.ttf
rename to 2p-android/src/main/assets/calibrii.ttf
diff --git a/2p-android/trunk/build/intermediates/assets/debug/calibril.ttf b/2p-android/src/main/assets/calibril.ttf
similarity index 100%
rename from 2p-android/trunk/build/intermediates/assets/debug/calibril.ttf
rename to 2p-android/src/main/assets/calibril.ttf
diff --git a/2p-android/trunk/build/intermediates/assets/debug/calibrili.ttf b/2p-android/src/main/assets/calibrili.ttf
similarity index 100%
rename from 2p-android/trunk/build/intermediates/assets/debug/calibrili.ttf
rename to 2p-android/src/main/assets/calibrili.ttf
diff --git a/2p-android/trunk/build/intermediates/assets/debug/calibriz.ttf b/2p-android/src/main/assets/calibriz.ttf
similarity index 100%
rename from 2p-android/trunk/build/intermediates/assets/debug/calibriz.ttf
rename to 2p-android/src/main/assets/calibriz.ttf
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/BaseActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/BaseActivity.java
similarity index 92%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/BaseActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/BaseActivity.java
index 88281ba..f00c23b 100644
--- a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/BaseActivity.java
+++ b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/BaseActivity.java
@@ -19,6 +19,8 @@
import android.widget.ArrayAdapter;
import android.widget.FrameLayout;
import android.widget.ListView;
+import android.widget.Toast;
+
import java.util.ArrayList;
import alice.tuprologx.android.tuprologmobile.adapters.NavigationDrawerListAdapter;
@@ -42,6 +44,8 @@ public class BaseActivity extends Activity {
private ActionBarDrawerToggle actionBarDrawerToggle;
+ private boolean theorySelected = false;
+ private static final int ACTIVITY_SELECT = 2;
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -128,7 +132,9 @@ public void onDrawerStateChanged(int newState) {
}
}
-
+ public void setBoolTheory() {
+ theorySelected = true;
+ }
protected void openActivity(int position) {
@@ -145,10 +151,16 @@ protected void openActivity(int position) {
startActivity(new Intent(this, LibraryManagerActivity.class));
break;
case 3: //Set a Theory
- startActivity(new Intent(this, TheoriesDatabaseActivity.class));
+ startActivityForResult(new Intent(this, TheoriesDatabaseActivity.class), ACTIVITY_SELECT);
break;
case 4: //Solve a Query
- startActivity(new Intent(this, tuPrologActivity.class));
+ if(theorySelected) {
+ startActivity(new Intent(this, tuPrologActivity.class));
+ }else {
+ Intent intent = new Intent(this,HomeActivity.class);
+ intent.putExtra("setTheory", true);
+ startActivity(intent);
+ }
break;
case 5: //History
startActivity(new Intent(this, HistoryActivity.class));
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/CUIConsole.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/CUIConsole.java
similarity index 98%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/CUIConsole.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/CUIConsole.java
index 46242cd..925a4a0 100644
--- a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/CUIConsole.java
+++ b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/CUIConsole.java
@@ -227,12 +227,12 @@ public void onClick(View v) {
@Override
public void boot() {
- String theory = engine.getTheory().toString();
- if (theory.equals("")) {
- textView.setText("No Theory file selected.");
- } else {
- textView.setText("Selected Theory : " + theory);
- }
+// String theory = engine.getTheory().toString();
+// if (theory.equals("")) {
+// textView.setText("No Theory file selected.");
+// } else {
+// textView.setText("Selected Theory : " + theory);
+// }
try {
solution.setText("tuProlog "
+ tuPrologActivity
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/DescriptionActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/DescriptionActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/DescriptionActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/DescriptionActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/HistoryActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/HistoryActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/HistoryActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/HistoryActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/HomeActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/HomeActivity.java
similarity index 84%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/HomeActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/HomeActivity.java
index ac0233a..6c68445 100644
--- a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/HomeActivity.java
+++ b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/HomeActivity.java
@@ -87,6 +87,10 @@ protected void onCreate(Bundle savedInstanceState) {
if(getIntent().getBooleanExtra("finishApplication", false)){
closeApplication();
}
+ if(getIntent().getBooleanExtra("setTheory", false)) {
+ Toast.makeText(context, "Select a theory first! ",
+ Toast.LENGTH_SHORT).show();
+ }
CUIConsole.main2();
@@ -150,8 +154,17 @@ public void onClick(View v) {
@Override
public void onClick(View v) {
- Intent libraryIntent = new Intent(HomeActivity.this, tuPrologActivity.class);
- startActivity(libraryIntent);
+ if(theorySelect){
+
+ Intent libraryIntent = new Intent(HomeActivity.this, tuPrologActivity.class);
+ libraryIntent.putExtra("theory", t);
+ libraryIntent.putExtra("nameTheory", nameTheory);
+ startActivity(libraryIntent);
+ } else {
+ Toast.makeText(context, "Select a theory first! ",
+ Toast.LENGTH_SHORT).show();
+ }
+
}
});
@@ -165,7 +178,13 @@ public void onClick(View v) {
alert.setTitle("Info Theory");
alert.setMessage("In this section you can customize the mobile engine" + "\n\n" +
"Example Prolog Theory:\n" +
- "INSERIRE ESEMPIO!!!" );
+ "man(Andrea).\n" +
+ "man(Marco).\n" +
+ "woman(Elisa).\n" +
+ "parent(Andrea, Marco).\n" +
+ "parent(Elisa, Marco). \n" +
+ "father(F,C) :- man(F), parent(F,C).\n" +
+ "mother(M,C) :- woman(M), parent(M,C).\n" );
alert.setNegativeButton("Close", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
@@ -186,7 +205,8 @@ public void onClick(View v) {
alert.setTitle("Info Query");
alert.setMessage("In this section you can solve queries" + "\n\n" +
"Example Prolog Query:\n" +
- "INSERIRE ESEMPIO!!!" );
+ "?- father(F, Marco) \n" +
+ "?- mother(M, Marco) \n");
alert.setNegativeButton("Close", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
@@ -208,12 +228,18 @@ public void onBackPressed() {
closeApplication();
}
+ private Bundle extras = null;
+ private boolean theorySelect = false;
+ private Theory t;
+ private String nameTheory = "";
+
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
if (resultCode == RESULT_OK) {
- Bundle extras = intent.getExtras();
-
+ extras = intent.getExtras();
+ theorySelect = true;
+ setBoolTheory();
switch (requestCode) {
case THEORY_SELECT:
Long id = extras.getLong(TheoryDbAdapter.KEY_ROWID);
@@ -223,14 +249,15 @@ protected void onActivityResult(int requestCode, int resultCode, Intent intent)
Theory oldTheory = CUIConsole.engine.getTheory();
try {
- Theory t;
+// Theory t;
t = new Theory(theoryCursor.getString(theoryCursor
.getColumnIndexOrThrow(TheoryDbAdapter.KEY_BODY))
+ System.getProperty("line.separator"));
CUIConsole.engine.setTheory(t);
+ nameTheory = theoryCursor.getString(theoryCursor.getColumnIndexOrThrow(TheoryDbAdapter.KEY_TITLE));
tvTheorySelected.setText("Selected Theory : "
- + theoryCursor.getString(theoryCursor
- .getColumnIndexOrThrow(TheoryDbAdapter.KEY_TITLE)));
+ + nameTheory );
+
Toast.makeText(
context,
"Theory selected: "
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManager.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManager.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManager.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManager.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/SettingsActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/SettingsActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/SettingsActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/SettingsActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.java
similarity index 99%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.java
index 6eb9cd3..215b3a3 100644
--- a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.java
+++ b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.java
@@ -97,6 +97,7 @@ private void saveState() {
String body = mBodyText.getText().toString();
if (mRowId == null && !title.equals("")) {
+ title = title + ".txt";
long id = mDbHelper.createTheory(title, body);
if(prefs.getBoolean("swSaveT",false)==true)
mHDbHelper.createTheory(title, body);
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/models/Items.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/models/Items.java
similarity index 100%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/models/Items.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/models/Items.java
diff --git a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/tuPrologActivity.java b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/tuPrologActivity.java
similarity index 78%
rename from 2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/tuPrologActivity.java
rename to 2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/tuPrologActivity.java
index 22c580f..dd69f98 100644
--- a/2p-android/trunk/src/main/java/alice/tuprologx/android/tuprologmobile/tuPrologActivity.java
+++ b/2p-android/src/main/java/alice/tuprologx/android/tuprologmobile/tuPrologActivity.java
@@ -79,7 +79,7 @@ public void onCreate(Bundle savedInstanceState) {
outputView.setMovementMethod(new ScrollingMovementMethod());
toast = Toast.makeText(tuPrologActivity.this, "Insert rule (Title + Body)",
- Toast.LENGTH_LONG);
+ Toast.LENGTH_LONG);
tabHost.setup();
tabHost.addTab(tabHost.newTabSpec("Solution").setIndicator("Solution")
@@ -89,24 +89,41 @@ public void onCreate(Bundle savedInstanceState) {
tabHost.getTabWidget();
- CUIConsole.main(textView,titleText, editText, execute, solutionView, outputView,
+ CUIConsole.main(textView, titleText, editText, execute, solutionView, outputView,
next, toast, this, clear);
+ Bundle bundle = getIntent().getExtras();
+ Theory theory = (Theory) bundle.getSerializable("theory");
+ try {
+ CUIConsole.engine.setTheory(theory);
+ setBoolTheory();
+ textView.setText("Selected Theory : " + bundle.getString("nameTheory"));
+ Toast.makeText(context, "Set theory" + bundle.getString("nameTheory") , Toast.LENGTH_SHORT).show();
+ }catch (InvalidTheoryException e) {
+ e.printStackTrace();
+ Toast.makeText(context, "Invalid theory ", Toast.LENGTH_SHORT).show();
+ CUIConsole.engine.clearTheory();
- /**
- * @author Alessio Mercurio
- *
- * Create and set the optimized files directory into the Android LibraryManager and Java LibraryManager.
- * This is the directory where optimized dex files should be written; must not be null.
- *
- */
+ }
+
+
+
+ /**
+ * @author Alessio Mercurio
+ *
+ * Create and set the optimized files directory into the Android LibraryManager and Java LibraryManager.
+ * This is the directory where optimized dex files should be written; must not be null.
+ *
+ */
+
+ dexOutputDir = this.getApplicationContext().getDir("dex", 0);
+ CUIConsole.libraryManager.setOptimizedDirectory(dexOutputDir.getAbsolutePath());
+ CUIConsole.engine.getLibraryManager().setOptimizedDirectory(dexOutputDir.getAbsolutePath());
- dexOutputDir = this.getApplicationContext().getDir("dex", 0);
- CUIConsole.libraryManager.setOptimizedDirectory(dexOutputDir.getAbsolutePath());
- CUIConsole.engine.getLibraryManager().setOptimizedDirectory(dexOutputDir.getAbsolutePath());
}
+
@Override
public void onBackPressed() {
@@ -121,6 +138,7 @@ protected void onActivityResult(int requestCode, int resultCode, Intent intent)
switch (requestCode) {
case ACTIVITY_SELECT:
+
Long id = extras.getLong(TheoryDbAdapter.KEY_ROWID);
if (id != null) {
Cursor theoryCursor = mDbHelper.fetchTheory(id);
@@ -133,6 +151,7 @@ protected void onActivityResult(int requestCode, int resultCode, Intent intent)
.getColumnIndexOrThrow(TheoryDbAdapter.KEY_BODY))
+ System.getProperty("line.separator"));
CUIConsole.engine.setTheory(t);
+ setBoolTheory();
textView.setText("Selected Theory : "
+ theoryCursor.getString(theoryCursor
.getColumnIndexOrThrow(TheoryDbAdapter.KEY_TITLE)));
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/Thumbs.db b/2p-android/src/main/res/drawable-hdpi/Thumbs.db
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/Thumbs.db
rename to 2p-android/src/main/res/drawable-hdpi/Thumbs.db
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/drawer_shadow.9.png b/2p-android/src/main/res/drawable-hdpi/drawer_shadow.9.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/drawer_shadow.9.png
rename to 2p-android/src/main/res/drawable-hdpi/drawer_shadow.9.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_drawer.png b/2p-android/src/main/res/drawable-hdpi/ic_drawer.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_drawer.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_drawer.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_about.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_about.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_about.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_about.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_compose.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_compose.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_compose.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_compose.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_compose2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_compose2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_compose2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_compose2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_delete.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_delete.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_delete.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_delete.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_delete2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_delete2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_delete2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_delete2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_edit.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_edit.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_edit.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_edit.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_edit2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_edit2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_edit2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_edit2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_import.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_import.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_import.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_import.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_import2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_import2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_import2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_import2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_list.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_list.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_list.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_list.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_save.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_save.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_save.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_save.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_search.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_search.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_search.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_search.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_search2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_search2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_search2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_search2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_set_as.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_set_as.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_set_as.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_set_as.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_set_as2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_set_as2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_set_as2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_set_as2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_share.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_share.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_share.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_share.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_share2.png b/2p-android/src/main/res/drawable-hdpi/ic_menu_share2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/ic_menu_share2.png
rename to 2p-android/src/main/res/drawable-hdpi/ic_menu_share2.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/icon.png b/2p-android/src/main/res/drawable-hdpi/icon.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/icon.png
rename to 2p-android/src/main/res/drawable-hdpi/icon.png
diff --git a/2p-android/trunk/src/main/res/drawable-hdpi/splash.png b/2p-android/src/main/res/drawable-hdpi/splash.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-hdpi/splash.png
rename to 2p-android/src/main/res/drawable-hdpi/splash.png
diff --git a/2p-android/trunk/src/main/res/drawable-ldpi/Thumbs.db b/2p-android/src/main/res/drawable-ldpi/Thumbs.db
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-ldpi/Thumbs.db
rename to 2p-android/src/main/res/drawable-ldpi/Thumbs.db
diff --git a/2p-android/trunk/src/main/res/drawable-ldpi/freccia_burned.png b/2p-android/src/main/res/drawable-ldpi/freccia_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-ldpi/freccia_burned.png
rename to 2p-android/src/main/res/drawable-ldpi/freccia_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-ldpi/icon.png b/2p-android/src/main/res/drawable-ldpi/icon.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-ldpi/icon.png
rename to 2p-android/src/main/res/drawable-ldpi/icon.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/Thumbs.db b/2p-android/src/main/res/drawable-mdpi/Thumbs.db
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/Thumbs.db
rename to 2p-android/src/main/res/drawable-mdpi/Thumbs.db
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/barra_switch.png b/2p-android/src/main/res/drawable-mdpi/barra_switch.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/barra_switch.png
rename to 2p-android/src/main/res/drawable-mdpi/barra_switch.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/drawer_shadow.9.png b/2p-android/src/main/res/drawable-mdpi/drawer_shadow.9.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/drawer_shadow.9.png
rename to 2p-android/src/main/res/drawable-mdpi/drawer_shadow.9.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/freccia2_burned.png b/2p-android/src/main/res/drawable-mdpi/freccia2_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/freccia2_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/freccia2_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_drawer.png b/2p-android/src/main/res/drawable-mdpi/ic_drawer.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_drawer.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_drawer.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_about.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_about.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_about.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_about.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_compose.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_compose.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_compose.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_compose.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_edit.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_edit.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_edit.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_edit.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_import.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_import.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_import.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_import.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_list.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_list.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_list.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_list.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_list2.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_list2.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_list2.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_list2.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_save.png b/2p-android/src/main/res/drawable-mdpi/ic_menu_save.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/ic_menu_save.png
rename to 2p-android/src/main/res/drawable-mdpi/ic_menu_save.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/icon.png b/2p-android/src/main/res/drawable-mdpi/icon.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/icon.png
rename to 2p-android/src/main/res/drawable-mdpi/icon.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_exit.png b/2p-android/src/main/res/drawable-mdpi/logo_exit.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_exit.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_exit.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_history.png b/2p-android/src/main/res/drawable-mdpi/logo_history.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_history.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_history.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_history_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_history_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_history_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_history_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_historyp.png b/2p-android/src/main/res/drawable-mdpi/logo_historyp.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_historyp.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_historyp.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_historyp_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_historyp_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_historyp_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_historyp_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_home.png b/2p-android/src/main/res/drawable-mdpi/logo_home.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_home.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_home.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_home_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_home_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_home_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_home_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_homep_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_homep_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_homep_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_homep_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_library.png b/2p-android/src/main/res/drawable-mdpi/logo_library.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_library.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_library.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_library_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_library_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_library_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_library_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_libraryp.png b/2p-android/src/main/res/drawable-mdpi/logo_libraryp.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_libraryp.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_libraryp.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_libraryp_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_libraryp_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_libraryp_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_libraryp_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_query.png b/2p-android/src/main/res/drawable-mdpi/logo_query.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_query.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_query.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_settings.png b/2p-android/src/main/res/drawable-mdpi/logo_settings.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_settings.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_settings.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_settings_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_settings_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_settings_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_settings_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_settingsp.png b/2p-android/src/main/res/drawable-mdpi/logo_settingsp.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_settingsp.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_settingsp.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_settingsp_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_settingsp_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_settingsp_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_settingsp_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_theory.png b/2p-android/src/main/res/drawable-mdpi/logo_theory.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_theory.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_theory.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_web.png b/2p-android/src/main/res/drawable-mdpi/logo_web.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_web.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_web.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_web_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_web_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_web_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_web_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_webp.png b/2p-android/src/main/res/drawable-mdpi/logo_webp.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_webp.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_webp.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/logo_webp_burned.png b/2p-android/src/main/res/drawable-mdpi/logo_webp_burned.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/logo_webp_burned.png
rename to 2p-android/src/main/res/drawable-mdpi/logo_webp_burned.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/switch_off.png b/2p-android/src/main/res/drawable-mdpi/switch_off.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/switch_off.png
rename to 2p-android/src/main/res/drawable-mdpi/switch_off.png
diff --git a/2p-android/trunk/src/main/res/drawable-mdpi/switch_on.png b/2p-android/src/main/res/drawable-mdpi/switch_on.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-mdpi/switch_on.png
rename to 2p-android/src/main/res/drawable-mdpi/switch_on.png
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/btn.xml b/2p-android/src/main/res/drawable-nodpi/btn.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/btn.xml
rename to 2p-android/src/main/res/drawable-nodpi/btn.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/btn_browse.xml b/2p-android/src/main/res/drawable-nodpi/btn_browse.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/btn_browse.xml
rename to 2p-android/src/main/res/drawable-nodpi/btn_browse.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/btn_settings.xml b/2p-android/src/main/res/drawable-nodpi/btn_settings.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/btn_settings.xml
rename to 2p-android/src/main/res/drawable-nodpi/btn_settings.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/edtstyle.xml b/2p-android/src/main/res/drawable-nodpi/edtstyle.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/edtstyle.xml
rename to 2p-android/src/main/res/drawable-nodpi/edtstyle.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/edtstyleb.xml b/2p-android/src/main/res/drawable-nodpi/edtstyleb.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/edtstyleb.xml
rename to 2p-android/src/main/res/drawable-nodpi/edtstyleb.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/historybtn.xml b/2p-android/src/main/res/drawable-nodpi/historybtn.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/historybtn.xml
rename to 2p-android/src/main/res/drawable-nodpi/historybtn.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/homebtn.xml b/2p-android/src/main/res/drawable-nodpi/homebtn.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/homebtn.xml
rename to 2p-android/src/main/res/drawable-nodpi/homebtn.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/librarybtn.xml b/2p-android/src/main/res/drawable-nodpi/librarybtn.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/librarybtn.xml
rename to 2p-android/src/main/res/drawable-nodpi/librarybtn.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/settingsbtn.xml b/2p-android/src/main/res/drawable-nodpi/settingsbtn.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/settingsbtn.xml
rename to 2p-android/src/main/res/drawable-nodpi/settingsbtn.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/shape_switch.xml b/2p-android/src/main/res/drawable-nodpi/shape_switch.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/shape_switch.xml
rename to 2p-android/src/main/res/drawable-nodpi/shape_switch.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/switchstyle.xml b/2p-android/src/main/res/drawable-nodpi/switchstyle.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/switchstyle.xml
rename to 2p-android/src/main/res/drawable-nodpi/switchstyle.xml
diff --git a/2p-android/trunk/src/main/res/drawable-nodpi/webbtn.xml b/2p-android/src/main/res/drawable-nodpi/webbtn.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-nodpi/webbtn.xml
rename to 2p-android/src/main/res/drawable-nodpi/webbtn.xml
diff --git a/2p-android/trunk/src/main/res/drawable-xhdpi/drawer_shadow.9.png b/2p-android/src/main/res/drawable-xhdpi/drawer_shadow.9.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-xhdpi/drawer_shadow.9.png
rename to 2p-android/src/main/res/drawable-xhdpi/drawer_shadow.9.png
diff --git a/2p-android/trunk/src/main/res/drawable-xhdpi/ic_drawer.png b/2p-android/src/main/res/drawable-xhdpi/ic_drawer.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-xhdpi/ic_drawer.png
rename to 2p-android/src/main/res/drawable-xhdpi/ic_drawer.png
diff --git a/2p-android/trunk/src/main/res/drawable-xxhdpi/drawer_shadow.9.png b/2p-android/src/main/res/drawable-xxhdpi/drawer_shadow.9.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-xxhdpi/drawer_shadow.9.png
rename to 2p-android/src/main/res/drawable-xxhdpi/drawer_shadow.9.png
diff --git a/2p-android/trunk/src/main/res/drawable-xxhdpi/ic_drawer.png b/2p-android/src/main/res/drawable-xxhdpi/ic_drawer.png
similarity index 100%
rename from 2p-android/trunk/src/main/res/drawable-xxhdpi/ic_drawer.png
rename to 2p-android/src/main/res/drawable-xxhdpi/ic_drawer.png
diff --git a/2p-android/trunk/src/main/res/layout/activity_description.xml b/2p-android/src/main/res/layout/activity_description.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_description.xml
rename to 2p-android/src/main/res/layout/activity_description.xml
diff --git a/2p-android/trunk/src/main/res/layout/activity_history.xml b/2p-android/src/main/res/layout/activity_history.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_history.xml
rename to 2p-android/src/main/res/layout/activity_history.xml
diff --git a/2p-android/src/main/res/layout/activity_home.xml b/2p-android/src/main/res/layout/activity_home.xml
new file mode 100644
index 0000000..e95e1c6
--- /dev/null
+++ b/2p-android/src/main/res/layout/activity_home.xml
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/2p-android/trunk/src/main/res/layout/activity_import.xml b/2p-android/src/main/res/layout/activity_import.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_import.xml
rename to 2p-android/src/main/res/layout/activity_import.xml
diff --git a/2p-android/trunk/src/main/res/layout/activity_library_import.xml b/2p-android/src/main/res/layout/activity_library_import.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_library_import.xml
rename to 2p-android/src/main/res/layout/activity_library_import.xml
diff --git a/2p-android/trunk/src/main/res/layout/activity_library_manager.xml b/2p-android/src/main/res/layout/activity_library_manager.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_library_manager.xml
rename to 2p-android/src/main/res/layout/activity_library_manager.xml
diff --git a/2p-android/trunk/src/main/res/layout/activity_search.xml b/2p-android/src/main/res/layout/activity_search.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_search.xml
rename to 2p-android/src/main/res/layout/activity_search.xml
diff --git a/2p-android/trunk/src/main/res/layout/activity_settings.xml b/2p-android/src/main/res/layout/activity_settings.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/activity_settings.xml
rename to 2p-android/src/main/res/layout/activity_settings.xml
diff --git a/2p-android/trunk/src/main/res/layout/btn_text.xml b/2p-android/src/main/res/layout/btn_text.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/btn_text.xml
rename to 2p-android/src/main/res/layout/btn_text.xml
diff --git a/2p-android/trunk/src/main/res/layout/drawer_list_item.xml b/2p-android/src/main/res/layout/drawer_list_item.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/drawer_list_item.xml
rename to 2p-android/src/main/res/layout/drawer_list_item.xml
diff --git a/2p-android/trunk/src/main/res/layout/file_row.xml b/2p-android/src/main/res/layout/file_row.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/file_row.xml
rename to 2p-android/src/main/res/layout/file_row.xml
diff --git a/2p-android/trunk/src/main/res/layout/fragment_query.xml b/2p-android/src/main/res/layout/fragment_query.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/fragment_query.xml
rename to 2p-android/src/main/res/layout/fragment_query.xml
diff --git a/2p-android/trunk/src/main/res/layout/fragment_theory.xml b/2p-android/src/main/res/layout/fragment_theory.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/fragment_theory.xml
rename to 2p-android/src/main/res/layout/fragment_theory.xml
diff --git a/2p-android/trunk/src/main/res/layout/list_item.xml b/2p-android/src/main/res/layout/list_item.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/list_item.xml
rename to 2p-android/src/main/res/layout/list_item.xml
diff --git a/2p-android/trunk/src/main/res/layout/list_libraries.xml b/2p-android/src/main/res/layout/list_libraries.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/list_libraries.xml
rename to 2p-android/src/main/res/layout/list_libraries.xml
diff --git a/2p-android/trunk/src/main/res/layout/list_view_header_layout.xml b/2p-android/src/main/res/layout/list_view_header_layout.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/list_view_header_layout.xml
rename to 2p-android/src/main/res/layout/list_view_header_layout.xml
diff --git a/2p-android/trunk/src/main/res/layout/main.xml b/2p-android/src/main/res/layout/main.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/main.xml
rename to 2p-android/src/main/res/layout/main.xml
diff --git a/2p-android/trunk/src/main/res/layout/navigation_drawer_base_layout.xml b/2p-android/src/main/res/layout/navigation_drawer_base_layout.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/navigation_drawer_base_layout.xml
rename to 2p-android/src/main/res/layout/navigation_drawer_base_layout.xml
diff --git a/2p-android/trunk/src/main/res/layout/splashscreen.xml b/2p-android/src/main/res/layout/splashscreen.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/splashscreen.xml
rename to 2p-android/src/main/res/layout/splashscreen.xml
diff --git a/2p-android/trunk/src/main/res/layout/tab_layout.xml b/2p-android/src/main/res/layout/tab_layout.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/tab_layout.xml
rename to 2p-android/src/main/res/layout/tab_layout.xml
diff --git a/2p-android/trunk/src/main/res/layout/theories_list.xml b/2p-android/src/main/res/layout/theories_list.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/theories_list.xml
rename to 2p-android/src/main/res/layout/theories_list.xml
diff --git a/2p-android/trunk/src/main/res/layout/theories_row.xml b/2p-android/src/main/res/layout/theories_row.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/theories_row.xml
rename to 2p-android/src/main/res/layout/theories_row.xml
diff --git a/2p-android/trunk/src/main/res/layout/theory_edit.xml b/2p-android/src/main/res/layout/theory_edit.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/layout/theory_edit.xml
rename to 2p-android/src/main/res/layout/theory_edit.xml
diff --git a/2p-android/trunk/src/main/res/menu/library_import.xml b/2p-android/src/main/res/menu/library_import.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/library_import.xml
rename to 2p-android/src/main/res/menu/library_import.xml
diff --git a/2p-android/trunk/src/main/res/menu/library_manager.xml b/2p-android/src/main/res/menu/library_manager.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/library_manager.xml
rename to 2p-android/src/main/res/menu/library_manager.xml
diff --git a/2p-android/trunk/src/main/res/menu/list_page_menu.xml b/2p-android/src/main/res/menu/list_page_menu.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/list_page_menu.xml
rename to 2p-android/src/main/res/menu/list_page_menu.xml
diff --git a/2p-android/trunk/src/main/res/menu/main_page_menu.xml b/2p-android/src/main/res/menu/main_page_menu.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/main_page_menu.xml
rename to 2p-android/src/main/res/menu/main_page_menu.xml
diff --git a/2p-android/trunk/src/main/res/menu/menu_desc_theory.xml b/2p-android/src/main/res/menu/menu_desc_theory.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/menu_desc_theory.xml
rename to 2p-android/src/main/res/menu/menu_desc_theory.xml
diff --git a/2p-android/trunk/src/main/res/menu/menu_description.xml b/2p-android/src/main/res/menu/menu_description.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/menu_description.xml
rename to 2p-android/src/main/res/menu/menu_description.xml
diff --git a/2p-android/trunk/src/main/res/menu/menu_history.xml b/2p-android/src/main/res/menu/menu_history.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/menu/menu_history.xml
rename to 2p-android/src/main/res/menu/menu_history.xml
diff --git a/2p-android/trunk/src/main/res/values-w820dp/dimens.xml b/2p-android/src/main/res/values-w820dp/dimens.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/values-w820dp/dimens.xml
rename to 2p-android/src/main/res/values-w820dp/dimens.xml
diff --git a/2p-android/trunk/src/main/res/values/dimens.xml b/2p-android/src/main/res/values/dimens.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/values/dimens.xml
rename to 2p-android/src/main/res/values/dimens.xml
diff --git a/2p-android/trunk/src/main/res/values/strings.xml b/2p-android/src/main/res/values/strings.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/values/strings.xml
rename to 2p-android/src/main/res/values/strings.xml
diff --git a/2p-android/trunk/src/main/res/values/style.xml b/2p-android/src/main/res/values/style.xml
similarity index 100%
rename from 2p-android/trunk/src/main/res/values/style.xml
rename to 2p-android/src/main/res/values/style.xml
diff --git a/2p-android/trunk/src/test/java/alice/tuprologx/android/tuprologmobile/ExampleUnitTest.java b/2p-android/src/test/java/alice/tuprologx/android/tuprologmobile/ExampleUnitTest.java
similarity index 100%
rename from 2p-android/trunk/src/test/java/alice/tuprologx/android/tuprologmobile/ExampleUnitTest.java
rename to 2p-android/src/test/java/alice/tuprologx/android/tuprologmobile/ExampleUnitTest.java
diff --git a/2p-android/trunk/.gitignore b/2p-android/trunk/.gitignore
deleted file mode 100644
index 8b13789..0000000
--- a/2p-android/trunk/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/2p-android/trunk/app.iml b/2p-android/trunk/app.iml
deleted file mode 100644
index 4c7849a..0000000
--- a/2p-android/trunk/app.iml
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- generateDebugAndroidTestSources
- generateDebugSources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build.gradle b/2p-android/trunk/build.gradle
deleted file mode 100644
index 9921d97..0000000
--- a/2p-android/trunk/build.gradle
+++ /dev/null
@@ -1,28 +0,0 @@
-apply plugin: 'com.android.application'
-
-android {
- compileSdkVersion 23
- buildToolsVersion "23.0.3"
-
- defaultConfig {
- applicationId "alice.tuprologx.android.tuprologmobile"
- minSdkVersion 15
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-}
-
-dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
-// compile fileTree(include: '*.jar', dir: 'libs')
- testCompile 'junit:junit:4.12'
- compile 'com.android.support:appcompat-v7:23.4.0'
- compile 'com.android.support:design:23.4.0'
-}
diff --git a/2p-android/trunk/build/generated/source/buildConfig/androidTest/debug/alice/tuprologx/android/tuprologmobile/test/BuildConfig.java b/2p-android/trunk/build/generated/source/buildConfig/androidTest/debug/alice/tuprologx/android/tuprologmobile/test/BuildConfig.java
deleted file mode 100644
index d1f771f..0000000
--- a/2p-android/trunk/build/generated/source/buildConfig/androidTest/debug/alice/tuprologx/android/tuprologmobile/test/BuildConfig.java
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package alice.tuprologx.android.tuprologmobile.test;
-
-public final class BuildConfig {
- public static final boolean DEBUG = Boolean.parseBoolean("true");
- public static final String APPLICATION_ID = "alice.tuprologx.android.tuprologmobile.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/2p-android/trunk/build/generated/source/buildConfig/debug/alice/tuprologx/android/tuprologmobile/BuildConfig.java b/2p-android/trunk/build/generated/source/buildConfig/debug/alice/tuprologx/android/tuprologmobile/BuildConfig.java
deleted file mode 100644
index 593b383..0000000
--- a/2p-android/trunk/build/generated/source/buildConfig/debug/alice/tuprologx/android/tuprologmobile/BuildConfig.java
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package alice.tuprologx.android.tuprologmobile;
-
-public final class BuildConfig {
- public static final boolean DEBUG = Boolean.parseBoolean("true");
- public static final String APPLICATION_ID = "alice.tuprologx.android.tuprologmobile";
- 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/2p-android/trunk/build/generated/source/r/debug/alice/tuprologx/android/tuprologmobile/R.java b/2p-android/trunk/build/generated/source/r/debug/alice/tuprologx/android/tuprologmobile/R.java
deleted file mode 100644
index 157c134..0000000
--- a/2p-android/trunk/build/generated/source/r/debug/alice/tuprologx/android/tuprologmobile/R.java
+++ /dev/null
@@ -1,8916 +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 alice.tuprologx.android.tuprologmobile;
-
-public final class R {
- public static final class anim {
- public static final int abc_fade_in=0x7f040000;
- public static final int abc_fade_out=0x7f040001;
- public static final int abc_grow_fade_in_from_bottom=0x7f040002;
- public static final int abc_popup_enter=0x7f040003;
- public static final int abc_popup_exit=0x7f040004;
- public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
- public static final int abc_slide_in_bottom=0x7f040006;
- public static final int abc_slide_in_top=0x7f040007;
- public static final int abc_slide_out_bottom=0x7f040008;
- public static final int abc_slide_out_top=0x7f040009;
- public static final int design_bottom_sheet_slide_in=0x7f04000a;
- public static final int design_bottom_sheet_slide_out=0x7f04000b;
- public static final int design_fab_in=0x7f04000c;
- public static final int design_fab_out=0x7f04000d;
- public static final int design_snackbar_in=0x7f04000e;
- public static final int design_snackbar_out=0x7f04000f;
- }
- public static final class attr {
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarDivider=0x7f01003e;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarItemBackground=0x7f01003f;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarPopupTheme=0x7f010038;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
-
May be one of the following constant values.
-
-
-
-
-Constant Value Description
-wrap_content
0
-
- */
- public static final int actionBarSize=0x7f01003d;
- /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarSplitStyle=0x7f01003a;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarStyle=0x7f010039;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarTabBarStyle=0x7f010034;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarTabStyle=0x7f010033;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarTabTextStyle=0x7f010035;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarTheme=0x7f01003b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionBarWidgetTheme=0x7f01003c;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionButtonStyle=0x7f010058;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionDropDownStyle=0x7f010054;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionLayout=0x7f0100c6;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionMenuTextAppearance=0x7f010040;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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=0x7f010041;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeBackground=0x7f010044;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeCloseButtonStyle=0x7f010043;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeCloseDrawable=0x7f010046;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeCopyDrawable=0x7f010048;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeCutDrawable=0x7f010047;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeFindDrawable=0x7f01004c;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModePasteDrawable=0x7f010049;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModePopupWindowStyle=0x7f01004e;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeSelectAllDrawable=0x7f01004a;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeShareDrawable=0x7f01004b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeSplitBackground=0x7f010045;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeStyle=0x7f010042;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionModeWebSearchDrawable=0x7f01004d;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionOverflowButtonStyle=0x7f010036;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int actionOverflowMenuStyle=0x7f010037;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int actionProviderClass=0x7f0100c8;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int actionViewClass=0x7f0100c7;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int activityChooserViewStyle=0x7f010060;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int alertDialogButtonGroupStyle=0x7f010083;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int alertDialogCenterButtons=0x7f010084;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int alertDialogStyle=0x7f010082;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int alertDialogTheme=0x7f010085;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int allowStacking=0x7f010099;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int arrowHeadLength=0x7f0100b8;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int arrowShaftLength=0x7f0100b9;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int autoCompleteTextViewStyle=0x7f01008a;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int background=0x7f01000c;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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=0x7f01000e;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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=0x7f01000d;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int backgroundTint=0x7f010118;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-src_over
3
-src_in
5
-src_atop
9
-multiply
14
-screen
15
-
- */
- public static final int backgroundTintMode=0x7f010119;
- /** Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int barLength=0x7f0100ba;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int behavior_hideable=0x7f010098;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int behavior_overlapTop=0x7f0100d7;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int behavior_peekHeight=0x7f010097;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int borderWidth=0x7f0100bf;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int borderlessButtonStyle=0x7f01005d;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int bottomSheetDialogTheme=0x7f0100b1;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int bottomSheetStyle=0x7f0100b2;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonBarButtonStyle=0x7f01005a;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonBarNegativeButtonStyle=0x7f010088;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonBarNeutralButtonStyle=0x7f010089;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonBarPositiveButtonStyle=0x7f010087;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonBarStyle=0x7f010059;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonPanelSideLayout=0x7f01001f;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonStyle=0x7f01008b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int buttonStyleSmall=0x7f01008c;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int buttonTint=0x7f0100a9;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-src_over
3
-src_in
5
-src_atop
9
-multiply
14
-screen
15
-
- */
- public static final int buttonTintMode=0x7f0100aa;
- /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int checkboxStyle=0x7f01008d;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int checkedTextViewStyle=0x7f01008e;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int closeIcon=0x7f0100dc;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int closeItemLayout=0x7f01001c;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int collapseContentDescription=0x7f01010f;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int collapseIcon=0x7f01010e;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-top
0x30
-bottom
0x50
-left
0x03
-right
0x05
-center_vertical
0x10
-fill_vertical
0x70
-center_horizontal
0x01
-center
0x11
-start
0x00800003
-end
0x00800005
-
- */
- public static final int collapsedTitleGravity=0x7f0100a6;
- /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int collapsedTitleTextAppearance=0x7f0100a2;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int color=0x7f0100b4;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorAccent=0x7f01007b;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorButtonNormal=0x7f01007f;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorControlActivated=0x7f01007d;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorControlHighlight=0x7f01007e;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorControlNormal=0x7f01007c;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorPrimary=0x7f010079;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorPrimaryDark=0x7f01007a;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int colorSwitchThumbNormal=0x7f010080;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int commitIcon=0x7f0100e1;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int contentInsetEnd=0x7f010017;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int contentInsetLeft=0x7f010018;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int contentInsetRight=0x7f010019;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int contentInsetStart=0x7f010016;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int contentScrim=0x7f0100a3;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int controlBackground=0x7f010081;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int counterEnabled=0x7f010101;
- /**
Must be an integer value, such as "100
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int counterMaxLength=0x7f010102;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int counterOverflowTextAppearance=0x7f010104;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int counterTextAppearance=0x7f010103;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int customNavigationLayout=0x7f01000f;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int defaultQueryHint=0x7f0100db;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int dialogPreferredPadding=0x7f010052;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int dialogTheme=0x7f010051;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-none
0
-useLogo
0x1
-showHome
0x2
-homeAsUp
0x4
-showTitle
0x8
-showCustom
0x10
-disableHome
0x20
-
- */
- public static final int displayOptions=0x7f010005;
- /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int divider=0x7f01000b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int dividerHorizontal=0x7f01005f;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int dividerPadding=0x7f0100c4;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int dividerVertical=0x7f01005e;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int drawableSize=0x7f0100b6;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int drawerArrowStyle=0x7f010000;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int dropDownListViewStyle=0x7f010071;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int dropdownListPreferredItemHeight=0x7f010055;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int editTextBackground=0x7f010066;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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=0x7f010065;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int editTextStyle=0x7f01008f;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int elevation=0x7f01001a;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int errorEnabled=0x7f0100ff;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int errorTextAppearance=0x7f010100;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int expandActivityOverflowButtonDrawable=0x7f01001e;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int expanded=0x7f010024;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-top
0x30
-bottom
0x50
-left
0x03
-right
0x05
-center_vertical
0x10
-fill_vertical
0x70
-center_horizontal
0x01
-center
0x11
-start
0x00800003
-end
0x00800005
-
- */
- public static final int expandedTitleGravity=0x7f0100a7;
- /** Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int expandedTitleMargin=0x7f01009c;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int expandedTitleMarginBottom=0x7f0100a0;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int expandedTitleMarginEnd=0x7f01009f;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int expandedTitleMarginStart=0x7f01009d;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int expandedTitleMarginTop=0x7f01009e;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int expandedTitleTextAppearance=0x7f0100a1;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-normal
0
-mini
1
-
- */
- public static final int fabSize=0x7f0100bd;
- /** Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int foregroundInsidePadding=0x7f0100c1;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int gapBetweenBars=0x7f0100b7;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int goIcon=0x7f0100dd;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int headerLayout=0x7f0100cf;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int height=0x7f010001;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int hideOnContentScroll=0x7f010015;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int hintAnimationEnabled=0x7f010105;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int hintEnabled=0x7f0100fe;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int hintTextAppearance=0x7f0100fd;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int homeAsUpIndicator=0x7f010057;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int homeLayout=0x7f010010;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int icon=0x7f010009;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int iconifiedByDefault=0x7f0100d9;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int imageButtonStyle=0x7f010067;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int indeterminateProgressStyle=0x7f010012;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int initialActivityCount=0x7f01001d;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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 insetForeground=0x7f0100d6;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int isLightTheme=0x7f010002;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int itemBackground=0x7f0100cd;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int itemIconTint=0x7f0100cb;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int itemPadding=0x7f010014;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int itemTextAppearance=0x7f0100ce;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int itemTextColor=0x7f0100cc;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int keylines=0x7f0100ab;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int layout=0x7f0100d8;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int layoutManager=0x7f0100d2;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int layout_anchor=0x7f0100ae;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-top
0x30
-bottom
0x50
-left
0x03
-right
0x05
-center_vertical
0x10
-fill_vertical
0x70
-center_horizontal
0x01
-fill_horizontal
0x07
-center
0x11
-fill
0x77
-clip_vertical
0x80
-clip_horizontal
0x08
-start
0x00800003
-end
0x00800005
-
- */
- public static final int layout_anchorGravity=0x7f0100b0;
- /** Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int layout_behavior=0x7f0100ad;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-none
0
-pin
1
-parallax
2
-
- */
- public static final int layout_collapseMode=0x7f01009a;
- /** Must be a floating point value, such as "1.2
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int layout_collapseParallaxMultiplier=0x7f01009b;
- /**
Must be an integer value, such as "100
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int layout_keyline=0x7f0100af;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-scroll
0x1
-exitUntilCollapsed
0x2
-enterAlways
0x4
-enterAlwaysCollapsed
0x8
-snap
0x10
-
- */
- public static final int layout_scrollFlags=0x7f010025;
- /** Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int layout_scrollInterpolator=0x7f010026;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int listChoiceBackgroundIndicator=0x7f010078;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int listDividerAlertDialog=0x7f010053;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int listItemLayout=0x7f010023;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int listLayout=0x7f010020;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int listPopupWindowStyle=0x7f010072;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeight=0x7f01006c;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeightLarge=0x7f01006e;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemHeightSmall=0x7f01006d;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemPaddingLeft=0x7f01006f;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int listPreferredItemPaddingRight=0x7f010070;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int logo=0x7f01000a;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int logoDescription=0x7f010112;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int maxActionInlineWidth=0x7f0100e5;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int maxButtonHeight=0x7f01010d;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int measureWithLargestChild=0x7f0100c2;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int menu=0x7f0100ca;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int multiChoiceItemLayout=0x7f010021;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int navigationContentDescription=0x7f010111;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int navigationIcon=0x7f010110;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-normal
0
-listMode
1
-tabMode
2
-
- */
- public static final int navigationMode=0x7f010004;
- /** Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int overlapAnchor=0x7f0100d0;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int paddingEnd=0x7f010116;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int paddingStart=0x7f010115;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int panelBackground=0x7f010075;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int panelMenuListTheme=0x7f010077;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int panelMenuListWidth=0x7f010076;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int popupMenuStyle=0x7f010063;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int popupTheme=0x7f01001b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int popupWindowStyle=0x7f010064;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int preserveIconSpacing=0x7f0100c9;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int pressedTranslationZ=0x7f0100be;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int progressBarPadding=0x7f010013;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int progressBarStyle=0x7f010011;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int queryBackground=0x7f0100e3;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int queryHint=0x7f0100da;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int radioButtonStyle=0x7f010090;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int ratingBarStyle=0x7f010091;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int ratingBarStyleIndicator=0x7f010092;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int ratingBarStyleSmall=0x7f010093;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int reverseLayout=0x7f0100d4;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int rippleColor=0x7f0100bc;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int searchHintIcon=0x7f0100df;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int searchIcon=0x7f0100de;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int searchViewStyle=0x7f01006b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int seekBarStyle=0x7f010094;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int selectableItemBackground=0x7f01005b;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int selectableItemBackgroundBorderless=0x7f01005c;
- /**
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-never
0
-ifRoom
1
-always
2
-withText
4
-collapseActionView
8
-
- */
- public static final int showAsAction=0x7f0100c5;
- /** Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-none
0
-beginning
1
-middle
2
-end
4
-
- */
- public static final int showDividers=0x7f0100c3;
- /** Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int showText=0x7f0100ec;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int singleChoiceItemLayout=0x7f010022;
- /**
Must be an integer value, such as "100
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int spanCount=0x7f0100d3;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int spinBars=0x7f0100b5;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int spinnerDropDownItemStyle=0x7f010056;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int spinnerStyle=0x7f010095;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int splitTrack=0x7f0100eb;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int srcCompat=0x7f010027;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int stackFromEnd=0x7f0100d5;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int state_above_anchor=0x7f0100d1;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int statusBarBackground=0x7f0100ac;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int statusBarScrim=0x7f0100a4;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int submitBackground=0x7f0100e4;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int subtitle=0x7f010006;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int subtitleTextAppearance=0x7f010107;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int subtitleTextColor=0x7f010114;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int subtitleTextStyle=0x7f010008;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int suggestionRowLayout=0x7f0100e2;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int switchMinWidth=0x7f0100e9;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int switchPadding=0x7f0100ea;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int switchStyle=0x7f010096;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int switchTextAppearance=0x7f0100e8;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int tabBackground=0x7f0100f0;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabContentStart=0x7f0100ef;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-fill
0
-center
1
-
- */
- public static final int tabGravity=0x7f0100f2;
- /** Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabIndicatorColor=0x7f0100ed;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabIndicatorHeight=0x7f0100ee;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabMaxWidth=0x7f0100f4;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabMinWidth=0x7f0100f3;
- /**
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-scrollable
0
-fixed
1
-
- */
- public static final int tabMode=0x7f0100f1;
- /** Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabPadding=0x7f0100fc;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabPaddingBottom=0x7f0100fb;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabPaddingEnd=0x7f0100fa;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabPaddingStart=0x7f0100f8;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabPaddingTop=0x7f0100f9;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabSelectedTextColor=0x7f0100f7;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int tabTextAppearance=0x7f0100f5;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int tabTextColor=0x7f0100f6;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
-
May be a boolean value, either "true
" or "false
".
- */
- public static final int textAllCaps=0x7f010028;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int textAppearanceLargePopupMenu=0x7f01004f;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int textAppearanceListItem=0x7f010073;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int textAppearanceListItemSmall=0x7f010074;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int textAppearanceSearchResultSubtitle=0x7f010069;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int textAppearanceSearchResultTitle=0x7f010068;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int textAppearanceSmallPopupMenu=0x7f010050;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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=0x7f010086;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int textColorError=0x7f0100b3;
- /**
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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=0x7f01006a;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int theme=0x7f010117;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int thickness=0x7f0100bb;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int thumbTextPadding=0x7f0100e7;
- /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int title=0x7f010003;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleEnabled=0x7f0100a8;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleMarginBottom=0x7f01010c;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleMarginEnd=0x7f01010a;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleMarginStart=0x7f010109;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleMarginTop=0x7f01010b;
- /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleMargins=0x7f010108;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int titleTextAppearance=0x7f010106;
- /**
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int titleTextColor=0x7f010113;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int titleTextStyle=0x7f010007;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int toolbarId=0x7f0100a5;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int toolbarNavigationButtonStyle=0x7f010062;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int toolbarStyle=0x7f010061;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int track=0x7f0100e6;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int useCompatPadding=0x7f0100c0;
- /**
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- */
- public static final int voiceIcon=0x7f0100e0;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowActionBar=0x7f010029;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowActionBarOverlay=0x7f01002b;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowActionModeOverlay=0x7f01002c;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowFixedHeightMajor=0x7f010030;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowFixedHeightMinor=0x7f01002e;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowFixedWidthMajor=0x7f01002d;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowFixedWidthMinor=0x7f01002f;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowMinWidthMajor=0x7f010031;
- /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowMinWidthMinor=0x7f010032;
- /**
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- */
- public static final int windowNoTitle=0x7f01002a;
- }
- public static final class bool {
- public static final int abc_action_bar_embed_tabs=0x7f060003;
- public static final int abc_action_bar_embed_tabs_pre_jb=0x7f060001;
- public static final int abc_action_bar_expanded_action_views_exclusive=0x7f060004;
- public static final int abc_allow_stacked_button_bar=0x7f060000;
- public static final int abc_config_actionMenuItemAllCaps=0x7f060005;
- public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f060002;
- public static final int abc_config_closeDialogWhenTouchOutside=0x7f060006;
- public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f060007;
- }
- public static final class color {
- public static final int abc_background_cache_hint_selector_material_dark=0x7f0a0044;
- public static final int abc_background_cache_hint_selector_material_light=0x7f0a0045;
- public static final int abc_color_highlight_material=0x7f0a0046;
- public static final int abc_input_method_navigation_guard=0x7f0a0000;
- public static final int abc_primary_text_disable_only_material_dark=0x7f0a0047;
- public static final int abc_primary_text_disable_only_material_light=0x7f0a0048;
- public static final int abc_primary_text_material_dark=0x7f0a0049;
- public static final int abc_primary_text_material_light=0x7f0a004a;
- public static final int abc_search_url_text=0x7f0a004b;
- public static final int abc_search_url_text_normal=0x7f0a0001;
- public static final int abc_search_url_text_pressed=0x7f0a0002;
- public static final int abc_search_url_text_selected=0x7f0a0003;
- public static final int abc_secondary_text_material_dark=0x7f0a004c;
- public static final int abc_secondary_text_material_light=0x7f0a004d;
- public static final int accent_material_dark=0x7f0a0004;
- public static final int accent_material_light=0x7f0a0005;
- public static final int background_floating_material_dark=0x7f0a0006;
- public static final int background_floating_material_light=0x7f0a0007;
- public static final int background_material_dark=0x7f0a0008;
- public static final int background_material_light=0x7f0a0009;
- public static final int bright_foreground_disabled_material_dark=0x7f0a000a;
- public static final int bright_foreground_disabled_material_light=0x7f0a000b;
- public static final int bright_foreground_inverse_material_dark=0x7f0a000c;
- public static final int bright_foreground_inverse_material_light=0x7f0a000d;
- public static final int bright_foreground_material_dark=0x7f0a000e;
- public static final int bright_foreground_material_light=0x7f0a000f;
- public static final int button_material_dark=0x7f0a0010;
- public static final int button_material_light=0x7f0a0011;
- public static final int design_fab_shadow_end_color=0x7f0a0012;
- public static final int design_fab_shadow_mid_color=0x7f0a0013;
- public static final int design_fab_shadow_start_color=0x7f0a0014;
- public static final int design_fab_stroke_end_inner_color=0x7f0a0015;
- public static final int design_fab_stroke_end_outer_color=0x7f0a0016;
- public static final int design_fab_stroke_top_inner_color=0x7f0a0017;
- public static final int design_fab_stroke_top_outer_color=0x7f0a0018;
- public static final int design_snackbar_background_color=0x7f0a0019;
- public static final int design_textinput_error_color_dark=0x7f0a001a;
- public static final int design_textinput_error_color_light=0x7f0a001b;
- public static final int dim_foreground_disabled_material_dark=0x7f0a001c;
- public static final int dim_foreground_disabled_material_light=0x7f0a001d;
- public static final int dim_foreground_material_dark=0x7f0a001e;
- public static final int dim_foreground_material_light=0x7f0a001f;
- public static final int foreground_material_dark=0x7f0a0020;
- public static final int foreground_material_light=0x7f0a0021;
- public static final int highlighted_text_material_dark=0x7f0a0022;
- public static final int highlighted_text_material_light=0x7f0a0023;
- public static final int hint_foreground_material_dark=0x7f0a0024;
- public static final int hint_foreground_material_light=0x7f0a0025;
- public static final int material_blue_grey_800=0x7f0a0026;
- public static final int material_blue_grey_900=0x7f0a0027;
- public static final int material_blue_grey_950=0x7f0a0028;
- public static final int material_deep_teal_200=0x7f0a0029;
- public static final int material_deep_teal_500=0x7f0a002a;
- public static final int material_grey_100=0x7f0a002b;
- public static final int material_grey_300=0x7f0a002c;
- public static final int material_grey_50=0x7f0a002d;
- public static final int material_grey_600=0x7f0a002e;
- public static final int material_grey_800=0x7f0a002f;
- public static final int material_grey_850=0x7f0a0030;
- public static final int material_grey_900=0x7f0a0031;
- public static final int primary_dark_material_dark=0x7f0a0032;
- public static final int primary_dark_material_light=0x7f0a0033;
- public static final int primary_material_dark=0x7f0a0034;
- public static final int primary_material_light=0x7f0a0035;
- public static final int primary_text_default_material_dark=0x7f0a0036;
- public static final int primary_text_default_material_light=0x7f0a0037;
- public static final int primary_text_disabled_material_dark=0x7f0a0038;
- public static final int primary_text_disabled_material_light=0x7f0a0039;
- public static final int ripple_material_dark=0x7f0a003a;
- public static final int ripple_material_light=0x7f0a003b;
- public static final int secondary_text_default_material_dark=0x7f0a003c;
- public static final int secondary_text_default_material_light=0x7f0a003d;
- public static final int secondary_text_disabled_material_dark=0x7f0a003e;
- public static final int secondary_text_disabled_material_light=0x7f0a003f;
- public static final int switch_thumb_disabled_material_dark=0x7f0a0040;
- public static final int switch_thumb_disabled_material_light=0x7f0a0041;
- public static final int switch_thumb_material_dark=0x7f0a004e;
- public static final int switch_thumb_material_light=0x7f0a004f;
- public static final int switch_thumb_normal_material_dark=0x7f0a0042;
- public static final int switch_thumb_normal_material_light=0x7f0a0043;
- }
- public static final class dimen {
- public static final int abc_action_bar_content_inset_material=0x7f07000d;
- public static final int abc_action_bar_default_height_material=0x7f070001;
- public static final int abc_action_bar_default_padding_end_material=0x7f07000e;
- public static final int abc_action_bar_default_padding_start_material=0x7f07000f;
- public static final int abc_action_bar_icon_vertical_padding_material=0x7f07001a;
- public static final int abc_action_bar_overflow_padding_end_material=0x7f07001b;
- public static final int abc_action_bar_overflow_padding_start_material=0x7f07001c;
- public static final int abc_action_bar_progress_bar_size=0x7f070002;
- public static final int abc_action_bar_stacked_max_height=0x7f07001d;
- public static final int abc_action_bar_stacked_tab_max_width=0x7f07001e;
- public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07001f;
- public static final int abc_action_bar_subtitle_top_margin_material=0x7f070020;
- public static final int abc_action_button_min_height_material=0x7f070021;
- public static final int abc_action_button_min_width_material=0x7f070022;
- public static final int abc_action_button_min_width_overflow_material=0x7f070023;
- public static final int abc_alert_dialog_button_bar_height=0x7f070000;
- public static final int abc_button_inset_horizontal_material=0x7f070024;
- public static final int abc_button_inset_vertical_material=0x7f070025;
- public static final int abc_button_padding_horizontal_material=0x7f070026;
- public static final int abc_button_padding_vertical_material=0x7f070027;
- public static final int abc_config_prefDialogWidth=0x7f070005;
- public static final int abc_control_corner_material=0x7f070028;
- public static final int abc_control_inset_material=0x7f070029;
- public static final int abc_control_padding_material=0x7f07002a;
- public static final int abc_dialog_fixed_height_major=0x7f070006;
- public static final int abc_dialog_fixed_height_minor=0x7f070007;
- public static final int abc_dialog_fixed_width_major=0x7f070008;
- public static final int abc_dialog_fixed_width_minor=0x7f070009;
- public static final int abc_dialog_list_padding_vertical_material=0x7f07002b;
- public static final int abc_dialog_min_width_major=0x7f07000a;
- public static final int abc_dialog_min_width_minor=0x7f07000b;
- public static final int abc_dialog_padding_material=0x7f07002c;
- public static final int abc_dialog_padding_top_material=0x7f07002d;
- public static final int abc_disabled_alpha_material_dark=0x7f07002e;
- public static final int abc_disabled_alpha_material_light=0x7f07002f;
- public static final int abc_dropdownitem_icon_width=0x7f070030;
- public static final int abc_dropdownitem_text_padding_left=0x7f070031;
- public static final int abc_dropdownitem_text_padding_right=0x7f070032;
- public static final int abc_edit_text_inset_bottom_material=0x7f070033;
- public static final int abc_edit_text_inset_horizontal_material=0x7f070034;
- public static final int abc_edit_text_inset_top_material=0x7f070035;
- public static final int abc_floating_window_z=0x7f070036;
- public static final int abc_list_item_padding_horizontal_material=0x7f070037;
- public static final int abc_panel_menu_list_width=0x7f070038;
- public static final int abc_search_view_preferred_width=0x7f070039;
- public static final int abc_search_view_text_min_width=0x7f07000c;
- public static final int abc_seekbar_track_background_height_material=0x7f07003a;
- public static final int abc_seekbar_track_progress_height_material=0x7f07003b;
- public static final int abc_select_dialog_padding_start_material=0x7f07003c;
- public static final int abc_switch_padding=0x7f070018;
- public static final int abc_text_size_body_1_material=0x7f07003d;
- public static final int abc_text_size_body_2_material=0x7f07003e;
- public static final int abc_text_size_button_material=0x7f07003f;
- public static final int abc_text_size_caption_material=0x7f070040;
- public static final int abc_text_size_display_1_material=0x7f070041;
- public static final int abc_text_size_display_2_material=0x7f070042;
- public static final int abc_text_size_display_3_material=0x7f070043;
- public static final int abc_text_size_display_4_material=0x7f070044;
- public static final int abc_text_size_headline_material=0x7f070045;
- public static final int abc_text_size_large_material=0x7f070046;
- public static final int abc_text_size_medium_material=0x7f070047;
- public static final int abc_text_size_menu_material=0x7f070048;
- public static final int abc_text_size_small_material=0x7f070049;
- public static final int abc_text_size_subhead_material=0x7f07004a;
- public static final int abc_text_size_subtitle_material_toolbar=0x7f070003;
- public static final int abc_text_size_title_material=0x7f07004b;
- public static final int abc_text_size_title_material_toolbar=0x7f070004;
- public static final int activity_horizontal_margin=0x7f070019;
- public static final int activity_vertical_margin=0x7f07004c;
- public static final int design_appbar_elevation=0x7f07004d;
- public static final int design_bottom_sheet_modal_elevation=0x7f07004e;
- public static final int design_bottom_sheet_modal_peek_height=0x7f07004f;
- public static final int design_fab_border_width=0x7f070050;
- public static final int design_fab_elevation=0x7f070051;
- public static final int design_fab_image_size=0x7f070052;
- public static final int design_fab_size_mini=0x7f070053;
- public static final int design_fab_size_normal=0x7f070054;
- public static final int design_fab_translation_z_pressed=0x7f070055;
- public static final int design_navigation_elevation=0x7f070056;
- public static final int design_navigation_icon_padding=0x7f070057;
- public static final int design_navigation_icon_size=0x7f070058;
- public static final int design_navigation_max_width=0x7f070010;
- public static final int design_navigation_padding_bottom=0x7f070059;
- public static final int design_navigation_separator_vertical_padding=0x7f07005a;
- public static final int design_snackbar_action_inline_max_width=0x7f070011;
- public static final int design_snackbar_background_corner_radius=0x7f070012;
- public static final int design_snackbar_elevation=0x7f07005b;
- public static final int design_snackbar_extra_spacing_horizontal=0x7f070013;
- public static final int design_snackbar_max_width=0x7f070014;
- public static final int design_snackbar_min_width=0x7f070015;
- public static final int design_snackbar_padding_horizontal=0x7f07005c;
- public static final int design_snackbar_padding_vertical=0x7f07005d;
- public static final int design_snackbar_padding_vertical_2lines=0x7f070016;
- public static final int design_snackbar_text_size=0x7f07005e;
- public static final int design_tab_max_width=0x7f07005f;
- public static final int design_tab_scrollable_min_width=0x7f070017;
- public static final int design_tab_text_size=0x7f070060;
- public static final int design_tab_text_size_2line=0x7f070061;
- public static final int disabled_alpha_material_dark=0x7f070062;
- public static final int disabled_alpha_material_light=0x7f070063;
- public static final int highlight_alpha_material_colored=0x7f070064;
- public static final int highlight_alpha_material_dark=0x7f070065;
- public static final int highlight_alpha_material_light=0x7f070066;
- public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070067;
- public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070068;
- public static final int item_touch_helper_swipe_escape_velocity=0x7f070069;
- public static final int navigation_drawer_width=0x7f07006a;
- public static final int notification_large_icon_height=0x7f07006b;
- public static final int notification_large_icon_width=0x7f07006c;
- public static final int notification_subtext_size=0x7f07006d;
- }
- public static final class drawable {
- public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
- public static final int abc_action_bar_item_background_material=0x7f020001;
- public static final int abc_btn_borderless_material=0x7f020002;
- public static final int abc_btn_check_material=0x7f020003;
- public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
- public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
- public static final int abc_btn_colored_material=0x7f020006;
- public static final int abc_btn_default_mtrl_shape=0x7f020007;
- public static final int abc_btn_radio_material=0x7f020008;
- public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
- public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
- public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
- public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
- public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
- public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
- public static final int abc_cab_background_internal_bg=0x7f02000f;
- public static final int abc_cab_background_top_material=0x7f020010;
- public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;
- public static final int abc_control_background_material=0x7f020012;
- public static final int abc_dialog_material_background_dark=0x7f020013;
- public static final int abc_dialog_material_background_light=0x7f020014;
- public static final int abc_edit_text_material=0x7f020015;
- public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
- public static final int abc_ic_clear_mtrl_alpha=0x7f020017;
- public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
- public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
- public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
- public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
- public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
- public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
- public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
- public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
- public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;
- public static final int abc_ic_star_black_16dp=0x7f020021;
- public static final int abc_ic_star_black_36dp=0x7f020022;
- public static final int abc_ic_star_half_black_16dp=0x7f020023;
- public static final int abc_ic_star_half_black_36dp=0x7f020024;
- public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020025;
- public static final int abc_item_background_holo_dark=0x7f020026;
- public static final int abc_item_background_holo_light=0x7f020027;
- public static final int abc_list_divider_mtrl_alpha=0x7f020028;
- public static final int abc_list_focused_holo=0x7f020029;
- public static final int abc_list_longpressed_holo=0x7f02002a;
- public static final int abc_list_pressed_holo_dark=0x7f02002b;
- public static final int abc_list_pressed_holo_light=0x7f02002c;
- public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
- public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
- public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
- public static final int abc_list_selector_disabled_holo_light=0x7f020030;
- public static final int abc_list_selector_holo_dark=0x7f020031;
- public static final int abc_list_selector_holo_light=0x7f020032;
- public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
- public static final int abc_popup_background_mtrl_mult=0x7f020034;
- public static final int abc_ratingbar_full_material=0x7f020035;
- public static final int abc_ratingbar_indicator_material=0x7f020036;
- public static final int abc_ratingbar_small_material=0x7f020037;
- public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
- public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
- public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
- public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
- public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
- public static final int abc_seekbar_thumb_material=0x7f02003d;
- public static final int abc_seekbar_track_material=0x7f02003e;
- public static final int abc_spinner_mtrl_am_alpha=0x7f02003f;
- public static final int abc_spinner_textfield_background_material=0x7f020040;
- public static final int abc_switch_thumb_material=0x7f020041;
- public static final int abc_switch_track_mtrl_alpha=0x7f020042;
- public static final int abc_tab_indicator_material=0x7f020043;
- public static final int abc_tab_indicator_mtrl_alpha=0x7f020044;
- public static final int abc_text_cursor_material=0x7f020045;
- public static final int abc_textfield_activated_mtrl_alpha=0x7f020046;
- public static final int abc_textfield_default_mtrl_alpha=0x7f020047;
- public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020048;
- public static final int abc_textfield_search_default_mtrl_alpha=0x7f020049;
- public static final int abc_textfield_search_material=0x7f02004a;
- public static final int barra_switch=0x7f02004b;
- public static final int btn=0x7f02004c;
- public static final int btn_browse=0x7f02004d;
- public static final int btn_settings=0x7f02004e;
- public static final int design_fab_background=0x7f02004f;
- public static final int design_snackbar_background=0x7f020050;
- public static final int drawer_shadow=0x7f020051;
- public static final int edtstyle=0x7f020052;
- public static final int edtstyleb=0x7f020053;
- public static final int freccia2_burned=0x7f020054;
- public static final int freccia_burned=0x7f020055;
- public static final int historybtn=0x7f020056;
- public static final int homebtn=0x7f020057;
- public static final int ic_drawer=0x7f020058;
- public static final int ic_menu_about=0x7f020059;
- public static final int ic_menu_compose=0x7f02005a;
- public static final int ic_menu_compose2=0x7f02005b;
- public static final int ic_menu_delete=0x7f02005c;
- public static final int ic_menu_delete2=0x7f02005d;
- public static final int ic_menu_edit=0x7f02005e;
- public static final int ic_menu_edit2=0x7f02005f;
- public static final int ic_menu_import=0x7f020060;
- public static final int ic_menu_import2=0x7f020061;
- public static final int ic_menu_list=0x7f020062;
- public static final int ic_menu_list2=0x7f020063;
- public static final int ic_menu_moreoverflow_normal_holo_light=0x7f020064;
- public static final int ic_menu_moreoverflow_normal_holo_light2=0x7f020065;
- public static final int ic_menu_save=0x7f020066;
- public static final int ic_menu_search=0x7f020067;
- public static final int ic_menu_search2=0x7f020068;
- public static final int ic_menu_set_as=0x7f020069;
- public static final int ic_menu_set_as2=0x7f02006a;
- public static final int ic_menu_share=0x7f02006b;
- public static final int ic_menu_share2=0x7f02006c;
- public static final int icon=0x7f02006d;
- public static final int librarybtn=0x7f02006e;
- public static final int logo_exit=0x7f02006f;
- public static final int logo_history=0x7f020070;
- public static final int logo_history_burned=0x7f020071;
- public static final int logo_historyp=0x7f020072;
- public static final int logo_historyp_burned=0x7f020073;
- public static final int logo_home=0x7f020074;
- public static final int logo_home_burned=0x7f020075;
- public static final int logo_homep_burned=0x7f020076;
- public static final int logo_library=0x7f020077;
- public static final int logo_library_burned=0x7f020078;
- public static final int logo_libraryp=0x7f020079;
- public static final int logo_libraryp_burned=0x7f02007a;
- public static final int logo_query=0x7f02007b;
- public static final int logo_settings=0x7f02007c;
- public static final int logo_settings_burned=0x7f02007d;
- public static final int logo_settingsp=0x7f02007e;
- public static final int logo_settingsp_burned=0x7f02007f;
- public static final int logo_theory=0x7f020080;
- public static final int logo_web=0x7f020081;
- public static final int logo_web_burned=0x7f020082;
- public static final int logo_webp=0x7f020083;
- public static final int logo_webp_burned=0x7f020084;
- public static final int notification_template_icon_bg=0x7f02008c;
- public static final int settingsbtn=0x7f020085;
- public static final int shape_switch=0x7f020086;
- public static final int splash=0x7f020087;
- public static final int switch_off=0x7f020088;
- public static final int switch_on=0x7f020089;
- public static final int switchstyle=0x7f02008a;
- public static final int webbtn=0x7f02008b;
- }
- public static final class id {
- public static final int about=0x7f0b00c4;
- public static final int action0=0x7f0b00ab;
- public static final int action_bar=0x7f0b005a;
- public static final int action_bar_activity_content=0x7f0b0000;
- public static final int action_bar_container=0x7f0b0059;
- public static final int action_bar_root=0x7f0b0055;
- public static final int action_bar_spinner=0x7f0b0001;
- public static final int action_bar_subtitle=0x7f0b003b;
- public static final int action_bar_title=0x7f0b003a;
- public static final int action_context_bar=0x7f0b005b;
- public static final int action_divider=0x7f0b00af;
- public static final int action_menu_divider=0x7f0b0002;
- public static final int action_menu_presenter=0x7f0b0003;
- public static final int action_mode_bar=0x7f0b0057;
- public static final int action_mode_bar_stub=0x7f0b0056;
- public static final int action_mode_close_button=0x7f0b003c;
- public static final int action_settings=0x7f0b00be;
- public static final int activity_chooser_view_content=0x7f0b003d;
- public static final int alertTitle=0x7f0b0049;
- public static final int always=0x7f0b0033;
- public static final int appbar=0x7f0b006b;
- public static final int arrowQuery=0x7f0b0078;
- public static final int arrowTheory=0x7f0b0075;
- public static final int beginning=0x7f0b0031;
- public static final int body=0x7f0b00bc;
- public static final int bottom=0x7f0b001d;
- public static final int btnClear=0x7f0b00a2;
- public static final int btnDeleteQ=0x7f0b008c;
- public static final int btnDeleteT=0x7f0b008b;
- public static final int btnEditPath=0x7f0b008e;
- public static final int btnExecute=0x7f0b00a3;
- public static final int btnNext=0x7f0b00a7;
- public static final int buttonAdd=0x7f0b0081;
- public static final int buttonBrowse=0x7f0b007f;
- public static final int buttonPanel=0x7f0b0044;
- public static final int buttonRemove=0x7f0b0080;
- public static final int buttonhost=0x7f0b00a1;
- public static final int cancel_action=0x7f0b00ac;
- public static final int center=0x7f0b001e;
- public static final int center_horizontal=0x7f0b001f;
- public static final int center_vertical=0x7f0b0020;
- public static final int checkbox=0x7f0b0052;
- public static final int chronometer=0x7f0b00b2;
- public static final int clip_horizontal=0x7f0b002c;
- public static final int clip_vertical=0x7f0b002d;
- public static final int collapseActionView=0x7f0b0034;
- public static final int confirm=0x7f0b00bd;
- public static final int contentPanel=0x7f0b004a;
- public static final int content_frame=0x7f0b00a9;
- public static final int custom=0x7f0b0050;
- public static final int customPanel=0x7f0b004f;
- public static final int decor_content_parent=0x7f0b0058;
- public static final int default_activity_button=0x7f0b0040;
- public static final int delete_theory=0x7f0b00c8;
- public static final int design_bottom_sheet=0x7f0b0092;
- public static final int design_menu_item_action_area=0x7f0b0099;
- public static final int design_menu_item_action_area_stub=0x7f0b0098;
- public static final int design_menu_item_text=0x7f0b0097;
- public static final int design_navigation_view=0x7f0b0096;
- public static final int disableHome=0x7f0b000e;
- public static final int drawer_layout=0x7f0b00a8;
- public static final int editText=0x7f0b00a0;
- public static final int edit_query=0x7f0b005c;
- public static final int edit_theory=0x7f0b00c6;
- public static final int end=0x7f0b0021;
- public static final int end_padder=0x7f0b00b7;
- public static final int enterAlways=0x7f0b0015;
- public static final int enterAlwaysCollapsed=0x7f0b0016;
- public static final int etBody=0x7f0b006a;
- public static final int etTitle=0x7f0b0069;
- public static final int exitUntilCollapsed=0x7f0b0017;
- public static final int expand_activities_button=0x7f0b003e;
- public static final int expanded_menu=0x7f0b0051;
- public static final int export_theory=0x7f0b00c7;
- public static final int fill=0x7f0b002e;
- public static final int fill_horizontal=0x7f0b002f;
- public static final int fill_vertical=0x7f0b0022;
- public static final int find=0x7f0b00c9;
- public static final int fixed=0x7f0b0038;
- public static final int historyButton=0x7f0b0070;
- public static final int historyLabel=0x7f0b0085;
- public static final int home=0x7f0b0004;
- public static final int homeAsUp=0x7f0b000f;
- public static final int icon=0x7f0b0042;
- public static final int ifRoom=0x7f0b0035;
- public static final int image=0x7f0b003f;
- public static final int import_library=0x7f0b00bf;
- public static final int import_theory=0x7f0b00c1;
- public static final int info=0x7f0b00b6;
- public static final int infoQuery=0x7f0b0077;
- public static final int infoTheory=0x7f0b0074;
- public static final int item_icon_imgview=0x7f0b009a;
- public static final int item_name_txtview=0x7f0b009b;
- public static final int item_touch_helper_previous_elevation=0x7f0b0005;
- public static final int labelLibraryFile=0x7f0b007e;
- public static final int labelLibraryFullName=0x7f0b007c;
- public static final int left=0x7f0b0023;
- public static final int left_drawer=0x7f0b00aa;
- public static final int librariesList=0x7f0b0083;
- public static final int libraryButton=0x7f0b006f;
- public static final int libraryNameEditText=0x7f0b007d;
- public static final int library_manager=0x7f0b00c3;
- public static final int line1=0x7f0b00b0;
- public static final int line3=0x7f0b00b4;
- public static final int linearLayout1=0x7f0b007b;
- public static final int listMode=0x7f0b000b;
- public static final int listViewQueries=0x7f0b009c;
- public static final int listViewTheories=0x7f0b009d;
- public static final int list_item=0x7f0b0041;
- public static final int loadedLibraries=0x7f0b0082;
- public static final int media_actions=0x7f0b00ae;
- public static final int middle=0x7f0b0032;
- public static final int mini=0x7f0b0030;
- public static final int multiply=0x7f0b0027;
- public static final int navigation_header_container=0x7f0b0095;
- public static final int never=0x7f0b0036;
- public static final int new_theory=0x7f0b00c0;
- public static final int none=0x7f0b0010;
- public static final int normal=0x7f0b000c;
- public static final int outputView=0x7f0b00a6;
- public static final int pager=0x7f0b006e;
- public static final int parallax=0x7f0b001b;
- public static final int parentPanel=0x7f0b0046;
- public static final int pin=0x7f0b001c;
- public static final int progress_circular=0x7f0b0006;
- public static final int progress_horizontal=0x7f0b0007;
- public static final int radio=0x7f0b0054;
- public static final int right=0x7f0b0024;
- public static final int screen=0x7f0b0028;
- public static final int scroll=0x7f0b0018;
- public static final int scrollIndicatorDown=0x7f0b004e;
- public static final int scrollIndicatorUp=0x7f0b004b;
- public static final int scrollView=0x7f0b004c;
- public static final int scrollable=0x7f0b0039;
- public static final int search_badge=0x7f0b005e;
- public static final int search_bar=0x7f0b005d;
- public static final int search_button=0x7f0b005f;
- public static final int search_close_btn=0x7f0b0064;
- public static final int search_edit_frame=0x7f0b0060;
- public static final int search_go_btn=0x7f0b0066;
- public static final int search_mag_icon=0x7f0b0061;
- public static final int search_plate=0x7f0b0062;
- public static final int search_src_text=0x7f0b0063;
- public static final int search_voice_btn=0x7f0b0067;
- public static final int select_dialog_listview=0x7f0b0068;
- public static final int settingsButton=0x7f0b0071;
- public static final int settingsLabel=0x7f0b008d;
- public static final int share_theory=0x7f0b00c5;
- public static final int shortcut=0x7f0b0053;
- public static final int showCustom=0x7f0b0011;
- public static final int showHome=0x7f0b0012;
- public static final int showTitle=0x7f0b0013;
- public static final int snackbar_action=0x7f0b0094;
- public static final int snackbar_text=0x7f0b0093;
- public static final int snap=0x7f0b0019;
- public static final int solutionView=0x7f0b00a5;
- public static final int spacer=0x7f0b0045;
- public static final int split_action_bar=0x7f0b0008;
- public static final int src_atop=0x7f0b0029;
- public static final int src_in=0x7f0b002a;
- public static final int src_over=0x7f0b002b;
- public static final int start=0x7f0b0025;
- public static final int statusView=0x7f0b0084;
- public static final int status_bar_latest_event_content=0x7f0b00ad;
- public static final int submit_area=0x7f0b0065;
- public static final int switchQueries=0x7f0b008a;
- public static final int switchShare=0x7f0b0090;
- public static final int switchTheories=0x7f0b0088;
- public static final int tabMode=0x7f0b000d;
- public static final int tab_layout=0x7f0b006d;
- public static final int tabhost=0x7f0b00a4;
- public static final int tableHistory=0x7f0b0086;
- public static final int text=0x7f0b00b5;
- public static final int text1=0x7f0b00b8;
- public static final int text2=0x7f0b00b3;
- public static final int textSpacerNoButtons=0x7f0b004d;
- public static final int textView=0x7f0b009e;
- public static final int theoriesListD=0x7f0b00bb;
- public static final int theories_list=0x7f0b00c2;
- public static final int time=0x7f0b00b1;
- public static final int title=0x7f0b0043;
- public static final int titleQuery=0x7f0b009f;
- public static final int title_template=0x7f0b0048;
- public static final int toolbar=0x7f0b006c;
- public static final int top=0x7f0b0026;
- public static final int topPanel=0x7f0b0047;
- public static final int touch_outside=0x7f0b0091;
- public static final int tvDbTheories=0x7f0b00b9;
- public static final int tvEmpty=0x7f0b00ba;
- public static final int tvQuery=0x7f0b0076;
- public static final int tvSvQueries=0x7f0b0089;
- public static final int tvSvShare=0x7f0b008f;
- public static final int tvSvTheories=0x7f0b0087;
- public static final int tvTheory=0x7f0b0073;
- public static final int tvTheorySelected=0x7f0b0079;
- public static final int tvVersion=0x7f0b007a;
- public static final int up=0x7f0b0009;
- public static final int useLogo=0x7f0b0014;
- public static final int view_offset_helper=0x7f0b000a;
- public static final int webButton=0x7f0b0072;
- public static final int withText=0x7f0b0037;
- public static final int wrap_content=0x7f0b001a;
- }
- public static final class integer {
- public static final int abc_config_activityDefaultDur=0x7f090002;
- public static final int abc_config_activityShortDur=0x7f090003;
- public static final int abc_max_action_buttons=0x7f090000;
- public static final int bottom_sheet_slide_duration=0x7f090004;
- public static final int cancel_button_image_alpha=0x7f090005;
- public static final int design_snackbar_text_max_lines=0x7f090001;
- public static final int status_bar_notification_info_maxnum=0x7f090006;
- }
- public static final class layout {
- public static final int abc_action_bar_title_item=0x7f030000;
- public static final int abc_action_bar_up_container=0x7f030001;
- public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
- public static final int abc_action_menu_item_layout=0x7f030003;
- public static final int abc_action_menu_layout=0x7f030004;
- public static final int abc_action_mode_bar=0x7f030005;
- public static final int abc_action_mode_close_item_material=0x7f030006;
- public static final int abc_activity_chooser_view=0x7f030007;
- public static final int abc_activity_chooser_view_list_item=0x7f030008;
- public static final int abc_alert_dialog_button_bar_material=0x7f030009;
- public static final int abc_alert_dialog_material=0x7f03000a;
- public static final int abc_dialog_title_material=0x7f03000b;
- public static final int abc_expanded_menu_layout=0x7f03000c;
- public static final int abc_list_menu_item_checkbox=0x7f03000d;
- public static final int abc_list_menu_item_icon=0x7f03000e;
- public static final int abc_list_menu_item_layout=0x7f03000f;
- public static final int abc_list_menu_item_radio=0x7f030010;
- public static final int abc_popup_menu_item_layout=0x7f030011;
- public static final int abc_screen_content_include=0x7f030012;
- public static final int abc_screen_simple=0x7f030013;
- public static final int abc_screen_simple_overlay_action_mode=0x7f030014;
- public static final int abc_screen_toolbar=0x7f030015;
- public static final int abc_search_dropdown_item_icons_2line=0x7f030016;
- public static final int abc_search_view=0x7f030017;
- public static final int abc_select_dialog_material=0x7f030018;
- public static final int activity_description=0x7f030019;
- public static final int activity_history=0x7f03001a;
- public static final int activity_home=0x7f03001b;
- public static final int activity_import=0x7f03001c;
- public static final int activity_library_import=0x7f03001d;
- public static final int activity_library_manager=0x7f03001e;
- public static final int activity_search=0x7f03001f;
- public static final int activity_settings=0x7f030020;
- public static final int btn_text=0x7f030021;
- public static final int design_bottom_sheet_dialog=0x7f030022;
- public static final int design_layout_snackbar=0x7f030023;
- public static final int design_layout_snackbar_include=0x7f030024;
- public static final int design_layout_tab_icon=0x7f030025;
- public static final int design_layout_tab_text=0x7f030026;
- public static final int design_menu_item_action_area=0x7f030027;
- public static final int design_navigation_item=0x7f030028;
- public static final int design_navigation_item_header=0x7f030029;
- public static final int design_navigation_item_separator=0x7f03002a;
- public static final int design_navigation_item_subheader=0x7f03002b;
- public static final int design_navigation_menu=0x7f03002c;
- public static final int design_navigation_menu_item=0x7f03002d;
- public static final int drawer_list_item=0x7f03002e;
- public static final int file_row=0x7f03002f;
- public static final int fragment_query=0x7f030030;
- public static final int fragment_theory=0x7f030031;
- public static final int list_item=0x7f030032;
- public static final int list_libraries=0x7f030033;
- public static final int list_view_header_layout=0x7f030034;
- public static final int main=0x7f030035;
- public static final int navigation_drawer_base_layout=0x7f030036;
- public static final int notification_media_action=0x7f030037;
- public static final int notification_media_cancel_action=0x7f030038;
- public static final int notification_template_big_media=0x7f030039;
- public static final int notification_template_big_media_narrow=0x7f03003a;
- public static final int notification_template_lines=0x7f03003b;
- public static final int notification_template_media=0x7f03003c;
- public static final int notification_template_part_chronometer=0x7f03003d;
- public static final int notification_template_part_time=0x7f03003e;
- public static final int select_dialog_item_material=0x7f03003f;
- public static final int select_dialog_multichoice_material=0x7f030040;
- public static final int select_dialog_singlechoice_material=0x7f030041;
- public static final int splashscreen=0x7f030042;
- public static final int support_simple_spinner_dropdown_item=0x7f030043;
- public static final int tab_layout=0x7f030044;
- public static final int theories_list=0x7f030045;
- public static final int theories_row=0x7f030046;
- public static final int theory_edit=0x7f030047;
- }
- public static final class menu {
- public static final int library_import=0x7f0c0000;
- public static final int library_manager=0x7f0c0001;
- public static final int list_page_menu=0x7f0c0002;
- public static final int main_page_menu=0x7f0c0003;
- public static final int menu_desc_theory=0x7f0c0004;
- public static final int menu_description=0x7f0c0005;
- public static final int menu_history=0x7f0c0006;
- }
- public static final class string {
- public static final int abc_action_bar_home_description=0x7f050000;
- public static final int abc_action_bar_home_description_format=0x7f050001;
- public static final int abc_action_bar_home_subtitle_description_format=0x7f050002;
- public static final int abc_action_bar_up_description=0x7f050003;
- public static final int abc_action_menu_overflow_description=0x7f050004;
- public static final int abc_action_mode_done=0x7f050005;
- public static final int abc_activity_chooser_view_see_all=0x7f050006;
- public static final int abc_activitychooserview_choose_application=0x7f050007;
- public static final int abc_capital_off=0x7f050008;
- public static final int abc_capital_on=0x7f050009;
- public static final int abc_search_hint=0x7f05000a;
- public static final int abc_searchview_description_clear=0x7f05000b;
- public static final int abc_searchview_description_query=0x7f05000c;
- public static final int abc_searchview_description_search=0x7f05000d;
- public static final int abc_searchview_description_submit=0x7f05000e;
- public static final int abc_searchview_description_voice=0x7f05000f;
- public static final int abc_shareactionprovider_share_with=0x7f050010;
- public static final int abc_shareactionprovider_share_with_application=0x7f050011;
- public static final int abc_toolbar_collapse_description=0x7f050012;
- public static final int about=0x7f050014;
- public static final int action_example=0x7f050015;
- public static final int action_settings=0x7f050016;
- public static final int app_name=0x7f050017;
- public static final int appbar_scrolling_view_behavior=0x7f050018;
- public static final int body=0x7f050019;
- public static final int bottom_sheet_behavior=0x7f05001a;
- public static final int character_counter_pattern=0x7f05001b;
- public static final int close_drawer=0x7f05001c;
- public static final int confirm=0x7f05001d;
- public static final int current_dir=0x7f05001e;
- public static final int delete_questionQ=0x7f05001f;
- public static final int delete_questionT=0x7f050020;
- public static final int dummy_string=0x7f050021;
- public static final int edit_path=0x7f050022;
- public static final int edit_theory=0x7f050023;
- public static final int export_theory=0x7f050024;
- public static final int find=0x7f050025;
- public static final int hello=0x7f050026;
- public static final int hello_blank_fragment=0x7f050027;
- public static final int history=0x7f050028;
- public static final int history_label=0x7f050029;
- public static final int home=0x7f05002a;
- public static final int import_library=0x7f05002b;
- public static final int import_theory=0x7f05002c;
- public static final int library=0x7f05002d;
- public static final int library_manager=0x7f05002e;
- public static final int menu_delete=0x7f05002f;
- public static final int menu_insert=0x7f050030;
- public static final int menu_select=0x7f050031;
- public static final int navigation_drawer_close=0x7f050032;
- public static final int navigation_drawer_open=0x7f050033;
- public static final int new_theory=0x7f050034;
- public static final int no_theories=0x7f050035;
- public static final int open_drawer=0x7f050036;
- public static final int query=0x7f050037;
- public static final int search_hint=0x7f050038;
- public static final int settings=0x7f050039;
- public static final int settings_label=0x7f05003a;
- public static final int share_theory=0x7f05003b;
- public static final int status_bar_notification_info_overflow=0x7f050013;
- public static final int textButtonAdd=0x7f05003c;
- public static final int textButtonBrowse=0x7f05003d;
- public static final int textButtonRemove=0x7f05003e;
- public static final int textLibraryFile=0x7f05003f;
- public static final int textLibraryFullName=0x7f050040;
- public static final int textLoadedLibraries=0x7f050041;
- public static final int textStatus=0x7f050042;
- public static final int theories_list=0x7f050043;
- public static final int theory=0x7f050044;
- public static final int theoryT=0x7f050045;
- public static final int title=0x7f050046;
- public static final int title_activity_base=0x7f050047;
- public static final int title_activity_base2=0x7f050048;
- public static final int title_activity_description=0x7f050049;
- public static final int title_activity_history=0x7f05004a;
- public static final int title_activity_search=0x7f05004b;
- public static final int title_activity_settings=0x7f05004c;
- public static final int title_activity_theory_description=0x7f05004d;
- public static final int title_activity_theory_list=0x7f05004e;
- public static final int title_import_library=0x7f05004f;
- public static final int title_import_theory=0x7f050050;
- public static final int title_libraries=0x7f050051;
- public static final int title_new_edit_activity=0x7f050052;
- public static final int title_section1=0x7f050053;
- public static final int title_section2=0x7f050054;
- public static final int title_section3=0x7f050055;
- public static final int up_one_level=0x7f050056;
- public static final int web=0x7f050057;
- }
- public static final class style {
- public static final int AlertDialog_AppCompat=0x7f080087;
- public static final int AlertDialog_AppCompat_Light=0x7f080088;
- public static final int Animation_AppCompat_Dialog=0x7f080089;
- public static final int Animation_AppCompat_DropDownUp=0x7f08008a;
- public static final int Animation_Design_BottomSheetDialog=0x7f08008b;
- public static final int AppTheme=0x7f08008c;
- public static final int AppTheme_AppBarOverlay=0x7f08008d;
- public static final int AppTheme_NoActionBar=0x7f08008e;
- public static final int AppTheme_PopupOverlay=0x7f08008f;
- public static final int Base_AlertDialog_AppCompat=0x7f080090;
- public static final int Base_AlertDialog_AppCompat_Light=0x7f080091;
- public static final int Base_Animation_AppCompat_Dialog=0x7f080092;
- public static final int Base_Animation_AppCompat_DropDownUp=0x7f080093;
- public static final int Base_DialogWindowTitle_AppCompat=0x7f080094;
- public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080095;
- public static final int Base_TextAppearance_AppCompat=0x7f080037;
- public static final int Base_TextAppearance_AppCompat_Body1=0x7f080038;
- public static final int Base_TextAppearance_AppCompat_Body2=0x7f080039;
- public static final int Base_TextAppearance_AppCompat_Button=0x7f080021;
- public static final int Base_TextAppearance_AppCompat_Caption=0x7f08003a;
- public static final int Base_TextAppearance_AppCompat_Display1=0x7f08003b;
- public static final int Base_TextAppearance_AppCompat_Display2=0x7f08003c;
- public static final int Base_TextAppearance_AppCompat_Display3=0x7f08003d;
- public static final int Base_TextAppearance_AppCompat_Display4=0x7f08003e;
- public static final int Base_TextAppearance_AppCompat_Headline=0x7f08003f;
- public static final int Base_TextAppearance_AppCompat_Inverse=0x7f08000c;
- public static final int Base_TextAppearance_AppCompat_Large=0x7f080040;
- public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f08000d;
- public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080041;
- public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080042;
- public static final int Base_TextAppearance_AppCompat_Medium=0x7f080043;
- public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f08000e;
- public static final int Base_TextAppearance_AppCompat_Menu=0x7f080044;
- public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080096;
- public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f080045;
- public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f080046;
- public static final int Base_TextAppearance_AppCompat_Small=0x7f080047;
- public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f08000f;
- public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080048;
- public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080010;
- public static final int Base_TextAppearance_AppCompat_Title=0x7f080049;
- public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080011;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080080;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f08004a;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f08004b;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f08004c;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f08004d;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f08004e;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f08004f;
- public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080050;
- public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080081;
- public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080097;
- public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080051;
- public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080052;
- public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f080053;
- public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f080054;
- public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080098;
- public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f080055;
- public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f080056;
- public static final int Base_Theme_AppCompat=0x7f080057;
- public static final int Base_Theme_AppCompat_CompactMenu=0x7f080099;
- public static final int Base_Theme_AppCompat_Dialog=0x7f080012;
- public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f08009a;
- public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08009b;
- public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08009c;
- public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080002;
- public static final int Base_Theme_AppCompat_Light=0x7f080058;
- public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08009d;
- public static final int Base_Theme_AppCompat_Light_Dialog=0x7f080013;
- public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08009e;
- public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08009f;
- public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800a0;
- public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080003;
- public static final int Base_ThemeOverlay_AppCompat=0x7f0800a1;
- public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0800a2;
- public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0800a3;
- public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800a4;
- public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0800a5;
- public static final int Base_V11_Theme_AppCompat_Dialog=0x7f080014;
- public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f080015;
- public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f08001d;
- public static final int Base_V12_Widget_AppCompat_EditText=0x7f08001e;
- public static final int Base_V21_Theme_AppCompat=0x7f080059;
- public static final int Base_V21_Theme_AppCompat_Dialog=0x7f08005a;
- public static final int Base_V21_Theme_AppCompat_Light=0x7f08005b;
- public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f08005c;
- public static final int Base_V22_Theme_AppCompat=0x7f08007e;
- public static final int Base_V22_Theme_AppCompat_Light=0x7f08007f;
- public static final int Base_V23_Theme_AppCompat=0x7f080082;
- public static final int Base_V23_Theme_AppCompat_Light=0x7f080083;
- public static final int Base_V7_Theme_AppCompat=0x7f0800a6;
- public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0800a7;
- public static final int Base_V7_Theme_AppCompat_Light=0x7f0800a8;
- public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0800a9;
- public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0800aa;
- public static final int Base_V7_Widget_AppCompat_EditText=0x7f0800ab;
- public static final int Base_Widget_AppCompat_ActionBar=0x7f0800ac;
- public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0800ad;
- public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0800ae;
- public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f08005d;
- public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f08005e;
- public static final int Base_Widget_AppCompat_ActionButton=0x7f08005f;
- public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080060;
- public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080061;
- public static final int Base_Widget_AppCompat_ActionMode=0x7f0800af;
- public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800b0;
- public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f08001f;
- public static final int Base_Widget_AppCompat_Button=0x7f080062;
- public static final int Base_Widget_AppCompat_Button_Borderless=0x7f080063;
- public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f080064;
- public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800b1;
- public static final int Base_Widget_AppCompat_Button_Colored=0x7f080084;
- public static final int Base_Widget_AppCompat_Button_Small=0x7f080065;
- public static final int Base_Widget_AppCompat_ButtonBar=0x7f080066;
- public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800b2;
- public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080067;
- public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080068;
- public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800b3;
- public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000;
- public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800b4;
- public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080069;
- public static final int Base_Widget_AppCompat_EditText=0x7f080020;
- public static final int Base_Widget_AppCompat_ImageButton=0x7f08006a;
- public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800b5;
- public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800b6;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800b7;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f08006b;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08006c;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f08006d;
- public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f08006e;
- public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08006f;
- public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080070;
- public static final int Base_Widget_AppCompat_ListView=0x7f080071;
- public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080072;
- public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080073;
- public static final int Base_Widget_AppCompat_PopupMenu=0x7f080074;
- public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f080075;
- public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800b8;
- public static final int Base_Widget_AppCompat_ProgressBar=0x7f080016;
- public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080017;
- public static final int Base_Widget_AppCompat_RatingBar=0x7f080076;
- public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f080085;
- public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f080086;
- public static final int Base_Widget_AppCompat_SearchView=0x7f0800b9;
- public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800ba;
- public static final int Base_Widget_AppCompat_SeekBar=0x7f080077;
- public static final int Base_Widget_AppCompat_Spinner=0x7f080078;
- public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080004;
- public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080079;
- public static final int Base_Widget_AppCompat_Toolbar=0x7f0800bb;
- public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08007a;
- public static final int Base_Widget_Design_TabLayout=0x7f0800bc;
- public static final int MyActionBar=0x7f0800bd;
- public static final int MyOverflowMenu=0x7f0800be;
- public static final int MyTheme=0x7f0800bf;
- public static final int MyTitleTextStyle=0x7f0800c0;
- public static final int Platform_AppCompat=0x7f080018;
- public static final int Platform_AppCompat_Light=0x7f080019;
- public static final int Platform_ThemeOverlay_AppCompat=0x7f08007b;
- public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f08007c;
- public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f08007d;
- public static final int Platform_V11_AppCompat=0x7f08001a;
- public static final int Platform_V11_AppCompat_Light=0x7f08001b;
- public static final int Platform_V14_AppCompat=0x7f080022;
- public static final int Platform_V14_AppCompat_Light=0x7f080023;
- public static final int Platform_Widget_AppCompat_Spinner=0x7f08001c;
- public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080029;
- public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f08002a;
- public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f08002b;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f08002c;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f08002d;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f08002e;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f08002f;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080030;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080031;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f080032;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f080033;
- public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f080034;
- public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f080035;
- public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f080036;
- public static final int TextAppearance_AppCompat=0x7f0800c1;
- public static final int TextAppearance_AppCompat_Body1=0x7f0800c2;
- public static final int TextAppearance_AppCompat_Body2=0x7f0800c3;
- public static final int TextAppearance_AppCompat_Button=0x7f0800c4;
- public static final int TextAppearance_AppCompat_Caption=0x7f0800c5;
- public static final int TextAppearance_AppCompat_Display1=0x7f0800c6;
- public static final int TextAppearance_AppCompat_Display2=0x7f0800c7;
- public static final int TextAppearance_AppCompat_Display3=0x7f0800c8;
- public static final int TextAppearance_AppCompat_Display4=0x7f0800c9;
- public static final int TextAppearance_AppCompat_Headline=0x7f0800ca;
- public static final int TextAppearance_AppCompat_Inverse=0x7f0800cb;
- public static final int TextAppearance_AppCompat_Large=0x7f0800cc;
- public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800cd;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800ce;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800cf;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800d0;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800d1;
- public static final int TextAppearance_AppCompat_Medium=0x7f0800d2;
- public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800d3;
- public static final int TextAppearance_AppCompat_Menu=0x7f0800d4;
- public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800d5;
- public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800d6;
- public static final int TextAppearance_AppCompat_Small=0x7f0800d7;
- public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800d8;
- public static final int TextAppearance_AppCompat_Subhead=0x7f0800d9;
- public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800da;
- public static final int TextAppearance_AppCompat_Title=0x7f0800db;
- public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800dc;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800dd;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800de;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800df;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800e0;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800e1;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800e2;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800e3;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800e4;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800e5;
- public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800e6;
- public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800e7;
- public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800e8;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800e9;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800ea;
- public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800eb;
- public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800ec;
- public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0800ed;
- public static final int TextAppearance_Design_Counter=0x7f0800ee;
- public static final int TextAppearance_Design_Counter_Overflow=0x7f0800ef;
- public static final int TextAppearance_Design_Error=0x7f0800f0;
- public static final int TextAppearance_Design_Hint=0x7f0800f1;
- public static final int TextAppearance_Design_Snackbar_Message=0x7f0800f2;
- public static final int TextAppearance_Design_Tab=0x7f0800f3;
- public static final int TextAppearance_StatusBar_EventContent=0x7f080024;
- public static final int TextAppearance_StatusBar_EventContent_Info=0x7f080025;
- public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f080026;
- public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080027;
- public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080028;
- public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800f4;
- public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800f5;
- public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800f6;
- public static final int Theme_AppCompat=0x7f0800f7;
- public static final int Theme_AppCompat_CompactMenu=0x7f0800f8;
- public static final int Theme_AppCompat_DayNight=0x7f080005;
- public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f080006;
- public static final int Theme_AppCompat_DayNight_Dialog=0x7f080007;
- public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f080008;
- public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f080009;
- public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f08000a;
- public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f08000b;
- public static final int Theme_AppCompat_Dialog=0x7f0800f9;
- public static final int Theme_AppCompat_Dialog_Alert=0x7f0800fa;
- public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800fb;
- public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800fc;
- public static final int Theme_AppCompat_Light=0x7f0800fd;
- public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800fe;
- public static final int Theme_AppCompat_Light_Dialog=0x7f0800ff;
- public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f080100;
- public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f080101;
- public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f080102;
- public static final int Theme_AppCompat_Light_NoActionBar=0x7f080103;
- public static final int Theme_AppCompat_NoActionBar=0x7f080104;
- public static final int Theme_Design=0x7f080105;
- public static final int Theme_Design_BottomSheetDialog=0x7f080106;
- public static final int Theme_Design_Light=0x7f080107;
- public static final int Theme_Design_Light_BottomSheetDialog=0x7f080108;
- public static final int Theme_Design_Light_NoActionBar=0x7f080109;
- public static final int Theme_Design_NoActionBar=0x7f08010a;
- public static final int ThemeOverlay_AppCompat=0x7f08010b;
- public static final int ThemeOverlay_AppCompat_ActionBar=0x7f08010c;
- public static final int ThemeOverlay_AppCompat_Dark=0x7f08010d;
- public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f08010e;
- public static final int ThemeOverlay_AppCompat_Light=0x7f08010f;
- public static final int Widget_AppCompat_ActionBar=0x7f080110;
- public static final int Widget_AppCompat_ActionBar_Solid=0x7f080111;
- public static final int Widget_AppCompat_ActionBar_TabBar=0x7f080112;
- public static final int Widget_AppCompat_ActionBar_TabText=0x7f080113;
- public static final int Widget_AppCompat_ActionBar_TabView=0x7f080114;
- public static final int Widget_AppCompat_ActionButton=0x7f080115;
- public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f080116;
- public static final int Widget_AppCompat_ActionButton_Overflow=0x7f080117;
- public static final int Widget_AppCompat_ActionMode=0x7f080118;
- public static final int Widget_AppCompat_ActivityChooserView=0x7f080119;
- public static final int Widget_AppCompat_AutoCompleteTextView=0x7f08011a;
- public static final int Widget_AppCompat_Button=0x7f08011b;
- public static final int Widget_AppCompat_Button_Borderless=0x7f08011c;
- public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f08011d;
- public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f08011e;
- public static final int Widget_AppCompat_Button_Colored=0x7f08011f;
- public static final int Widget_AppCompat_Button_Small=0x7f080120;
- public static final int Widget_AppCompat_ButtonBar=0x7f080121;
- public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080122;
- public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080123;
- public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f080124;
- public static final int Widget_AppCompat_CompoundButton_Switch=0x7f080125;
- public static final int Widget_AppCompat_DrawerArrowToggle=0x7f080126;
- public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f080127;
- public static final int Widget_AppCompat_EditText=0x7f080128;
- public static final int Widget_AppCompat_ImageButton=0x7f080129;
- public static final int Widget_AppCompat_Light_ActionBar=0x7f08012a;
- public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f08012b;
- public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f08012c;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08012d;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08012e;
- public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f08012f;
- public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080130;
- public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080131;
- public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080132;
- public static final int Widget_AppCompat_Light_ActionButton=0x7f080133;
- public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080134;
- public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080135;
- public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080136;
- public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f080137;
- public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080138;
- public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080139;
- public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f08013a;
- public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f08013b;
- public static final int Widget_AppCompat_Light_PopupMenu=0x7f08013c;
- public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08013d;
- public static final int Widget_AppCompat_Light_SearchView=0x7f08013e;
- public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08013f;
- public static final int Widget_AppCompat_ListPopupWindow=0x7f080140;
- public static final int Widget_AppCompat_ListView=0x7f080141;
- public static final int Widget_AppCompat_ListView_DropDown=0x7f080142;
- public static final int Widget_AppCompat_ListView_Menu=0x7f080143;
- public static final int Widget_AppCompat_PopupMenu=0x7f080144;
- public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f080145;
- public static final int Widget_AppCompat_PopupWindow=0x7f080146;
- public static final int Widget_AppCompat_ProgressBar=0x7f080147;
- public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080148;
- public static final int Widget_AppCompat_RatingBar=0x7f080149;
- public static final int Widget_AppCompat_RatingBar_Indicator=0x7f08014a;
- public static final int Widget_AppCompat_RatingBar_Small=0x7f08014b;
- public static final int Widget_AppCompat_SearchView=0x7f08014c;
- public static final int Widget_AppCompat_SearchView_ActionBar=0x7f08014d;
- public static final int Widget_AppCompat_SeekBar=0x7f08014e;
- public static final int Widget_AppCompat_Spinner=0x7f08014f;
- public static final int Widget_AppCompat_Spinner_DropDown=0x7f080150;
- public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080151;
- public static final int Widget_AppCompat_Spinner_Underlined=0x7f080152;
- public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f080153;
- public static final int Widget_AppCompat_Toolbar=0x7f080154;
- public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f080155;
- public static final int Widget_Design_AppBarLayout=0x7f080156;
- public static final int Widget_Design_BottomSheet_Modal=0x7f080157;
- public static final int Widget_Design_CollapsingToolbar=0x7f080158;
- public static final int Widget_Design_CoordinatorLayout=0x7f080159;
- public static final int Widget_Design_FloatingActionButton=0x7f08015a;
- public static final int Widget_Design_NavigationView=0x7f08015b;
- public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f08015c;
- public static final int Widget_Design_Snackbar=0x7f08015d;
- public static final int Widget_Design_TabLayout=0x7f080001;
- public static final int Widget_Design_TextInputLayout=0x7f08015e;
- public static final int titleStyle=0x7f08015f;
- }
- public static final class styleable {
- /** Attributes that can be used with a ActionBar.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ActionBar_background alice.tuprologx.android.tuprologmobile:background}
- {@link #ActionBar_backgroundSplit alice.tuprologx.android.tuprologmobile:backgroundSplit}
- {@link #ActionBar_backgroundStacked alice.tuprologx.android.tuprologmobile:backgroundStacked}
- {@link #ActionBar_contentInsetEnd alice.tuprologx.android.tuprologmobile:contentInsetEnd}
- {@link #ActionBar_contentInsetLeft alice.tuprologx.android.tuprologmobile:contentInsetLeft}
- {@link #ActionBar_contentInsetRight alice.tuprologx.android.tuprologmobile:contentInsetRight}
- {@link #ActionBar_contentInsetStart alice.tuprologx.android.tuprologmobile:contentInsetStart}
- {@link #ActionBar_customNavigationLayout alice.tuprologx.android.tuprologmobile:customNavigationLayout}
- {@link #ActionBar_displayOptions alice.tuprologx.android.tuprologmobile:displayOptions}
- {@link #ActionBar_divider alice.tuprologx.android.tuprologmobile:divider}
- {@link #ActionBar_elevation alice.tuprologx.android.tuprologmobile:elevation}
- {@link #ActionBar_height alice.tuprologx.android.tuprologmobile:height}
- {@link #ActionBar_hideOnContentScroll alice.tuprologx.android.tuprologmobile:hideOnContentScroll}
- {@link #ActionBar_homeAsUpIndicator alice.tuprologx.android.tuprologmobile:homeAsUpIndicator}
- {@link #ActionBar_homeLayout alice.tuprologx.android.tuprologmobile:homeLayout}
- {@link #ActionBar_icon alice.tuprologx.android.tuprologmobile:icon}
- {@link #ActionBar_indeterminateProgressStyle alice.tuprologx.android.tuprologmobile:indeterminateProgressStyle}
- {@link #ActionBar_itemPadding alice.tuprologx.android.tuprologmobile:itemPadding}
- {@link #ActionBar_logo alice.tuprologx.android.tuprologmobile:logo}
- {@link #ActionBar_navigationMode alice.tuprologx.android.tuprologmobile:navigationMode}
- {@link #ActionBar_popupTheme alice.tuprologx.android.tuprologmobile:popupTheme}
- {@link #ActionBar_progressBarPadding alice.tuprologx.android.tuprologmobile:progressBarPadding}
- {@link #ActionBar_progressBarStyle alice.tuprologx.android.tuprologmobile:progressBarStyle}
- {@link #ActionBar_subtitle alice.tuprologx.android.tuprologmobile:subtitle}
- {@link #ActionBar_subtitleTextStyle alice.tuprologx.android.tuprologmobile:subtitleTextStyle}
- {@link #ActionBar_title alice.tuprologx.android.tuprologmobile:title}
- {@link #ActionBar_titleTextStyle alice.tuprologx.android.tuprologmobile:titleTextStyle}
-
- @see #ActionBar_background
- @see #ActionBar_backgroundSplit
- @see #ActionBar_backgroundStacked
- @see #ActionBar_contentInsetEnd
- @see #ActionBar_contentInsetLeft
- @see #ActionBar_contentInsetRight
- @see #ActionBar_contentInsetStart
- @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 = {
- 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005,
- 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
- 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
- 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
- 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
- 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
- 0x7f01001a, 0x7f01001b, 0x7f010057
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#background}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:background
- */
- public static final int ActionBar_background = 10;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:backgroundSplit
- */
- public static final int ActionBar_backgroundSplit = 12;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:backgroundStacked
- */
- public static final int ActionBar_backgroundStacked = 11;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetEnd}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetEnd
- */
- public static final int ActionBar_contentInsetEnd = 21;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetLeft}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetLeft
- */
- public static final int ActionBar_contentInsetLeft = 22;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetRight}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetRight
- */
- public static final int ActionBar_contentInsetRight = 23;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetStart}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetStart
- */
- public static final int ActionBar_contentInsetStart = 20;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#customNavigationLayout}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:customNavigationLayout
- */
- public static final int ActionBar_customNavigationLayout = 13;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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.
-
-
-
-
-Constant Value Description
-none
0
-useLogo
0x1
-showHome
0x2
-homeAsUp
0x4
-showTitle
0x8
-showCustom
0x10
-disableHome
0x20
-
- @attr name alice.tuprologx.android.tuprologmobile:displayOptions
- */
- public static final int ActionBar_displayOptions = 3;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#divider}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:divider
- */
- public static final int ActionBar_divider = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#elevation}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:elevation
- */
- public static final int ActionBar_elevation = 24;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#height}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:height
- */
- public static final int ActionBar_height = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#hideOnContentScroll}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:hideOnContentScroll
- */
- public static final int ActionBar_hideOnContentScroll = 19;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#homeAsUpIndicator}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:homeAsUpIndicator
- */
- public static final int ActionBar_homeAsUpIndicator = 26;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#homeLayout}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:homeLayout
- */
- public static final int ActionBar_homeLayout = 14;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#icon}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:icon
- */
- public static final int ActionBar_icon = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#indeterminateProgressStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:indeterminateProgressStyle
- */
- public static final int ActionBar_indeterminateProgressStyle = 16;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#itemPadding}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:itemPadding
- */
- public static final int ActionBar_itemPadding = 18;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#logo}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:logo
- */
- public static final int ActionBar_logo = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#navigationMode}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-normal
0
-listMode
1
-tabMode
2
-
- @attr name alice.tuprologx.android.tuprologmobile:navigationMode
- */
- public static final int ActionBar_navigationMode = 2;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#popupTheme}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:popupTheme
- */
- public static final int ActionBar_popupTheme = 25;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#progressBarPadding}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:progressBarPadding
- */
- public static final int ActionBar_progressBarPadding = 17;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#progressBarStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:progressBarStyle
- */
- public static final int ActionBar_progressBarStyle = 15;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#subtitle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:subtitle
- */
- public static final int ActionBar_subtitle = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#subtitleTextStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:subtitleTextStyle
- */
- public static final int ActionBar_subtitleTextStyle = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#title}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:title
- */
- public static final int ActionBar_title = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleTextStyle}
- attribute's value can be found in the {@link #ActionBar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:titleTextStyle
- */
- public static final int ActionBar_titleTextStyle = 5;
- /** Attributes that can be used with a ActionBarLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@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.
- @attr name android:layout_gravity
- */
- public static final int ActionBarLayout_android_layout_gravity = 0;
- /** Attributes that can be used with a ActionMenuItemView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@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.
- @attr name android:minWidth
- */
- public static final int ActionMenuItemView_android_minWidth = 0;
- /** Attributes that can be used with a ActionMenuView.
- */
- public static final int[] ActionMenuView = {
-
- };
- /** Attributes that can be used with a ActionMode.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ActionMode_background alice.tuprologx.android.tuprologmobile:background}
- {@link #ActionMode_backgroundSplit alice.tuprologx.android.tuprologmobile:backgroundSplit}
- {@link #ActionMode_closeItemLayout alice.tuprologx.android.tuprologmobile:closeItemLayout}
- {@link #ActionMode_height alice.tuprologx.android.tuprologmobile:height}
- {@link #ActionMode_subtitleTextStyle alice.tuprologx.android.tuprologmobile:subtitleTextStyle}
- {@link #ActionMode_titleTextStyle alice.tuprologx.android.tuprologmobile:titleTextStyle}
-
- @see #ActionMode_background
- @see #ActionMode_backgroundSplit
- @see #ActionMode_closeItemLayout
- @see #ActionMode_height
- @see #ActionMode_subtitleTextStyle
- @see #ActionMode_titleTextStyle
- */
- public static final int[] ActionMode = {
- 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c,
- 0x7f01000e, 0x7f01001c
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#background}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:background
- */
- public static final int ActionMode_background = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:backgroundSplit
- */
- public static final int ActionMode_backgroundSplit = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#closeItemLayout}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:closeItemLayout
- */
- public static final int ActionMode_closeItemLayout = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#height}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:height
- */
- public static final int ActionMode_height = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#subtitleTextStyle}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:subtitleTextStyle
- */
- public static final int ActionMode_subtitleTextStyle = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleTextStyle}
- attribute's value can be found in the {@link #ActionMode} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:titleTextStyle
- */
- public static final int ActionMode_titleTextStyle = 1;
- /** Attributes that can be used with a ActivityChooserView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ActivityChooserView_expandActivityOverflowButtonDrawable alice.tuprologx.android.tuprologmobile:expandActivityOverflowButtonDrawable}
- {@link #ActivityChooserView_initialActivityCount alice.tuprologx.android.tuprologmobile:initialActivityCount}
-
- @see #ActivityChooserView_expandActivityOverflowButtonDrawable
- @see #ActivityChooserView_initialActivityCount
- */
- public static final int[] ActivityChooserView = {
- 0x7f01001d, 0x7f01001e
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandActivityOverflowButtonDrawable}
- attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:expandActivityOverflowButtonDrawable
- */
- public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#initialActivityCount}
- attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:initialActivityCount
- */
- public static final int ActivityChooserView_initialActivityCount = 0;
- /** Attributes that can be used with a AlertDialog.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #AlertDialog_android_layout android:layout}
- {@link #AlertDialog_buttonPanelSideLayout alice.tuprologx.android.tuprologmobile:buttonPanelSideLayout}
- {@link #AlertDialog_listItemLayout alice.tuprologx.android.tuprologmobile:listItemLayout}
- {@link #AlertDialog_listLayout alice.tuprologx.android.tuprologmobile:listLayout}
- {@link #AlertDialog_multiChoiceItemLayout alice.tuprologx.android.tuprologmobile:multiChoiceItemLayout}
- {@link #AlertDialog_singleChoiceItemLayout alice.tuprologx.android.tuprologmobile:singleChoiceItemLayout}
-
- @see #AlertDialog_android_layout
- @see #AlertDialog_buttonPanelSideLayout
- @see #AlertDialog_listItemLayout
- @see #AlertDialog_listLayout
- @see #AlertDialog_multiChoiceItemLayout
- @see #AlertDialog_singleChoiceItemLayout
- */
- public static final int[] AlertDialog = {
- 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021,
- 0x7f010022, 0x7f010023
- };
- /**
- This symbol is the offset where the {@link android.R.attr#layout}
- attribute's value can be found in the {@link #AlertDialog} array.
- @attr name android:layout
- */
- public static final int AlertDialog_android_layout = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonPanelSideLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonPanelSideLayout
- */
- public static final int AlertDialog_buttonPanelSideLayout = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:listItemLayout
- */
- public static final int AlertDialog_listItemLayout = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:listLayout
- */
- public static final int AlertDialog_listLayout = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#multiChoiceItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:multiChoiceItemLayout
- */
- public static final int AlertDialog_multiChoiceItemLayout = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#singleChoiceItemLayout}
- attribute's value can be found in the {@link #AlertDialog} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:singleChoiceItemLayout
- */
- public static final int AlertDialog_singleChoiceItemLayout = 4;
- /** Attributes that can be used with a AppBarLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #AppBarLayout_android_background android:background}
- {@link #AppBarLayout_elevation alice.tuprologx.android.tuprologmobile:elevation}
- {@link #AppBarLayout_expanded alice.tuprologx.android.tuprologmobile:expanded}
-
- @see #AppBarLayout_android_background
- @see #AppBarLayout_elevation
- @see #AppBarLayout_expanded
- */
- public static final int[] AppBarLayout = {
- 0x010100d4, 0x7f01001a, 0x7f010024
- };
- /**
- This symbol is the offset where the {@link android.R.attr#background}
- attribute's value can be found in the {@link #AppBarLayout} array.
- @attr name android:background
- */
- public static final int AppBarLayout_android_background = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#elevation}
- attribute's value can be found in the {@link #AppBarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:elevation
- */
- public static final int AppBarLayout_elevation = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expanded}
- attribute's value can be found in the {@link #AppBarLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:expanded
- */
- public static final int AppBarLayout_expanded = 2;
- /** Attributes that can be used with a AppBarLayout_LayoutParams.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #AppBarLayout_LayoutParams_layout_scrollFlags alice.tuprologx.android.tuprologmobile:layout_scrollFlags}
- {@link #AppBarLayout_LayoutParams_layout_scrollInterpolator alice.tuprologx.android.tuprologmobile:layout_scrollInterpolator}
-
- @see #AppBarLayout_LayoutParams_layout_scrollFlags
- @see #AppBarLayout_LayoutParams_layout_scrollInterpolator
- */
- public static final int[] AppBarLayout_LayoutParams = {
- 0x7f010025, 0x7f010026
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_scrollFlags}
- attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-scroll
0x1
-exitUntilCollapsed
0x2
-enterAlways
0x4
-enterAlwaysCollapsed
0x8
-snap
0x10
-
- @attr name alice.tuprologx.android.tuprologmobile:layout_scrollFlags
- */
- public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_scrollInterpolator}
- attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:layout_scrollInterpolator
- */
- public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
- /** Attributes that can be used with a AppCompatImageView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #AppCompatImageView_android_src android:src}
- {@link #AppCompatImageView_srcCompat alice.tuprologx.android.tuprologmobile:srcCompat}
-
- @see #AppCompatImageView_android_src
- @see #AppCompatImageView_srcCompat
- */
- public static final int[] AppCompatImageView = {
- 0x01010119, 0x7f010027
- };
- /**
- This symbol is the offset where the {@link android.R.attr#src}
- attribute's value can be found in the {@link #AppCompatImageView} array.
- @attr name android:src
- */
- public static final int AppCompatImageView_android_src = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#srcCompat}
- attribute's value can be found in the {@link #AppCompatImageView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:srcCompat
- */
- public static final int AppCompatImageView_srcCompat = 1;
- /** Attributes that can be used with a AppCompatTextView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #AppCompatTextView_android_textAppearance android:textAppearance}
- {@link #AppCompatTextView_textAllCaps alice.tuprologx.android.tuprologmobile:textAllCaps}
-
- @see #AppCompatTextView_android_textAppearance
- @see #AppCompatTextView_textAllCaps
- */
- public static final int[] AppCompatTextView = {
- 0x01010034, 0x7f010028
- };
- /**
- This symbol is the offset where the {@link android.R.attr#textAppearance}
- attribute's value can be found in the {@link #AppCompatTextView} array.
- @attr name android:textAppearance
- */
- public static final int AppCompatTextView_android_textAppearance = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to a theme attribute in the form "?[package :][type :]name
".
-
May be a boolean value, either "true
" or "false
".
- @attr name alice.tuprologx.android.tuprologmobile:textAllCaps
- */
- public static final int AppCompatTextView_textAllCaps = 1;
- /** Attributes that can be used with a AppCompatTheme.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #AppCompatTheme_actionBarDivider alice.tuprologx.android.tuprologmobile:actionBarDivider}
- {@link #AppCompatTheme_actionBarItemBackground alice.tuprologx.android.tuprologmobile:actionBarItemBackground}
- {@link #AppCompatTheme_actionBarPopupTheme alice.tuprologx.android.tuprologmobile:actionBarPopupTheme}
- {@link #AppCompatTheme_actionBarSize alice.tuprologx.android.tuprologmobile:actionBarSize}
- {@link #AppCompatTheme_actionBarSplitStyle alice.tuprologx.android.tuprologmobile:actionBarSplitStyle}
- {@link #AppCompatTheme_actionBarStyle alice.tuprologx.android.tuprologmobile:actionBarStyle}
- {@link #AppCompatTheme_actionBarTabBarStyle alice.tuprologx.android.tuprologmobile:actionBarTabBarStyle}
- {@link #AppCompatTheme_actionBarTabStyle alice.tuprologx.android.tuprologmobile:actionBarTabStyle}
- {@link #AppCompatTheme_actionBarTabTextStyle alice.tuprologx.android.tuprologmobile:actionBarTabTextStyle}
- {@link #AppCompatTheme_actionBarTheme alice.tuprologx.android.tuprologmobile:actionBarTheme}
- {@link #AppCompatTheme_actionBarWidgetTheme alice.tuprologx.android.tuprologmobile:actionBarWidgetTheme}
- {@link #AppCompatTheme_actionButtonStyle alice.tuprologx.android.tuprologmobile:actionButtonStyle}
- {@link #AppCompatTheme_actionDropDownStyle alice.tuprologx.android.tuprologmobile:actionDropDownStyle}
- {@link #AppCompatTheme_actionMenuTextAppearance alice.tuprologx.android.tuprologmobile:actionMenuTextAppearance}
- {@link #AppCompatTheme_actionMenuTextColor alice.tuprologx.android.tuprologmobile:actionMenuTextColor}
- {@link #AppCompatTheme_actionModeBackground alice.tuprologx.android.tuprologmobile:actionModeBackground}
- {@link #AppCompatTheme_actionModeCloseButtonStyle alice.tuprologx.android.tuprologmobile:actionModeCloseButtonStyle}
- {@link #AppCompatTheme_actionModeCloseDrawable alice.tuprologx.android.tuprologmobile:actionModeCloseDrawable}
- {@link #AppCompatTheme_actionModeCopyDrawable alice.tuprologx.android.tuprologmobile:actionModeCopyDrawable}
- {@link #AppCompatTheme_actionModeCutDrawable alice.tuprologx.android.tuprologmobile:actionModeCutDrawable}
- {@link #AppCompatTheme_actionModeFindDrawable alice.tuprologx.android.tuprologmobile:actionModeFindDrawable}
- {@link #AppCompatTheme_actionModePasteDrawable alice.tuprologx.android.tuprologmobile:actionModePasteDrawable}
- {@link #AppCompatTheme_actionModePopupWindowStyle alice.tuprologx.android.tuprologmobile:actionModePopupWindowStyle}
- {@link #AppCompatTheme_actionModeSelectAllDrawable alice.tuprologx.android.tuprologmobile:actionModeSelectAllDrawable}
- {@link #AppCompatTheme_actionModeShareDrawable alice.tuprologx.android.tuprologmobile:actionModeShareDrawable}
- {@link #AppCompatTheme_actionModeSplitBackground alice.tuprologx.android.tuprologmobile:actionModeSplitBackground}
- {@link #AppCompatTheme_actionModeStyle alice.tuprologx.android.tuprologmobile:actionModeStyle}
- {@link #AppCompatTheme_actionModeWebSearchDrawable alice.tuprologx.android.tuprologmobile:actionModeWebSearchDrawable}
- {@link #AppCompatTheme_actionOverflowButtonStyle alice.tuprologx.android.tuprologmobile:actionOverflowButtonStyle}
- {@link #AppCompatTheme_actionOverflowMenuStyle alice.tuprologx.android.tuprologmobile:actionOverflowMenuStyle}
- {@link #AppCompatTheme_activityChooserViewStyle alice.tuprologx.android.tuprologmobile:activityChooserViewStyle}
- {@link #AppCompatTheme_alertDialogButtonGroupStyle alice.tuprologx.android.tuprologmobile:alertDialogButtonGroupStyle}
- {@link #AppCompatTheme_alertDialogCenterButtons alice.tuprologx.android.tuprologmobile:alertDialogCenterButtons}
- {@link #AppCompatTheme_alertDialogStyle alice.tuprologx.android.tuprologmobile:alertDialogStyle}
- {@link #AppCompatTheme_alertDialogTheme alice.tuprologx.android.tuprologmobile:alertDialogTheme}
- {@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
- {@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
- {@link #AppCompatTheme_autoCompleteTextViewStyle alice.tuprologx.android.tuprologmobile:autoCompleteTextViewStyle}
- {@link #AppCompatTheme_borderlessButtonStyle alice.tuprologx.android.tuprologmobile:borderlessButtonStyle}
- {@link #AppCompatTheme_buttonBarButtonStyle alice.tuprologx.android.tuprologmobile:buttonBarButtonStyle}
- {@link #AppCompatTheme_buttonBarNegativeButtonStyle alice.tuprologx.android.tuprologmobile:buttonBarNegativeButtonStyle}
- {@link #AppCompatTheme_buttonBarNeutralButtonStyle alice.tuprologx.android.tuprologmobile:buttonBarNeutralButtonStyle}
- {@link #AppCompatTheme_buttonBarPositiveButtonStyle alice.tuprologx.android.tuprologmobile:buttonBarPositiveButtonStyle}
- {@link #AppCompatTheme_buttonBarStyle alice.tuprologx.android.tuprologmobile:buttonBarStyle}
- {@link #AppCompatTheme_buttonStyle alice.tuprologx.android.tuprologmobile:buttonStyle}
- {@link #AppCompatTheme_buttonStyleSmall alice.tuprologx.android.tuprologmobile:buttonStyleSmall}
- {@link #AppCompatTheme_checkboxStyle alice.tuprologx.android.tuprologmobile:checkboxStyle}
- {@link #AppCompatTheme_checkedTextViewStyle alice.tuprologx.android.tuprologmobile:checkedTextViewStyle}
- {@link #AppCompatTheme_colorAccent alice.tuprologx.android.tuprologmobile:colorAccent}
- {@link #AppCompatTheme_colorButtonNormal alice.tuprologx.android.tuprologmobile:colorButtonNormal}
- {@link #AppCompatTheme_colorControlActivated alice.tuprologx.android.tuprologmobile:colorControlActivated}
- {@link #AppCompatTheme_colorControlHighlight alice.tuprologx.android.tuprologmobile:colorControlHighlight}
- {@link #AppCompatTheme_colorControlNormal alice.tuprologx.android.tuprologmobile:colorControlNormal}
- {@link #AppCompatTheme_colorPrimary alice.tuprologx.android.tuprologmobile:colorPrimary}
- {@link #AppCompatTheme_colorPrimaryDark alice.tuprologx.android.tuprologmobile:colorPrimaryDark}
- {@link #AppCompatTheme_colorSwitchThumbNormal alice.tuprologx.android.tuprologmobile:colorSwitchThumbNormal}
- {@link #AppCompatTheme_controlBackground alice.tuprologx.android.tuprologmobile:controlBackground}
- {@link #AppCompatTheme_dialogPreferredPadding alice.tuprologx.android.tuprologmobile:dialogPreferredPadding}
- {@link #AppCompatTheme_dialogTheme alice.tuprologx.android.tuprologmobile:dialogTheme}
- {@link #AppCompatTheme_dividerHorizontal alice.tuprologx.android.tuprologmobile:dividerHorizontal}
- {@link #AppCompatTheme_dividerVertical alice.tuprologx.android.tuprologmobile:dividerVertical}
- {@link #AppCompatTheme_dropDownListViewStyle alice.tuprologx.android.tuprologmobile:dropDownListViewStyle}
- {@link #AppCompatTheme_dropdownListPreferredItemHeight alice.tuprologx.android.tuprologmobile:dropdownListPreferredItemHeight}
- {@link #AppCompatTheme_editTextBackground alice.tuprologx.android.tuprologmobile:editTextBackground}
- {@link #AppCompatTheme_editTextColor alice.tuprologx.android.tuprologmobile:editTextColor}
- {@link #AppCompatTheme_editTextStyle alice.tuprologx.android.tuprologmobile:editTextStyle}
- {@link #AppCompatTheme_homeAsUpIndicator alice.tuprologx.android.tuprologmobile:homeAsUpIndicator}
- {@link #AppCompatTheme_imageButtonStyle alice.tuprologx.android.tuprologmobile:imageButtonStyle}
- {@link #AppCompatTheme_listChoiceBackgroundIndicator alice.tuprologx.android.tuprologmobile:listChoiceBackgroundIndicator}
- {@link #AppCompatTheme_listDividerAlertDialog alice.tuprologx.android.tuprologmobile:listDividerAlertDialog}
- {@link #AppCompatTheme_listPopupWindowStyle alice.tuprologx.android.tuprologmobile:listPopupWindowStyle}
- {@link #AppCompatTheme_listPreferredItemHeight alice.tuprologx.android.tuprologmobile:listPreferredItemHeight}
- {@link #AppCompatTheme_listPreferredItemHeightLarge alice.tuprologx.android.tuprologmobile:listPreferredItemHeightLarge}
- {@link #AppCompatTheme_listPreferredItemHeightSmall alice.tuprologx.android.tuprologmobile:listPreferredItemHeightSmall}
- {@link #AppCompatTheme_listPreferredItemPaddingLeft alice.tuprologx.android.tuprologmobile:listPreferredItemPaddingLeft}
- {@link #AppCompatTheme_listPreferredItemPaddingRight alice.tuprologx.android.tuprologmobile:listPreferredItemPaddingRight}
- {@link #AppCompatTheme_panelBackground alice.tuprologx.android.tuprologmobile:panelBackground}
- {@link #AppCompatTheme_panelMenuListTheme alice.tuprologx.android.tuprologmobile:panelMenuListTheme}
- {@link #AppCompatTheme_panelMenuListWidth alice.tuprologx.android.tuprologmobile:panelMenuListWidth}
- {@link #AppCompatTheme_popupMenuStyle alice.tuprologx.android.tuprologmobile:popupMenuStyle}
- {@link #AppCompatTheme_popupWindowStyle alice.tuprologx.android.tuprologmobile:popupWindowStyle}
- {@link #AppCompatTheme_radioButtonStyle alice.tuprologx.android.tuprologmobile:radioButtonStyle}
- {@link #AppCompatTheme_ratingBarStyle alice.tuprologx.android.tuprologmobile:ratingBarStyle}
- {@link #AppCompatTheme_ratingBarStyleIndicator alice.tuprologx.android.tuprologmobile:ratingBarStyleIndicator}
- {@link #AppCompatTheme_ratingBarStyleSmall alice.tuprologx.android.tuprologmobile:ratingBarStyleSmall}
- {@link #AppCompatTheme_searchViewStyle alice.tuprologx.android.tuprologmobile:searchViewStyle}
- {@link #AppCompatTheme_seekBarStyle alice.tuprologx.android.tuprologmobile:seekBarStyle}
- {@link #AppCompatTheme_selectableItemBackground alice.tuprologx.android.tuprologmobile:selectableItemBackground}
- {@link #AppCompatTheme_selectableItemBackgroundBorderless alice.tuprologx.android.tuprologmobile:selectableItemBackgroundBorderless}
- {@link #AppCompatTheme_spinnerDropDownItemStyle alice.tuprologx.android.tuprologmobile:spinnerDropDownItemStyle}
- {@link #AppCompatTheme_spinnerStyle alice.tuprologx.android.tuprologmobile:spinnerStyle}
- {@link #AppCompatTheme_switchStyle alice.tuprologx.android.tuprologmobile:switchStyle}
- {@link #AppCompatTheme_textAppearanceLargePopupMenu alice.tuprologx.android.tuprologmobile:textAppearanceLargePopupMenu}
- {@link #AppCompatTheme_textAppearanceListItem alice.tuprologx.android.tuprologmobile:textAppearanceListItem}
- {@link #AppCompatTheme_textAppearanceListItemSmall alice.tuprologx.android.tuprologmobile:textAppearanceListItemSmall}
- {@link #AppCompatTheme_textAppearanceSearchResultSubtitle alice.tuprologx.android.tuprologmobile:textAppearanceSearchResultSubtitle}
- {@link #AppCompatTheme_textAppearanceSearchResultTitle alice.tuprologx.android.tuprologmobile:textAppearanceSearchResultTitle}
- {@link #AppCompatTheme_textAppearanceSmallPopupMenu alice.tuprologx.android.tuprologmobile:textAppearanceSmallPopupMenu}
- {@link #AppCompatTheme_textColorAlertDialogListItem alice.tuprologx.android.tuprologmobile:textColorAlertDialogListItem}
- {@link #AppCompatTheme_textColorSearchUrl alice.tuprologx.android.tuprologmobile:textColorSearchUrl}
- {@link #AppCompatTheme_toolbarNavigationButtonStyle alice.tuprologx.android.tuprologmobile:toolbarNavigationButtonStyle}
- {@link #AppCompatTheme_toolbarStyle alice.tuprologx.android.tuprologmobile:toolbarStyle}
- {@link #AppCompatTheme_windowActionBar alice.tuprologx.android.tuprologmobile:windowActionBar}
- {@link #AppCompatTheme_windowActionBarOverlay alice.tuprologx.android.tuprologmobile:windowActionBarOverlay}
- {@link #AppCompatTheme_windowActionModeOverlay alice.tuprologx.android.tuprologmobile:windowActionModeOverlay}
- {@link #AppCompatTheme_windowFixedHeightMajor alice.tuprologx.android.tuprologmobile:windowFixedHeightMajor}
- {@link #AppCompatTheme_windowFixedHeightMinor alice.tuprologx.android.tuprologmobile:windowFixedHeightMinor}
- {@link #AppCompatTheme_windowFixedWidthMajor alice.tuprologx.android.tuprologmobile:windowFixedWidthMajor}
- {@link #AppCompatTheme_windowFixedWidthMinor alice.tuprologx.android.tuprologmobile:windowFixedWidthMinor}
- {@link #AppCompatTheme_windowMinWidthMajor alice.tuprologx.android.tuprologmobile:windowMinWidthMajor}
- {@link #AppCompatTheme_windowMinWidthMinor alice.tuprologx.android.tuprologmobile:windowMinWidthMinor}
- {@link #AppCompatTheme_windowNoTitle alice.tuprologx.android.tuprologmobile:windowNoTitle}
-
- @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_android_windowAnimationStyle
- @see #AppCompatTheme_android_windowIsFloating
- @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_colorButtonNormal
- @see #AppCompatTheme_colorControlActivated
- @see #AppCompatTheme_colorControlHighlight
- @see #AppCompatTheme_colorControlNormal
- @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_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_textAppearanceListItemSmall
- @see #AppCompatTheme_textAppearanceSearchResultSubtitle
- @see #AppCompatTheme_textAppearanceSearchResultTitle
- @see #AppCompatTheme_textAppearanceSmallPopupMenu
- @see #AppCompatTheme_textColorAlertDialogListItem
- @see #AppCompatTheme_textColorSearchUrl
- @see #AppCompatTheme_toolbarNavigationButtonStyle
- @see #AppCompatTheme_toolbarStyle
- @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, 0x7f010029, 0x7f01002a,
- 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e,
- 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032,
- 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036,
- 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a,
- 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e,
- 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042,
- 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046,
- 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a,
- 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e,
- 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052,
- 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056,
- 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a,
- 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e,
- 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062,
- 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066,
- 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a,
- 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e,
- 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072,
- 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076,
- 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a,
- 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e,
- 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082,
- 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086,
- 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a,
- 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e,
- 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092,
- 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarDivider}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarDivider
- */
- public static final int AppCompatTheme_actionBarDivider = 23;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarItemBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarItemBackground
- */
- public static final int AppCompatTheme_actionBarItemBackground = 24;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarPopupTheme}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarPopupTheme
- */
- public static final int AppCompatTheme_actionBarPopupTheme = 17;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
-
May be one of the following constant values.
-
-
-
-
-Constant Value Description
-wrap_content
0
-
- @attr name alice.tuprologx.android.tuprologmobile:actionBarSize
- */
- public static final int AppCompatTheme_actionBarSize = 22;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarSplitStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarSplitStyle
- */
- public static final int AppCompatTheme_actionBarSplitStyle = 19;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarStyle
- */
- public static final int AppCompatTheme_actionBarStyle = 18;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarTabBarStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarTabBarStyle
- */
- public static final int AppCompatTheme_actionBarTabBarStyle = 13;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarTabStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarTabStyle
- */
- public static final int AppCompatTheme_actionBarTabStyle = 12;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarTabTextStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarTabTextStyle
- */
- public static final int AppCompatTheme_actionBarTabTextStyle = 14;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarTheme}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarTheme
- */
- public static final int AppCompatTheme_actionBarTheme = 20;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionBarWidgetTheme}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionBarWidgetTheme
- */
- public static final int AppCompatTheme_actionBarWidgetTheme = 21;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionButtonStyle
- */
- public static final int AppCompatTheme_actionButtonStyle = 49;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionDropDownStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionDropDownStyle
- */
- public static final int AppCompatTheme_actionDropDownStyle = 45;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionMenuTextAppearance}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionMenuTextAppearance
- */
- public static final int AppCompatTheme_actionMenuTextAppearance = 25;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:actionMenuTextColor
- */
- public static final int AppCompatTheme_actionMenuTextColor = 26;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeBackground
- */
- public static final int AppCompatTheme_actionModeBackground = 29;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeCloseButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeCloseButtonStyle
- */
- public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeCloseDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeCloseDrawable
- */
- public static final int AppCompatTheme_actionModeCloseDrawable = 31;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeCopyDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeCopyDrawable
- */
- public static final int AppCompatTheme_actionModeCopyDrawable = 33;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeCutDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeCutDrawable
- */
- public static final int AppCompatTheme_actionModeCutDrawable = 32;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeFindDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeFindDrawable
- */
- public static final int AppCompatTheme_actionModeFindDrawable = 37;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModePasteDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModePasteDrawable
- */
- public static final int AppCompatTheme_actionModePasteDrawable = 34;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModePopupWindowStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModePopupWindowStyle
- */
- public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeSelectAllDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeSelectAllDrawable
- */
- public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeShareDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeShareDrawable
- */
- public static final int AppCompatTheme_actionModeShareDrawable = 36;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeSplitBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeSplitBackground
- */
- public static final int AppCompatTheme_actionModeSplitBackground = 30;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeStyle
- */
- public static final int AppCompatTheme_actionModeStyle = 27;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionModeWebSearchDrawable}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionModeWebSearchDrawable
- */
- public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionOverflowButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionOverflowButtonStyle
- */
- public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionOverflowMenuStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionOverflowMenuStyle
- */
- public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#activityChooserViewStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:activityChooserViewStyle
- */
- public static final int AppCompatTheme_activityChooserViewStyle = 57;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#alertDialogButtonGroupStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:alertDialogButtonGroupStyle
- */
- public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#alertDialogCenterButtons}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:alertDialogCenterButtons
- */
- public static final int AppCompatTheme_alertDialogCenterButtons = 93;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#alertDialogStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:alertDialogStyle
- */
- public static final int AppCompatTheme_alertDialogStyle = 91;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#alertDialogTheme}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:alertDialogTheme
- */
- public static final int AppCompatTheme_alertDialogTheme = 94;
- /**
-
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
- @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.
- @attr name android:windowIsFloating
- */
- public static final int AppCompatTheme_android_windowIsFloating = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#autoCompleteTextViewStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:autoCompleteTextViewStyle
- */
- public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#borderlessButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:borderlessButtonStyle
- */
- public static final int AppCompatTheme_borderlessButtonStyle = 54;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonBarButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonBarButtonStyle
- */
- public static final int AppCompatTheme_buttonBarButtonStyle = 51;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonBarNegativeButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonBarNegativeButtonStyle
- */
- public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonBarNeutralButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonBarNeutralButtonStyle
- */
- public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonBarPositiveButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonBarPositiveButtonStyle
- */
- public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonBarStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonBarStyle
- */
- public static final int AppCompatTheme_buttonBarStyle = 50;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonStyle
- */
- public static final int AppCompatTheme_buttonStyle = 100;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonStyleSmall}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:buttonStyleSmall
- */
- public static final int AppCompatTheme_buttonStyleSmall = 101;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#checkboxStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:checkboxStyle
- */
- public static final int AppCompatTheme_checkboxStyle = 102;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#checkedTextViewStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:checkedTextViewStyle
- */
- public static final int AppCompatTheme_checkedTextViewStyle = 103;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorAccent}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorAccent
- */
- public static final int AppCompatTheme_colorAccent = 84;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorButtonNormal}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorButtonNormal
- */
- public static final int AppCompatTheme_colorButtonNormal = 88;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorControlActivated}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorControlActivated
- */
- public static final int AppCompatTheme_colorControlActivated = 86;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorControlHighlight}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorControlHighlight
- */
- public static final int AppCompatTheme_colorControlHighlight = 87;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorControlNormal}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorControlNormal
- */
- public static final int AppCompatTheme_colorControlNormal = 85;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorPrimary}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorPrimary
- */
- public static final int AppCompatTheme_colorPrimary = 82;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorPrimaryDark}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorPrimaryDark
- */
- public static final int AppCompatTheme_colorPrimaryDark = 83;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#colorSwitchThumbNormal}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:colorSwitchThumbNormal
- */
- public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#controlBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:controlBackground
- */
- public static final int AppCompatTheme_controlBackground = 90;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dialogPreferredPadding}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:dialogPreferredPadding
- */
- public static final int AppCompatTheme_dialogPreferredPadding = 43;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dialogTheme}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:dialogTheme
- */
- public static final int AppCompatTheme_dialogTheme = 42;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dividerHorizontal}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:dividerHorizontal
- */
- public static final int AppCompatTheme_dividerHorizontal = 56;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dividerVertical}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:dividerVertical
- */
- public static final int AppCompatTheme_dividerVertical = 55;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dropDownListViewStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:dropDownListViewStyle
- */
- public static final int AppCompatTheme_dropDownListViewStyle = 74;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dropdownListPreferredItemHeight}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:dropdownListPreferredItemHeight
- */
- public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#editTextBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:editTextBackground
- */
- public static final int AppCompatTheme_editTextBackground = 63;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:editTextColor
- */
- public static final int AppCompatTheme_editTextColor = 62;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#editTextStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:editTextStyle
- */
- public static final int AppCompatTheme_editTextStyle = 104;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#homeAsUpIndicator}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:homeAsUpIndicator
- */
- public static final int AppCompatTheme_homeAsUpIndicator = 48;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#imageButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:imageButtonStyle
- */
- public static final int AppCompatTheme_imageButtonStyle = 64;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listChoiceBackgroundIndicator}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:listChoiceBackgroundIndicator
- */
- public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listDividerAlertDialog}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:listDividerAlertDialog
- */
- public static final int AppCompatTheme_listDividerAlertDialog = 44;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listPopupWindowStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:listPopupWindowStyle
- */
- public static final int AppCompatTheme_listPopupWindowStyle = 75;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listPreferredItemHeight}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:listPreferredItemHeight
- */
- public static final int AppCompatTheme_listPreferredItemHeight = 69;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listPreferredItemHeightLarge}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:listPreferredItemHeightLarge
- */
- public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listPreferredItemHeightSmall}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:listPreferredItemHeightSmall
- */
- public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listPreferredItemPaddingLeft}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:listPreferredItemPaddingLeft
- */
- public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#listPreferredItemPaddingRight}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:listPreferredItemPaddingRight
- */
- public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#panelBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:panelBackground
- */
- public static final int AppCompatTheme_panelBackground = 78;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#panelMenuListTheme}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:panelMenuListTheme
- */
- public static final int AppCompatTheme_panelMenuListTheme = 80;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#panelMenuListWidth}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:panelMenuListWidth
- */
- public static final int AppCompatTheme_panelMenuListWidth = 79;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#popupMenuStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:popupMenuStyle
- */
- public static final int AppCompatTheme_popupMenuStyle = 60;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#popupWindowStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:popupWindowStyle
- */
- public static final int AppCompatTheme_popupWindowStyle = 61;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#radioButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:radioButtonStyle
- */
- public static final int AppCompatTheme_radioButtonStyle = 105;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#ratingBarStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:ratingBarStyle
- */
- public static final int AppCompatTheme_ratingBarStyle = 106;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#ratingBarStyleIndicator}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:ratingBarStyleIndicator
- */
- public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#ratingBarStyleSmall}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:ratingBarStyleSmall
- */
- public static final int AppCompatTheme_ratingBarStyleSmall = 108;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#searchViewStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:searchViewStyle
- */
- public static final int AppCompatTheme_searchViewStyle = 68;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#seekBarStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:seekBarStyle
- */
- public static final int AppCompatTheme_seekBarStyle = 109;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#selectableItemBackground}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:selectableItemBackground
- */
- public static final int AppCompatTheme_selectableItemBackground = 52;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#selectableItemBackgroundBorderless}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:selectableItemBackgroundBorderless
- */
- public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#spinnerDropDownItemStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:spinnerDropDownItemStyle
- */
- public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#spinnerStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:spinnerStyle
- */
- public static final int AppCompatTheme_spinnerStyle = 110;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#switchStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:switchStyle
- */
- public static final int AppCompatTheme_switchStyle = 111;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textAppearanceLargePopupMenu}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:textAppearanceLargePopupMenu
- */
- public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textAppearanceListItem}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:textAppearanceListItem
- */
- public static final int AppCompatTheme_textAppearanceListItem = 76;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textAppearanceListItemSmall}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:textAppearanceListItemSmall
- */
- public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textAppearanceSearchResultSubtitle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:textAppearanceSearchResultSubtitle
- */
- public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textAppearanceSearchResultTitle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:textAppearanceSearchResultTitle
- */
- public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textAppearanceSmallPopupMenu}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:textAppearanceSmallPopupMenu
- */
- public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:textColorAlertDialogListItem
- */
- public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to 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 alice.tuprologx.android.tuprologmobile:textColorSearchUrl
- */
- public static final int AppCompatTheme_textColorSearchUrl = 67;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#toolbarNavigationButtonStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:toolbarNavigationButtonStyle
- */
- public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#toolbarStyle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:toolbarStyle
- */
- public static final int AppCompatTheme_toolbarStyle = 58;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#windowActionBar}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowActionBar
- */
- public static final int AppCompatTheme_windowActionBar = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#windowActionBarOverlay}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowActionBarOverlay
- */
- public static final int AppCompatTheme_windowActionBarOverlay = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#windowActionModeOverlay}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowActionModeOverlay
- */
- public static final int AppCompatTheme_windowActionModeOverlay = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowFixedHeightMajor
- */
- public static final int AppCompatTheme_windowFixedHeightMajor = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowFixedHeightMinor
- */
- public static final int AppCompatTheme_windowFixedHeightMinor = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowFixedWidthMajor
- */
- public static final int AppCompatTheme_windowFixedWidthMajor = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowFixedWidthMinor
- */
- public static final int AppCompatTheme_windowFixedWidthMinor = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowMinWidthMajor
- */
- public static final int AppCompatTheme_windowMinWidthMajor = 10;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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), 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.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowMinWidthMinor
- */
- public static final int AppCompatTheme_windowMinWidthMinor = 11;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#windowNoTitle}
- attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:windowNoTitle
- */
- public static final int AppCompatTheme_windowNoTitle = 3;
- /** Attributes that can be used with a BottomSheetBehavior_Params.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #BottomSheetBehavior_Params_behavior_hideable alice.tuprologx.android.tuprologmobile:behavior_hideable}
- {@link #BottomSheetBehavior_Params_behavior_peekHeight alice.tuprologx.android.tuprologmobile:behavior_peekHeight}
-
- @see #BottomSheetBehavior_Params_behavior_hideable
- @see #BottomSheetBehavior_Params_behavior_peekHeight
- */
- public static final int[] BottomSheetBehavior_Params = {
- 0x7f010097, 0x7f010098
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#behavior_hideable}
- attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:behavior_hideable
- */
- public static final int BottomSheetBehavior_Params_behavior_hideable = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#behavior_peekHeight}
- attribute's value can be found in the {@link #BottomSheetBehavior_Params} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:behavior_peekHeight
- */
- public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0;
- /** Attributes that can be used with a ButtonBarLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ButtonBarLayout_allowStacking alice.tuprologx.android.tuprologmobile:allowStacking}
-
- @see #ButtonBarLayout_allowStacking
- */
- public static final int[] ButtonBarLayout = {
- 0x7f010099
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#allowStacking}
- attribute's value can be found in the {@link #ButtonBarLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:allowStacking
- */
- public static final int ButtonBarLayout_allowStacking = 0;
- /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode alice.tuprologx.android.tuprologmobile:layout_collapseMode}
- {@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier alice.tuprologx.android.tuprologmobile:layout_collapseParallaxMultiplier}
-
- @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode
- @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier
- */
- public static final int[] CollapsingAppBarLayout_LayoutParams = {
- 0x7f01009a, 0x7f01009b
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_collapseMode}
- attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-none
0
-pin
1
-parallax
2
-
- @attr name alice.tuprologx.android.tuprologmobile:layout_collapseMode
- */
- public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_collapseParallaxMultiplier}
- attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array.
-
-
-
Must be a floating point value, such as "1.2
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:layout_collapseParallaxMultiplier
- */
- public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
- /** Attributes that can be used with a CollapsingToolbarLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #CollapsingToolbarLayout_collapsedTitleGravity alice.tuprologx.android.tuprologmobile:collapsedTitleGravity}
- {@link #CollapsingToolbarLayout_collapsedTitleTextAppearance alice.tuprologx.android.tuprologmobile:collapsedTitleTextAppearance}
- {@link #CollapsingToolbarLayout_contentScrim alice.tuprologx.android.tuprologmobile:contentScrim}
- {@link #CollapsingToolbarLayout_expandedTitleGravity alice.tuprologx.android.tuprologmobile:expandedTitleGravity}
- {@link #CollapsingToolbarLayout_expandedTitleMargin alice.tuprologx.android.tuprologmobile:expandedTitleMargin}
- {@link #CollapsingToolbarLayout_expandedTitleMarginBottom alice.tuprologx.android.tuprologmobile:expandedTitleMarginBottom}
- {@link #CollapsingToolbarLayout_expandedTitleMarginEnd alice.tuprologx.android.tuprologmobile:expandedTitleMarginEnd}
- {@link #CollapsingToolbarLayout_expandedTitleMarginStart alice.tuprologx.android.tuprologmobile:expandedTitleMarginStart}
- {@link #CollapsingToolbarLayout_expandedTitleMarginTop alice.tuprologx.android.tuprologmobile:expandedTitleMarginTop}
- {@link #CollapsingToolbarLayout_expandedTitleTextAppearance alice.tuprologx.android.tuprologmobile:expandedTitleTextAppearance}
- {@link #CollapsingToolbarLayout_statusBarScrim alice.tuprologx.android.tuprologmobile:statusBarScrim}
- {@link #CollapsingToolbarLayout_title alice.tuprologx.android.tuprologmobile:title}
- {@link #CollapsingToolbarLayout_titleEnabled alice.tuprologx.android.tuprologmobile:titleEnabled}
- {@link #CollapsingToolbarLayout_toolbarId alice.tuprologx.android.tuprologmobile:toolbarId}
-
- @see #CollapsingToolbarLayout_collapsedTitleGravity
- @see #CollapsingToolbarLayout_collapsedTitleTextAppearance
- @see #CollapsingToolbarLayout_contentScrim
- @see #CollapsingToolbarLayout_expandedTitleGravity
- @see #CollapsingToolbarLayout_expandedTitleMargin
- @see #CollapsingToolbarLayout_expandedTitleMarginBottom
- @see #CollapsingToolbarLayout_expandedTitleMarginEnd
- @see #CollapsingToolbarLayout_expandedTitleMarginStart
- @see #CollapsingToolbarLayout_expandedTitleMarginTop
- @see #CollapsingToolbarLayout_expandedTitleTextAppearance
- @see #CollapsingToolbarLayout_statusBarScrim
- @see #CollapsingToolbarLayout_title
- @see #CollapsingToolbarLayout_titleEnabled
- @see #CollapsingToolbarLayout_toolbarId
- */
- public static final int[] CollapsingToolbarLayout = {
- 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e,
- 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2,
- 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6,
- 0x7f0100a7, 0x7f0100a8
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#collapsedTitleGravity}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-top
0x30
-bottom
0x50
-left
0x03
-right
0x05
-center_vertical
0x10
-fill_vertical
0x70
-center_horizontal
0x01
-center
0x11
-start
0x00800003
-end
0x00800005
-
- @attr name alice.tuprologx.android.tuprologmobile:collapsedTitleGravity
- */
- public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#collapsedTitleTextAppearance}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:collapsedTitleTextAppearance
- */
- public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentScrim}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentScrim
- */
- public static final int CollapsingToolbarLayout_contentScrim = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleGravity}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-top
0x30
-bottom
0x50
-left
0x03
-right
0x05
-center_vertical
0x10
-fill_vertical
0x70
-center_horizontal
0x01
-center
0x11
-start
0x00800003
-end
0x00800005
-
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleGravity
- */
- public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleMargin}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleMargin
- */
- public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleMarginBottom}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleMarginBottom
- */
- public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleMarginEnd}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleMarginEnd
- */
- public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleMarginStart}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleMarginStart
- */
- public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleMarginTop}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleMarginTop
- */
- public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#expandedTitleTextAppearance}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:expandedTitleTextAppearance
- */
- public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#statusBarScrim}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:statusBarScrim
- */
- public static final int CollapsingToolbarLayout_statusBarScrim = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#title}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:title
- */
- public static final int CollapsingToolbarLayout_title = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleEnabled}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleEnabled
- */
- public static final int CollapsingToolbarLayout_titleEnabled = 13;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#toolbarId}
- attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:toolbarId
- */
- public static final int CollapsingToolbarLayout_toolbarId = 10;
- /** Attributes that can be used with a CompoundButton.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #CompoundButton_android_button android:button}
- {@link #CompoundButton_buttonTint alice.tuprologx.android.tuprologmobile:buttonTint}
- {@link #CompoundButton_buttonTintMode alice.tuprologx.android.tuprologmobile:buttonTintMode}
-
- @see #CompoundButton_android_button
- @see #CompoundButton_buttonTint
- @see #CompoundButton_buttonTintMode
- */
- public static final int[] CompoundButton = {
- 0x01010107, 0x7f0100a9, 0x7f0100aa
- };
- /**
- This symbol is the offset where the {@link android.R.attr#button}
- attribute's value can be found in the {@link #CompoundButton} array.
- @attr name android:button
- */
- public static final int CompoundButton_android_button = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonTint}
- attribute's value can be found in the {@link #CompoundButton} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:buttonTint
- */
- public static final int CompoundButton_buttonTint = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#buttonTintMode}
- attribute's value can be found in the {@link #CompoundButton} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-src_over
3
-src_in
5
-src_atop
9
-multiply
14
-screen
15
-
- @attr name alice.tuprologx.android.tuprologmobile:buttonTintMode
- */
- public static final int CompoundButton_buttonTintMode = 2;
- /** Attributes that can be used with a CoordinatorLayout.
- Includes the following attributes:
-
-
-
- Attribute Description
- {@link #CoordinatorLayout_keylines alice.tuprologx.android.tuprologmobile:keylines}
- {@link #CoordinatorLayout_statusBarBackground alice.tuprologx.android.tuprologmobile:statusBarBackground}
-
- @see #CoordinatorLayout_keylines
- @see #CoordinatorLayout_statusBarBackground
- */
- public static final int[] CoordinatorLayout = {
- 0x7f0100ab, 0x7f0100ac
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#keylines}
- attribute's value can be found in the {@link #CoordinatorLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:keylines
- */
- public static final int CoordinatorLayout_keylines = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#statusBarBackground}
- attribute's value can be found in the {@link #CoordinatorLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:statusBarBackground
- */
- public static final int CoordinatorLayout_statusBarBackground = 1;
- /** Attributes that can be used with a CoordinatorLayout_LayoutParams.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
- {@link #CoordinatorLayout_LayoutParams_layout_anchor alice.tuprologx.android.tuprologmobile:layout_anchor}
- {@link #CoordinatorLayout_LayoutParams_layout_anchorGravity alice.tuprologx.android.tuprologmobile:layout_anchorGravity}
- {@link #CoordinatorLayout_LayoutParams_layout_behavior alice.tuprologx.android.tuprologmobile:layout_behavior}
- {@link #CoordinatorLayout_LayoutParams_layout_keyline alice.tuprologx.android.tuprologmobile:layout_keyline}
-
- @see #CoordinatorLayout_LayoutParams_android_layout_gravity
- @see #CoordinatorLayout_LayoutParams_layout_anchor
- @see #CoordinatorLayout_LayoutParams_layout_anchorGravity
- @see #CoordinatorLayout_LayoutParams_layout_behavior
- @see #CoordinatorLayout_LayoutParams_layout_keyline
- */
- public static final int[] CoordinatorLayout_LayoutParams = {
- 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
- 0x7f0100b0
- };
- /**
- This symbol is the offset where the {@link android.R.attr#layout_gravity}
- attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
- @attr name android:layout_gravity
- */
- public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_anchor}
- attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:layout_anchor
- */
- public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_anchorGravity}
- attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
-
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
-
-
-Constant Value Description
-top
0x30
-bottom
0x50
-left
0x03
-right
0x05
-center_vertical
0x10
-fill_vertical
0x70
-center_horizontal
0x01
-fill_horizontal
0x07
-center
0x11
-fill
0x77
-clip_vertical
0x80
-clip_horizontal
0x08
-start
0x00800003
-end
0x00800005
-
- @attr name alice.tuprologx.android.tuprologmobile:layout_anchorGravity
- */
- public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_behavior}
- attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:layout_behavior
- */
- public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout_keyline}
- attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array.
-
-
-
Must be an integer value, such as "100
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:layout_keyline
- */
- public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3;
- /** Attributes that can be used with a DesignTheme.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #DesignTheme_bottomSheetDialogTheme alice.tuprologx.android.tuprologmobile:bottomSheetDialogTheme}
- {@link #DesignTheme_bottomSheetStyle alice.tuprologx.android.tuprologmobile:bottomSheetStyle}
- {@link #DesignTheme_textColorError alice.tuprologx.android.tuprologmobile:textColorError}
-
- @see #DesignTheme_bottomSheetDialogTheme
- @see #DesignTheme_bottomSheetStyle
- @see #DesignTheme_textColorError
- */
- public static final int[] DesignTheme = {
- 0x7f0100b1, 0x7f0100b2, 0x7f0100b3
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#bottomSheetDialogTheme}
- attribute's value can be found in the {@link #DesignTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:bottomSheetDialogTheme
- */
- public static final int DesignTheme_bottomSheetDialogTheme = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#bottomSheetStyle}
- attribute's value can be found in the {@link #DesignTheme} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:bottomSheetStyle
- */
- public static final int DesignTheme_bottomSheetStyle = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#textColorError}
- attribute's value can be found in the {@link #DesignTheme} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:textColorError
- */
- public static final int DesignTheme_textColorError = 2;
- /** Attributes that can be used with a DrawerArrowToggle.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #DrawerArrowToggle_arrowHeadLength alice.tuprologx.android.tuprologmobile:arrowHeadLength}
- {@link #DrawerArrowToggle_arrowShaftLength alice.tuprologx.android.tuprologmobile:arrowShaftLength}
- {@link #DrawerArrowToggle_barLength alice.tuprologx.android.tuprologmobile:barLength}
- {@link #DrawerArrowToggle_color alice.tuprologx.android.tuprologmobile:color}
- {@link #DrawerArrowToggle_drawableSize alice.tuprologx.android.tuprologmobile:drawableSize}
- {@link #DrawerArrowToggle_gapBetweenBars alice.tuprologx.android.tuprologmobile:gapBetweenBars}
- {@link #DrawerArrowToggle_spinBars alice.tuprologx.android.tuprologmobile:spinBars}
- {@link #DrawerArrowToggle_thickness alice.tuprologx.android.tuprologmobile: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 = {
- 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
- 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#arrowHeadLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:arrowHeadLength
- */
- public static final int DrawerArrowToggle_arrowHeadLength = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#arrowShaftLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:arrowShaftLength
- */
- public static final int DrawerArrowToggle_arrowShaftLength = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#barLength}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:barLength
- */
- public static final int DrawerArrowToggle_barLength = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#color}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:color
- */
- public static final int DrawerArrowToggle_color = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#drawableSize}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:drawableSize
- */
- public static final int DrawerArrowToggle_drawableSize = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#gapBetweenBars}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:gapBetweenBars
- */
- public static final int DrawerArrowToggle_gapBetweenBars = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#spinBars}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:spinBars
- */
- public static final int DrawerArrowToggle_spinBars = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#thickness}
- attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:thickness
- */
- public static final int DrawerArrowToggle_thickness = 7;
- /** Attributes that can be used with a FloatingActionButton.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #FloatingActionButton_backgroundTint alice.tuprologx.android.tuprologmobile:backgroundTint}
- {@link #FloatingActionButton_backgroundTintMode alice.tuprologx.android.tuprologmobile:backgroundTintMode}
- {@link #FloatingActionButton_borderWidth alice.tuprologx.android.tuprologmobile:borderWidth}
- {@link #FloatingActionButton_elevation alice.tuprologx.android.tuprologmobile:elevation}
- {@link #FloatingActionButton_fabSize alice.tuprologx.android.tuprologmobile:fabSize}
- {@link #FloatingActionButton_pressedTranslationZ alice.tuprologx.android.tuprologmobile:pressedTranslationZ}
- {@link #FloatingActionButton_rippleColor alice.tuprologx.android.tuprologmobile:rippleColor}
- {@link #FloatingActionButton_useCompatPadding alice.tuprologx.android.tuprologmobile:useCompatPadding}
-
- @see #FloatingActionButton_backgroundTint
- @see #FloatingActionButton_backgroundTintMode
- @see #FloatingActionButton_borderWidth
- @see #FloatingActionButton_elevation
- @see #FloatingActionButton_fabSize
- @see #FloatingActionButton_pressedTranslationZ
- @see #FloatingActionButton_rippleColor
- @see #FloatingActionButton_useCompatPadding
- */
- public static final int[] FloatingActionButton = {
- 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be,
- 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#backgroundTint}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:backgroundTint
- */
- public static final int FloatingActionButton_backgroundTint = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#backgroundTintMode}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-src_over
3
-src_in
5
-src_atop
9
-multiply
14
-screen
15
-
- @attr name alice.tuprologx.android.tuprologmobile:backgroundTintMode
- */
- public static final int FloatingActionButton_backgroundTintMode = 7;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#borderWidth}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:borderWidth
- */
- public static final int FloatingActionButton_borderWidth = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#elevation}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:elevation
- */
- public static final int FloatingActionButton_elevation = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#fabSize}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-normal
0
-mini
1
-
- @attr name alice.tuprologx.android.tuprologmobile:fabSize
- */
- public static final int FloatingActionButton_fabSize = 2;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#pressedTranslationZ}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:pressedTranslationZ
- */
- public static final int FloatingActionButton_pressedTranslationZ = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#rippleColor}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:rippleColor
- */
- public static final int FloatingActionButton_rippleColor = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#useCompatPadding}
- attribute's value can be found in the {@link #FloatingActionButton} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:useCompatPadding
- */
- public static final int FloatingActionButton_useCompatPadding = 5;
- /** Attributes that can be used with a ForegroundLinearLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ForegroundLinearLayout_android_foreground android:foreground}
- {@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
- {@link #ForegroundLinearLayout_foregroundInsidePadding alice.tuprologx.android.tuprologmobile:foregroundInsidePadding}
-
- @see #ForegroundLinearLayout_android_foreground
- @see #ForegroundLinearLayout_android_foregroundGravity
- @see #ForegroundLinearLayout_foregroundInsidePadding
- */
- public static final int[] ForegroundLinearLayout = {
- 0x01010109, 0x01010200, 0x7f0100c1
- };
- /**
- This symbol is the offset where the {@link android.R.attr#foreground}
- attribute's value can be found in the {@link #ForegroundLinearLayout} array.
- @attr name android:foreground
- */
- public static final int ForegroundLinearLayout_android_foreground = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#foregroundGravity}
- attribute's value can be found in the {@link #ForegroundLinearLayout} array.
- @attr name android:foregroundGravity
- */
- public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#foregroundInsidePadding}
- attribute's value can be found in the {@link #ForegroundLinearLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:foregroundInsidePadding
- */
- public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
- /** Attributes that can be used with a LinearLayoutCompat.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
- {@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
- {@link #LinearLayoutCompat_android_gravity android:gravity}
- {@link #LinearLayoutCompat_android_orientation android:orientation}
- {@link #LinearLayoutCompat_android_weightSum android:weightSum}
- {@link #LinearLayoutCompat_divider alice.tuprologx.android.tuprologmobile:divider}
- {@link #LinearLayoutCompat_dividerPadding alice.tuprologx.android.tuprologmobile:dividerPadding}
- {@link #LinearLayoutCompat_measureWithLargestChild alice.tuprologx.android.tuprologmobile:measureWithLargestChild}
- {@link #LinearLayoutCompat_showDividers alice.tuprologx.android.tuprologmobile:showDividers}
-
- @see #LinearLayoutCompat_android_baselineAligned
- @see #LinearLayoutCompat_android_baselineAlignedChildIndex
- @see #LinearLayoutCompat_android_gravity
- @see #LinearLayoutCompat_android_orientation
- @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, 0x7f01000b, 0x7f0100c2, 0x7f0100c3,
- 0x7f0100c4
- };
- /**
- This symbol is the offset where the {@link android.R.attr#baselineAligned}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
- @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.
- @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.
- @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.
- @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.
- @attr name android:weightSum
- */
- public static final int LinearLayoutCompat_android_weightSum = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#divider}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:divider
- */
- public static final int LinearLayoutCompat_divider = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#dividerPadding}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:dividerPadding
- */
- public static final int LinearLayoutCompat_dividerPadding = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#measureWithLargestChild}
- attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:measureWithLargestChild
- */
- public static final int LinearLayoutCompat_measureWithLargestChild = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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.
-
-
-
-
-Constant Value Description
-none
0
-beginning
1
-middle
2
-end
4
-
- @attr name alice.tuprologx.android.tuprologmobile:showDividers
- */
- public static final int LinearLayoutCompat_showDividers = 7;
- /** Attributes that can be used with a LinearLayoutCompat_Layout.
- Includes the following attributes:
-
-
-
- Attribute Description
- {@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
- {@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
- {@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
- {@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
-
- @see #LinearLayoutCompat_Layout_android_layout_gravity
- @see #LinearLayoutCompat_Layout_android_layout_height
- @see #LinearLayoutCompat_Layout_android_layout_weight
- @see #LinearLayoutCompat_Layout_android_layout_width
- */
- 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.
- @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.
- @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.
- @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.
- @attr name android:layout_width
- */
- public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
- /** Attributes that can be used with a ListPopupWindow.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@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.
- @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.
- @attr name android:dropDownVerticalOffset
- */
- public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
- /** Attributes that can be used with a MenuGroup.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
- {@link #MenuGroup_android_enabled android:enabled}
- {@link #MenuGroup_android_id android:id}
- {@link #MenuGroup_android_menuCategory android:menuCategory}
- {@link #MenuGroup_android_orderInCategory android:orderInCategory}
- {@link #MenuGroup_android_visible android:visible}
-
- @see #MenuGroup_android_checkableBehavior
- @see #MenuGroup_android_enabled
- @see #MenuGroup_android_id
- @see #MenuGroup_android_menuCategory
- @see #MenuGroup_android_orderInCategory
- @see #MenuGroup_android_visible
- */
- 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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @attr name android:visible
- */
- public static final int MenuGroup_android_visible = 2;
- /** Attributes that can be used with a MenuItem.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #MenuItem_actionLayout alice.tuprologx.android.tuprologmobile:actionLayout}
- {@link #MenuItem_actionProviderClass alice.tuprologx.android.tuprologmobile:actionProviderClass}
- {@link #MenuItem_actionViewClass alice.tuprologx.android.tuprologmobile:actionViewClass}
- {@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
- {@link #MenuItem_android_checkable android:checkable}
- {@link #MenuItem_android_checked android:checked}
- {@link #MenuItem_android_enabled android:enabled}
- {@link #MenuItem_android_icon android:icon}
- {@link #MenuItem_android_id android:id}
- {@link #MenuItem_android_menuCategory android:menuCategory}
- {@link #MenuItem_android_numericShortcut android:numericShortcut}
- {@link #MenuItem_android_onClick android:onClick}
- {@link #MenuItem_android_orderInCategory android:orderInCategory}
- {@link #MenuItem_android_title android:title}
- {@link #MenuItem_android_titleCondensed android:titleCondensed}
- {@link #MenuItem_android_visible android:visible}
- {@link #MenuItem_showAsAction alice.tuprologx.android.tuprologmobile:showAsAction}
-
- @see #MenuItem_actionLayout
- @see #MenuItem_actionProviderClass
- @see #MenuItem_actionViewClass
- @see #MenuItem_android_alphabeticShortcut
- @see #MenuItem_android_checkable
- @see #MenuItem_android_checked
- @see #MenuItem_android_enabled
- @see #MenuItem_android_icon
- @see #MenuItem_android_id
- @see #MenuItem_android_menuCategory
- @see #MenuItem_android_numericShortcut
- @see #MenuItem_android_onClick
- @see #MenuItem_android_orderInCategory
- @see #MenuItem_android_title
- @see #MenuItem_android_titleCondensed
- @see #MenuItem_android_visible
- @see #MenuItem_showAsAction
- */
- public static final int[] MenuItem = {
- 0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
- 0x01010194, 0x010101de, 0x010101df, 0x010101e1,
- 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
- 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
- 0x7f0100c8
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionLayout}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:actionLayout
- */
- public static final int MenuItem_actionLayout = 14;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionProviderClass}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:actionProviderClass
- */
- public static final int MenuItem_actionProviderClass = 16;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#actionViewClass}
- attribute's value can be found in the {@link #MenuItem} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:actionViewClass
- */
- public static final int MenuItem_actionViewClass = 15;
- /**
-
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
- attribute's value can be found in the {@link #MenuItem} array.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @attr name android:visible
- */
- public static final int MenuItem_android_visible = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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.
-
-
-
-
-Constant Value Description
-never
0
-ifRoom
1
-always
2
-withText
4
-collapseActionView
8
-
- @attr name alice.tuprologx.android.tuprologmobile:showAsAction
- */
- public static final int MenuItem_showAsAction = 13;
- /** Attributes that can be used with a MenuView.
- Includes the following attributes:
-
-
-
- Attribute Description
- {@link #MenuView_android_headerBackground android:headerBackground}
- {@link #MenuView_android_horizontalDivider android:horizontalDivider}
- {@link #MenuView_android_itemBackground android:itemBackground}
- {@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
- {@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
- {@link #MenuView_android_verticalDivider android:verticalDivider}
- {@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
- {@link #MenuView_preserveIconSpacing alice.tuprologx.android.tuprologmobile:preserveIconSpacing}
-
- @see #MenuView_android_headerBackground
- @see #MenuView_android_horizontalDivider
- @see #MenuView_android_itemBackground
- @see #MenuView_android_itemIconDisabledAlpha
- @see #MenuView_android_itemTextAppearance
- @see #MenuView_android_verticalDivider
- @see #MenuView_android_windowAnimationStyle
- @see #MenuView_preserveIconSpacing
- */
- public static final int[] MenuView = {
- 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
- 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9
- };
- /**
- This symbol is the offset where the {@link android.R.attr#headerBackground}
- attribute's value can be found in the {@link #MenuView} array.
- @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.
- @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.
- @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.
- @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.
- @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.
- @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.
- @attr name android:windowAnimationStyle
- */
- public static final int MenuView_android_windowAnimationStyle = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#preserveIconSpacing}
- attribute's value can be found in the {@link #MenuView} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:preserveIconSpacing
- */
- public static final int MenuView_preserveIconSpacing = 7;
- /** Attributes that can be used with a NavigationView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #NavigationView_android_background android:background}
- {@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
- {@link #NavigationView_android_maxWidth android:maxWidth}
- {@link #NavigationView_elevation alice.tuprologx.android.tuprologmobile:elevation}
- {@link #NavigationView_headerLayout alice.tuprologx.android.tuprologmobile:headerLayout}
- {@link #NavigationView_itemBackground alice.tuprologx.android.tuprologmobile:itemBackground}
- {@link #NavigationView_itemIconTint alice.tuprologx.android.tuprologmobile:itemIconTint}
- {@link #NavigationView_itemTextAppearance alice.tuprologx.android.tuprologmobile:itemTextAppearance}
- {@link #NavigationView_itemTextColor alice.tuprologx.android.tuprologmobile:itemTextColor}
- {@link #NavigationView_menu alice.tuprologx.android.tuprologmobile:menu}
-
- @see #NavigationView_android_background
- @see #NavigationView_android_fitsSystemWindows
- @see #NavigationView_android_maxWidth
- @see #NavigationView_elevation
- @see #NavigationView_headerLayout
- @see #NavigationView_itemBackground
- @see #NavigationView_itemIconTint
- @see #NavigationView_itemTextAppearance
- @see #NavigationView_itemTextColor
- @see #NavigationView_menu
- */
- public static final int[] NavigationView = {
- 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a,
- 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
- 0x7f0100ce, 0x7f0100cf
- };
- /**
- This symbol is the offset where the {@link android.R.attr#background}
- attribute's value can be found in the {@link #NavigationView} array.
- @attr name android:background
- */
- public static final int NavigationView_android_background = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
- attribute's value can be found in the {@link #NavigationView} array.
- @attr name android:fitsSystemWindows
- */
- public static final int NavigationView_android_fitsSystemWindows = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#maxWidth}
- attribute's value can be found in the {@link #NavigationView} array.
- @attr name android:maxWidth
- */
- public static final int NavigationView_android_maxWidth = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#elevation}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:elevation
- */
- public static final int NavigationView_elevation = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#headerLayout}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:headerLayout
- */
- public static final int NavigationView_headerLayout = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#itemBackground}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:itemBackground
- */
- public static final int NavigationView_itemBackground = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#itemIconTint}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:itemIconTint
- */
- public static final int NavigationView_itemIconTint = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#itemTextAppearance}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:itemTextAppearance
- */
- public static final int NavigationView_itemTextAppearance = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#itemTextColor}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:itemTextColor
- */
- public static final int NavigationView_itemTextColor = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#menu}
- attribute's value can be found in the {@link #NavigationView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:menu
- */
- public static final int NavigationView_menu = 4;
- /** Attributes that can be used with a PopupWindow.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #PopupWindow_android_popupBackground android:popupBackground}
- {@link #PopupWindow_overlapAnchor alice.tuprologx.android.tuprologmobile:overlapAnchor}
-
- @see #PopupWindow_android_popupBackground
- @see #PopupWindow_overlapAnchor
- */
- public static final int[] PopupWindow = {
- 0x01010176, 0x7f0100d0
- };
- /**
- This symbol is the offset where the {@link android.R.attr#popupBackground}
- attribute's value can be found in the {@link #PopupWindow} array.
- @attr name android:popupBackground
- */
- public static final int PopupWindow_android_popupBackground = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#overlapAnchor}
- attribute's value can be found in the {@link #PopupWindow} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:overlapAnchor
- */
- public static final int PopupWindow_overlapAnchor = 1;
- /** Attributes that can be used with a PopupWindowBackgroundState.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #PopupWindowBackgroundState_state_above_anchor alice.tuprologx.android.tuprologmobile:state_above_anchor}
-
- @see #PopupWindowBackgroundState_state_above_anchor
- */
- public static final int[] PopupWindowBackgroundState = {
- 0x7f0100d1
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#state_above_anchor}
- attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:state_above_anchor
- */
- public static final int PopupWindowBackgroundState_state_above_anchor = 0;
- /** Attributes that can be used with a RecyclerView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #RecyclerView_android_orientation android:orientation}
- {@link #RecyclerView_layoutManager alice.tuprologx.android.tuprologmobile:layoutManager}
- {@link #RecyclerView_reverseLayout alice.tuprologx.android.tuprologmobile:reverseLayout}
- {@link #RecyclerView_spanCount alice.tuprologx.android.tuprologmobile:spanCount}
- {@link #RecyclerView_stackFromEnd alice.tuprologx.android.tuprologmobile:stackFromEnd}
-
- @see #RecyclerView_android_orientation
- @see #RecyclerView_layoutManager
- @see #RecyclerView_reverseLayout
- @see #RecyclerView_spanCount
- @see #RecyclerView_stackFromEnd
- */
- public static final int[] RecyclerView = {
- 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4,
- 0x7f0100d5
- };
- /**
- This symbol is the offset where the {@link android.R.attr#orientation}
- attribute's value can be found in the {@link #RecyclerView} array.
- @attr name android:orientation
- */
- public static final int RecyclerView_android_orientation = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layoutManager}
- attribute's value can be found in the {@link #RecyclerView} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:layoutManager
- */
- public static final int RecyclerView_layoutManager = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#reverseLayout}
- attribute's value can be found in the {@link #RecyclerView} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:reverseLayout
- */
- public static final int RecyclerView_reverseLayout = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#spanCount}
- attribute's value can be found in the {@link #RecyclerView} array.
-
-
-
Must be an integer value, such as "100
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:spanCount
- */
- public static final int RecyclerView_spanCount = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#stackFromEnd}
- attribute's value can be found in the {@link #RecyclerView} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:stackFromEnd
- */
- public static final int RecyclerView_stackFromEnd = 4;
- /** Attributes that can be used with a ScrimInsetsFrameLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ScrimInsetsFrameLayout_insetForeground alice.tuprologx.android.tuprologmobile:insetForeground}
-
- @see #ScrimInsetsFrameLayout_insetForeground
- */
- public static final int[] ScrimInsetsFrameLayout = {
- 0x7f0100d6
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#insetForeground}
- attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
-
-
-
May be a reference to another resource, in the form "@[+][package :]type :name
"
-or to 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 alice.tuprologx.android.tuprologmobile:insetForeground
- */
- public static final int ScrimInsetsFrameLayout_insetForeground = 0;
- /** Attributes that can be used with a ScrollingViewBehavior_Params.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ScrollingViewBehavior_Params_behavior_overlapTop alice.tuprologx.android.tuprologmobile:behavior_overlapTop}
-
- @see #ScrollingViewBehavior_Params_behavior_overlapTop
- */
- public static final int[] ScrollingViewBehavior_Params = {
- 0x7f0100d7
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#behavior_overlapTop}
- attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:behavior_overlapTop
- */
- public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
- /** Attributes that can be used with a SearchView.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #SearchView_android_focusable android:focusable}
- {@link #SearchView_android_imeOptions android:imeOptions}
- {@link #SearchView_android_inputType android:inputType}
- {@link #SearchView_android_maxWidth android:maxWidth}
- {@link #SearchView_closeIcon alice.tuprologx.android.tuprologmobile:closeIcon}
- {@link #SearchView_commitIcon alice.tuprologx.android.tuprologmobile:commitIcon}
- {@link #SearchView_defaultQueryHint alice.tuprologx.android.tuprologmobile:defaultQueryHint}
- {@link #SearchView_goIcon alice.tuprologx.android.tuprologmobile:goIcon}
- {@link #SearchView_iconifiedByDefault alice.tuprologx.android.tuprologmobile:iconifiedByDefault}
- {@link #SearchView_layout alice.tuprologx.android.tuprologmobile:layout}
- {@link #SearchView_queryBackground alice.tuprologx.android.tuprologmobile:queryBackground}
- {@link #SearchView_queryHint alice.tuprologx.android.tuprologmobile:queryHint}
- {@link #SearchView_searchHintIcon alice.tuprologx.android.tuprologmobile:searchHintIcon}
- {@link #SearchView_searchIcon alice.tuprologx.android.tuprologmobile:searchIcon}
- {@link #SearchView_submitBackground alice.tuprologx.android.tuprologmobile:submitBackground}
- {@link #SearchView_suggestionRowLayout alice.tuprologx.android.tuprologmobile:suggestionRowLayout}
- {@link #SearchView_voiceIcon alice.tuprologx.android.tuprologmobile:voiceIcon}
-
- @see #SearchView_android_focusable
- @see #SearchView_android_imeOptions
- @see #SearchView_android_inputType
- @see #SearchView_android_maxWidth
- @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,
- 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db,
- 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df,
- 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3,
- 0x7f0100e4
- };
- /**
- This symbol is the offset where the {@link android.R.attr#focusable}
- attribute's value can be found in the {@link #SearchView} array.
- @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.
- @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.
- @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.
- @attr name android:maxWidth
- */
- public static final int SearchView_android_maxWidth = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#closeIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:closeIcon
- */
- public static final int SearchView_closeIcon = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#commitIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:commitIcon
- */
- public static final int SearchView_commitIcon = 13;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#defaultQueryHint}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:defaultQueryHint
- */
- public static final int SearchView_defaultQueryHint = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#goIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:goIcon
- */
- public static final int SearchView_goIcon = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#iconifiedByDefault}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:iconifiedByDefault
- */
- public static final int SearchView_iconifiedByDefault = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#layout}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:layout
- */
- public static final int SearchView_layout = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#queryBackground}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:queryBackground
- */
- public static final int SearchView_queryBackground = 15;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#queryHint}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:queryHint
- */
- public static final int SearchView_queryHint = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#searchHintIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:searchHintIcon
- */
- public static final int SearchView_searchHintIcon = 11;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#searchIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:searchIcon
- */
- public static final int SearchView_searchIcon = 10;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#submitBackground}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:submitBackground
- */
- public static final int SearchView_submitBackground = 16;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#suggestionRowLayout}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:suggestionRowLayout
- */
- public static final int SearchView_suggestionRowLayout = 14;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#voiceIcon}
- attribute's value can be found in the {@link #SearchView} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:voiceIcon
- */
- public static final int SearchView_voiceIcon = 12;
- /** Attributes that can be used with a SnackbarLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #SnackbarLayout_android_maxWidth android:maxWidth}
- {@link #SnackbarLayout_elevation alice.tuprologx.android.tuprologmobile:elevation}
- {@link #SnackbarLayout_maxActionInlineWidth alice.tuprologx.android.tuprologmobile:maxActionInlineWidth}
-
- @see #SnackbarLayout_android_maxWidth
- @see #SnackbarLayout_elevation
- @see #SnackbarLayout_maxActionInlineWidth
- */
- public static final int[] SnackbarLayout = {
- 0x0101011f, 0x7f01001a, 0x7f0100e5
- };
- /**
- This symbol is the offset where the {@link android.R.attr#maxWidth}
- attribute's value can be found in the {@link #SnackbarLayout} array.
- @attr name android:maxWidth
- */
- public static final int SnackbarLayout_android_maxWidth = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#elevation}
- attribute's value can be found in the {@link #SnackbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:elevation
- */
- public static final int SnackbarLayout_elevation = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#maxActionInlineWidth}
- attribute's value can be found in the {@link #SnackbarLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:maxActionInlineWidth
- */
- public static final int SnackbarLayout_maxActionInlineWidth = 2;
- /** Attributes that can be used with a Spinner.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #Spinner_android_dropDownWidth android:dropDownWidth}
- {@link #Spinner_android_entries android:entries}
- {@link #Spinner_android_popupBackground android:popupBackground}
- {@link #Spinner_android_prompt android:prompt}
- {@link #Spinner_popupTheme alice.tuprologx.android.tuprologmobile:popupTheme}
-
- @see #Spinner_android_dropDownWidth
- @see #Spinner_android_entries
- @see #Spinner_android_popupBackground
- @see #Spinner_android_prompt
- @see #Spinner_popupTheme
- */
- public static final int[] Spinner = {
- 0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
- 0x7f01001b
- };
- /**
- This symbol is the offset where the {@link android.R.attr#dropDownWidth}
- attribute's value can be found in the {@link #Spinner} array.
- @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.
- @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.
- @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.
- @attr name android:prompt
- */
- public static final int Spinner_android_prompt = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#popupTheme}
- attribute's value can be found in the {@link #Spinner} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:popupTheme
- */
- public static final int Spinner_popupTheme = 4;
- /** Attributes that can be used with a SwitchCompat.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #SwitchCompat_android_textOff android:textOff}
- {@link #SwitchCompat_android_textOn android:textOn}
- {@link #SwitchCompat_android_thumb android:thumb}
- {@link #SwitchCompat_showText alice.tuprologx.android.tuprologmobile:showText}
- {@link #SwitchCompat_splitTrack alice.tuprologx.android.tuprologmobile:splitTrack}
- {@link #SwitchCompat_switchMinWidth alice.tuprologx.android.tuprologmobile:switchMinWidth}
- {@link #SwitchCompat_switchPadding alice.tuprologx.android.tuprologmobile:switchPadding}
- {@link #SwitchCompat_switchTextAppearance alice.tuprologx.android.tuprologmobile:switchTextAppearance}
- {@link #SwitchCompat_thumbTextPadding alice.tuprologx.android.tuprologmobile:thumbTextPadding}
- {@link #SwitchCompat_track alice.tuprologx.android.tuprologmobile:track}
-
- @see #SwitchCompat_android_textOff
- @see #SwitchCompat_android_textOn
- @see #SwitchCompat_android_thumb
- @see #SwitchCompat_showText
- @see #SwitchCompat_splitTrack
- @see #SwitchCompat_switchMinWidth
- @see #SwitchCompat_switchPadding
- @see #SwitchCompat_switchTextAppearance
- @see #SwitchCompat_thumbTextPadding
- @see #SwitchCompat_track
- */
- public static final int[] SwitchCompat = {
- 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6,
- 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea,
- 0x7f0100eb, 0x7f0100ec
- };
- /**
- This symbol is the offset where the {@link android.R.attr#textOff}
- attribute's value can be found in the {@link #SwitchCompat} array.
- @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.
- @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.
- @attr name android:thumb
- */
- public static final int SwitchCompat_android_thumb = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#showText}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:showText
- */
- public static final int SwitchCompat_showText = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#splitTrack}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:splitTrack
- */
- public static final int SwitchCompat_splitTrack = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#switchMinWidth}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:switchMinWidth
- */
- public static final int SwitchCompat_switchMinWidth = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#switchPadding}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:switchPadding
- */
- public static final int SwitchCompat_switchPadding = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#switchTextAppearance}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:switchTextAppearance
- */
- public static final int SwitchCompat_switchTextAppearance = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#thumbTextPadding}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:thumbTextPadding
- */
- public static final int SwitchCompat_thumbTextPadding = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#track}
- attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:track
- */
- public static final int SwitchCompat_track = 3;
- /** Attributes that can be used with a TabItem.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #TabItem_android_icon android:icon}
- {@link #TabItem_android_layout android:layout}
- {@link #TabItem_android_text android:text}
-
- @see #TabItem_android_icon
- @see #TabItem_android_layout
- @see #TabItem_android_text
- */
- public static final int[] TabItem = {
- 0x01010002, 0x010100f2, 0x0101014f
- };
- /**
- This symbol is the offset where the {@link android.R.attr#icon}
- attribute's value can be found in the {@link #TabItem} array.
- @attr name android:icon
- */
- public static final int TabItem_android_icon = 0;
- /**
-
This symbol is the offset where the {@link android.R.attr#layout}
- attribute's value can be found in the {@link #TabItem} array.
- @attr name android:layout
- */
- public static final int TabItem_android_layout = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#text}
- attribute's value can be found in the {@link #TabItem} array.
- @attr name android:text
- */
- public static final int TabItem_android_text = 2;
- /** Attributes that can be used with a TabLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #TabLayout_tabBackground alice.tuprologx.android.tuprologmobile:tabBackground}
- {@link #TabLayout_tabContentStart alice.tuprologx.android.tuprologmobile:tabContentStart}
- {@link #TabLayout_tabGravity alice.tuprologx.android.tuprologmobile:tabGravity}
- {@link #TabLayout_tabIndicatorColor alice.tuprologx.android.tuprologmobile:tabIndicatorColor}
- {@link #TabLayout_tabIndicatorHeight alice.tuprologx.android.tuprologmobile:tabIndicatorHeight}
- {@link #TabLayout_tabMaxWidth alice.tuprologx.android.tuprologmobile:tabMaxWidth}
- {@link #TabLayout_tabMinWidth alice.tuprologx.android.tuprologmobile:tabMinWidth}
- {@link #TabLayout_tabMode alice.tuprologx.android.tuprologmobile:tabMode}
- {@link #TabLayout_tabPadding alice.tuprologx.android.tuprologmobile:tabPadding}
- {@link #TabLayout_tabPaddingBottom alice.tuprologx.android.tuprologmobile:tabPaddingBottom}
- {@link #TabLayout_tabPaddingEnd alice.tuprologx.android.tuprologmobile:tabPaddingEnd}
- {@link #TabLayout_tabPaddingStart alice.tuprologx.android.tuprologmobile:tabPaddingStart}
- {@link #TabLayout_tabPaddingTop alice.tuprologx.android.tuprologmobile:tabPaddingTop}
- {@link #TabLayout_tabSelectedTextColor alice.tuprologx.android.tuprologmobile:tabSelectedTextColor}
- {@link #TabLayout_tabTextAppearance alice.tuprologx.android.tuprologmobile:tabTextAppearance}
- {@link #TabLayout_tabTextColor alice.tuprologx.android.tuprologmobile:tabTextColor}
-
- @see #TabLayout_tabBackground
- @see #TabLayout_tabContentStart
- @see #TabLayout_tabGravity
- @see #TabLayout_tabIndicatorColor
- @see #TabLayout_tabIndicatorHeight
- @see #TabLayout_tabMaxWidth
- @see #TabLayout_tabMinWidth
- @see #TabLayout_tabMode
- @see #TabLayout_tabPadding
- @see #TabLayout_tabPaddingBottom
- @see #TabLayout_tabPaddingEnd
- @see #TabLayout_tabPaddingStart
- @see #TabLayout_tabPaddingTop
- @see #TabLayout_tabSelectedTextColor
- @see #TabLayout_tabTextAppearance
- @see #TabLayout_tabTextColor
- */
- public static final int[] TabLayout = {
- 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
- 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
- 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8,
- 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc
- };
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabBackground}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:tabBackground
- */
- public static final int TabLayout_tabBackground = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabContentStart}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabContentStart
- */
- public static final int TabLayout_tabContentStart = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabGravity}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-fill
0
-center
1
-
- @attr name alice.tuprologx.android.tuprologmobile:tabGravity
- */
- public static final int TabLayout_tabGravity = 5;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabIndicatorColor}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabIndicatorColor
- */
- public static final int TabLayout_tabIndicatorColor = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabIndicatorHeight}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabIndicatorHeight
- */
- public static final int TabLayout_tabIndicatorHeight = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabMaxWidth}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabMaxWidth
- */
- public static final int TabLayout_tabMaxWidth = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabMinWidth}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabMinWidth
- */
- public static final int TabLayout_tabMinWidth = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabMode}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-scrollable
0
-fixed
1
-
- @attr name alice.tuprologx.android.tuprologmobile:tabMode
- */
- public static final int TabLayout_tabMode = 4;
- /**
- This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabPadding}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabPadding
- */
- public static final int TabLayout_tabPadding = 15;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabPaddingBottom}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabPaddingBottom
- */
- public static final int TabLayout_tabPaddingBottom = 14;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabPaddingEnd}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabPaddingEnd
- */
- public static final int TabLayout_tabPaddingEnd = 13;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabPaddingStart}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabPaddingStart
- */
- public static final int TabLayout_tabPaddingStart = 11;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabPaddingTop}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabPaddingTop
- */
- public static final int TabLayout_tabPaddingTop = 12;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabSelectedTextColor}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabSelectedTextColor
- */
- public static final int TabLayout_tabSelectedTextColor = 10;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabTextAppearance}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:tabTextAppearance
- */
- public static final int TabLayout_tabTextAppearance = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#tabTextColor}
- attribute's value can be found in the {@link #TabLayout} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:tabTextColor
- */
- public static final int TabLayout_tabTextColor = 9;
- /** Attributes that can be used with a TextAppearance.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@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_textColor android:textColor}
- {@link #TextAppearance_android_textSize android:textSize}
- {@link #TextAppearance_android_textStyle android:textStyle}
- {@link #TextAppearance_android_typeface android:typeface}
- {@link #TextAppearance_textAllCaps alice.tuprologx.android.tuprologmobile:textAllCaps}
-
- @see #TextAppearance_android_shadowColor
- @see #TextAppearance_android_shadowDx
- @see #TextAppearance_android_shadowDy
- @see #TextAppearance_android_shadowRadius
- @see #TextAppearance_android_textColor
- @see #TextAppearance_android_textSize
- @see #TextAppearance_android_textStyle
- @see #TextAppearance_android_typeface
- @see #TextAppearance_textAllCaps
- */
- public static final int[] TextAppearance = {
- 0x01010095, 0x01010096, 0x01010097, 0x01010098,
- 0x01010161, 0x01010162, 0x01010163, 0x01010164,
- 0x7f010028
- };
- /**
- This symbol is the offset where the {@link android.R.attr#shadowColor}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowColor
- */
- public static final int TextAppearance_android_shadowColor = 4;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowDx}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowDx
- */
- public static final int TextAppearance_android_shadowDx = 5;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowDy}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowDy
- */
- public static final int TextAppearance_android_shadowDy = 6;
- /**
-
This symbol is the offset where the {@link android.R.attr#shadowRadius}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:shadowRadius
- */
- public static final int TextAppearance_android_shadowRadius = 7;
- /**
-
This symbol is the offset where the {@link android.R.attr#textColor}
- attribute's value can be found in the {@link #TextAppearance} array.
- @attr name android:textColor
- */
- public static final int TextAppearance_android_textColor = 3;
- /**
-
This symbol is the offset where the {@link android.R.attr#textSize}
- attribute's value can be found in the {@link #TextAppearance} array.
- @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.
- @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.
- @attr name android:typeface
- */
- public static final int TextAppearance_android_typeface = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.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 to a theme attribute in the form "?[package :][type :]name
".
-
May be a boolean value, either "true
" or "false
".
- @attr name alice.tuprologx.android.tuprologmobile:textAllCaps
- */
- public static final int TextAppearance_textAllCaps = 8;
- /** Attributes that can be used with a TextInputLayout.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #TextInputLayout_android_hint android:hint}
- {@link #TextInputLayout_android_textColorHint android:textColorHint}
- {@link #TextInputLayout_counterEnabled alice.tuprologx.android.tuprologmobile:counterEnabled}
- {@link #TextInputLayout_counterMaxLength alice.tuprologx.android.tuprologmobile:counterMaxLength}
- {@link #TextInputLayout_counterOverflowTextAppearance alice.tuprologx.android.tuprologmobile:counterOverflowTextAppearance}
- {@link #TextInputLayout_counterTextAppearance alice.tuprologx.android.tuprologmobile:counterTextAppearance}
- {@link #TextInputLayout_errorEnabled alice.tuprologx.android.tuprologmobile:errorEnabled}
- {@link #TextInputLayout_errorTextAppearance alice.tuprologx.android.tuprologmobile:errorTextAppearance}
- {@link #TextInputLayout_hintAnimationEnabled alice.tuprologx.android.tuprologmobile:hintAnimationEnabled}
- {@link #TextInputLayout_hintEnabled alice.tuprologx.android.tuprologmobile:hintEnabled}
- {@link #TextInputLayout_hintTextAppearance alice.tuprologx.android.tuprologmobile:hintTextAppearance}
-
- @see #TextInputLayout_android_hint
- @see #TextInputLayout_android_textColorHint
- @see #TextInputLayout_counterEnabled
- @see #TextInputLayout_counterMaxLength
- @see #TextInputLayout_counterOverflowTextAppearance
- @see #TextInputLayout_counterTextAppearance
- @see #TextInputLayout_errorEnabled
- @see #TextInputLayout_errorTextAppearance
- @see #TextInputLayout_hintAnimationEnabled
- @see #TextInputLayout_hintEnabled
- @see #TextInputLayout_hintTextAppearance
- */
- public static final int[] TextInputLayout = {
- 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe,
- 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102,
- 0x7f010103, 0x7f010104, 0x7f010105
- };
- /**
- This symbol is the offset where the {@link android.R.attr#hint}
- attribute's value can be found in the {@link #TextInputLayout} array.
- @attr name android:hint
- */
- public static final int TextInputLayout_android_hint = 1;
- /**
-
This symbol is the offset where the {@link android.R.attr#textColorHint}
- attribute's value can be found in the {@link #TextInputLayout} array.
- @attr name android:textColorHint
- */
- public static final int TextInputLayout_android_textColorHint = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#counterEnabled}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:counterEnabled
- */
- public static final int TextInputLayout_counterEnabled = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#counterMaxLength}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be an integer value, such as "100
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:counterMaxLength
- */
- public static final int TextInputLayout_counterMaxLength = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#counterOverflowTextAppearance}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:counterOverflowTextAppearance
- */
- public static final int TextInputLayout_counterOverflowTextAppearance = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#counterTextAppearance}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:counterTextAppearance
- */
- public static final int TextInputLayout_counterTextAppearance = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#errorEnabled}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:errorEnabled
- */
- public static final int TextInputLayout_errorEnabled = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#errorTextAppearance}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:errorTextAppearance
- */
- public static final int TextInputLayout_errorTextAppearance = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#hintAnimationEnabled}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:hintAnimationEnabled
- */
- public static final int TextInputLayout_hintAnimationEnabled = 10;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#hintEnabled}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a boolean value, either "true
" or "false
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:hintEnabled
- */
- public static final int TextInputLayout_hintEnabled = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#hintTextAppearance}
- attribute's value can be found in the {@link #TextInputLayout} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:hintTextAppearance
- */
- public static final int TextInputLayout_hintTextAppearance = 2;
- /** Attributes that can be used with a Toolbar.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #Toolbar_android_gravity android:gravity}
- {@link #Toolbar_android_minHeight android:minHeight}
- {@link #Toolbar_collapseContentDescription alice.tuprologx.android.tuprologmobile:collapseContentDescription}
- {@link #Toolbar_collapseIcon alice.tuprologx.android.tuprologmobile:collapseIcon}
- {@link #Toolbar_contentInsetEnd alice.tuprologx.android.tuprologmobile:contentInsetEnd}
- {@link #Toolbar_contentInsetLeft alice.tuprologx.android.tuprologmobile:contentInsetLeft}
- {@link #Toolbar_contentInsetRight alice.tuprologx.android.tuprologmobile:contentInsetRight}
- {@link #Toolbar_contentInsetStart alice.tuprologx.android.tuprologmobile:contentInsetStart}
- {@link #Toolbar_logo alice.tuprologx.android.tuprologmobile:logo}
- {@link #Toolbar_logoDescription alice.tuprologx.android.tuprologmobile:logoDescription}
- {@link #Toolbar_maxButtonHeight alice.tuprologx.android.tuprologmobile:maxButtonHeight}
- {@link #Toolbar_navigationContentDescription alice.tuprologx.android.tuprologmobile:navigationContentDescription}
- {@link #Toolbar_navigationIcon alice.tuprologx.android.tuprologmobile:navigationIcon}
- {@link #Toolbar_popupTheme alice.tuprologx.android.tuprologmobile:popupTheme}
- {@link #Toolbar_subtitle alice.tuprologx.android.tuprologmobile:subtitle}
- {@link #Toolbar_subtitleTextAppearance alice.tuprologx.android.tuprologmobile:subtitleTextAppearance}
- {@link #Toolbar_subtitleTextColor alice.tuprologx.android.tuprologmobile:subtitleTextColor}
- {@link #Toolbar_title alice.tuprologx.android.tuprologmobile:title}
- {@link #Toolbar_titleMarginBottom alice.tuprologx.android.tuprologmobile:titleMarginBottom}
- {@link #Toolbar_titleMarginEnd alice.tuprologx.android.tuprologmobile:titleMarginEnd}
- {@link #Toolbar_titleMarginStart alice.tuprologx.android.tuprologmobile:titleMarginStart}
- {@link #Toolbar_titleMarginTop alice.tuprologx.android.tuprologmobile:titleMarginTop}
- {@link #Toolbar_titleMargins alice.tuprologx.android.tuprologmobile:titleMargins}
- {@link #Toolbar_titleTextAppearance alice.tuprologx.android.tuprologmobile:titleTextAppearance}
- {@link #Toolbar_titleTextColor alice.tuprologx.android.tuprologmobile:titleTextColor}
-
- @see #Toolbar_android_gravity
- @see #Toolbar_android_minHeight
- @see #Toolbar_collapseContentDescription
- @see #Toolbar_collapseIcon
- @see #Toolbar_contentInsetEnd
- @see #Toolbar_contentInsetLeft
- @see #Toolbar_contentInsetRight
- @see #Toolbar_contentInsetStart
- @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_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, 0x7f010003, 0x7f010006,
- 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018,
- 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107,
- 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b,
- 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f,
- 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113,
- 0x7f010114
- };
- /**
- This symbol is the offset where the {@link android.R.attr#gravity}
- attribute's value can be found in the {@link #Toolbar} array.
- @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.
- @attr name android:minHeight
- */
- public static final int Toolbar_android_minHeight = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#collapseContentDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:collapseContentDescription
- */
- public static final int Toolbar_collapseContentDescription = 19;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#collapseIcon}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:collapseIcon
- */
- public static final int Toolbar_collapseIcon = 18;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetEnd}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetEnd
- */
- public static final int Toolbar_contentInsetEnd = 6;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetLeft}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetLeft
- */
- public static final int Toolbar_contentInsetLeft = 7;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetRight}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetRight
- */
- public static final int Toolbar_contentInsetRight = 8;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#contentInsetStart}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:contentInsetStart
- */
- public static final int Toolbar_contentInsetStart = 5;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#logo}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:logo
- */
- public static final int Toolbar_logo = 4;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#logoDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:logoDescription
- */
- public static final int Toolbar_logoDescription = 22;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#maxButtonHeight}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:maxButtonHeight
- */
- public static final int Toolbar_maxButtonHeight = 17;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#navigationContentDescription}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:navigationContentDescription
- */
- public static final int Toolbar_navigationContentDescription = 21;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#navigationIcon}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:navigationIcon
- */
- public static final int Toolbar_navigationIcon = 20;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#popupTheme}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:popupTheme
- */
- public static final int Toolbar_popupTheme = 9;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#subtitle}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:subtitle
- */
- public static final int Toolbar_subtitle = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#subtitleTextAppearance}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:subtitleTextAppearance
- */
- public static final int Toolbar_subtitleTextAppearance = 11;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#subtitleTextColor}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:subtitleTextColor
- */
- public static final int Toolbar_subtitleTextColor = 24;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#title}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:title
- */
- public static final int Toolbar_title = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleMarginBottom}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleMarginBottom
- */
- public static final int Toolbar_titleMarginBottom = 16;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleMarginEnd}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleMarginEnd
- */
- public static final int Toolbar_titleMarginEnd = 14;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleMarginStart}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleMarginStart
- */
- public static final int Toolbar_titleMarginStart = 13;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleMarginTop}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleMarginTop
- */
- public static final int Toolbar_titleMarginTop = 15;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleMargins}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleMargins
- */
- public static final int Toolbar_titleMargins = 12;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleTextAppearance}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:titleTextAppearance
- */
- public static final int Toolbar_titleTextAppearance = 10;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#titleTextColor}
- attribute's value can be found in the {@link #Toolbar} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:titleTextColor
- */
- public static final int Toolbar_titleTextColor = 23;
- /** Attributes that can be used with a View.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #View_android_focusable android:focusable}
- {@link #View_android_theme android:theme}
- {@link #View_paddingEnd alice.tuprologx.android.tuprologmobile:paddingEnd}
- {@link #View_paddingStart alice.tuprologx.android.tuprologmobile:paddingStart}
- {@link #View_theme alice.tuprologx.android.tuprologmobile:theme}
-
- @see #View_android_focusable
- @see #View_android_theme
- @see #View_paddingEnd
- @see #View_paddingStart
- @see #View_theme
- */
- public static final int[] View = {
- 0x01010000, 0x010100da, 0x7f010115, 0x7f010116,
- 0x7f010117
- };
- /**
- This symbol is the offset where the {@link android.R.attr#focusable}
- attribute's value can be found in the {@link #View} array.
- @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.
- @attr name android:theme
- */
- public static final int View_android_theme = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#paddingEnd}
- attribute's value can be found in the {@link #View} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:paddingEnd
- */
- public static final int View_paddingEnd = 3;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#paddingStart}
- attribute's value can be found in the {@link #View} array.
-
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:paddingStart
- */
- public static final int View_paddingStart = 2;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#theme}
- attribute's value can be found in the {@link #View} array.
-
-
-
Must be a reference to another resource, in the form "@[+][package :]type :name
"
-or to a theme attribute in the form "?[package :][type :]name
".
- @attr name alice.tuprologx.android.tuprologmobile:theme
- */
- public static final int View_theme = 4;
- /** Attributes that can be used with a ViewBackgroundHelper.
-
Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ViewBackgroundHelper_android_background android:background}
- {@link #ViewBackgroundHelper_backgroundTint alice.tuprologx.android.tuprologmobile:backgroundTint}
- {@link #ViewBackgroundHelper_backgroundTintMode alice.tuprologx.android.tuprologmobile:backgroundTintMode}
-
- @see #ViewBackgroundHelper_android_background
- @see #ViewBackgroundHelper_backgroundTint
- @see #ViewBackgroundHelper_backgroundTintMode
- */
- public static final int[] ViewBackgroundHelper = {
- 0x010100d4, 0x7f010118, 0x7f010119
- };
- /**
- This symbol is the offset where the {@link android.R.attr#background}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
- @attr name android:background
- */
- public static final int ViewBackgroundHelper_android_background = 0;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#backgroundTint}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-
Must be a color value, in the form of "#rgb
", "#argb
",
-"#rrggbb
", or "#aarrggbb
".
-
This may also be a reference to a resource (in the form
-"@[package :]type :name
") or
-theme attribute (in the form
-"?[package :][type :]name
")
-containing a value of this type.
- @attr name alice.tuprologx.android.tuprologmobile:backgroundTint
- */
- public static final int ViewBackgroundHelper_backgroundTint = 1;
- /**
-
This symbol is the offset where the {@link alice.tuprologx.android.tuprologmobile.R.attr#backgroundTintMode}
- attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-
Must be one of the following constant values.
-
-
-
-
-Constant Value Description
-src_over
3
-src_in
5
-src_atop
9
-multiply
14
-screen
15
-
- @attr name alice.tuprologx.android.tuprologmobile:backgroundTintMode
- */
- public static final int ViewBackgroundHelper_backgroundTintMode = 2;
- /** Attributes that can be used with a ViewStubCompat.
- Includes the following attributes:
-
-
-
- Attribute Description
- {@link #ViewStubCompat_android_id android:id}
- {@link #ViewStubCompat_android_inflatedId android:inflatedId}
- {@link #ViewStubCompat_android_layout android:layout}
-
- @see #ViewStubCompat_android_id
- @see #ViewStubCompat_android_inflatedId
- @see #ViewStubCompat_android_layout
- */
- 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.
- @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.
- @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.
- @attr name android:layout
- */
- public static final int ViewStubCompat_android_layout = 1;
- };
-}
diff --git a/2p-android/trunk/build/generated/source/r/debug/android/support/design/R.java b/2p-android/trunk/build/generated/source/r/debug/android/support/design/R.java
deleted file mode 100644
index 8bfa5d1..0000000
--- a/2p-android/trunk/build/generated/source/r/debug/android/support/design/R.java
+++ /dev/null
@@ -1,1592 +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 android.support.design;
-
-public final class R {
- public static final class anim {
- public static final int abc_fade_in = 0x7f040000;
- public static final int abc_fade_out = 0x7f040001;
- public static final int abc_grow_fade_in_from_bottom = 0x7f040002;
- public static final int abc_popup_enter = 0x7f040003;
- public static final int abc_popup_exit = 0x7f040004;
- public static final int abc_shrink_fade_out_from_bottom = 0x7f040005;
- public static final int abc_slide_in_bottom = 0x7f040006;
- public static final int abc_slide_in_top = 0x7f040007;
- public static final int abc_slide_out_bottom = 0x7f040008;
- public static final int abc_slide_out_top = 0x7f040009;
- public static final int design_bottom_sheet_slide_in = 0x7f04000a;
- public static final int design_bottom_sheet_slide_out = 0x7f04000b;
- public static final int design_fab_in = 0x7f04000c;
- public static final int design_fab_out = 0x7f04000d;
- public static final int design_snackbar_in = 0x7f04000e;
- public static final int design_snackbar_out = 0x7f04000f;
- }
- public static final class attr {
- public static final int actionBarDivider = 0x7f01003e;
- public static final int actionBarItemBackground = 0x7f01003f;
- public static final int actionBarPopupTheme = 0x7f010038;
- public static final int actionBarSize = 0x7f01003d;
- public static final int actionBarSplitStyle = 0x7f01003a;
- public static final int actionBarStyle = 0x7f010039;
- public static final int actionBarTabBarStyle = 0x7f010034;
- public static final int actionBarTabStyle = 0x7f010033;
- public static final int actionBarTabTextStyle = 0x7f010035;
- public static final int actionBarTheme = 0x7f01003b;
- public static final int actionBarWidgetTheme = 0x7f01003c;
- public static final int actionButtonStyle = 0x7f010058;
- public static final int actionDropDownStyle = 0x7f010054;
- public static final int actionLayout = 0x7f0100c6;
- public static final int actionMenuTextAppearance = 0x7f010040;
- public static final int actionMenuTextColor = 0x7f010041;
- public static final int actionModeBackground = 0x7f010044;
- public static final int actionModeCloseButtonStyle = 0x7f010043;
- public static final int actionModeCloseDrawable = 0x7f010046;
- public static final int actionModeCopyDrawable = 0x7f010048;
- public static final int actionModeCutDrawable = 0x7f010047;
- public static final int actionModeFindDrawable = 0x7f01004c;
- public static final int actionModePasteDrawable = 0x7f010049;
- public static final int actionModePopupWindowStyle = 0x7f01004e;
- public static final int actionModeSelectAllDrawable = 0x7f01004a;
- public static final int actionModeShareDrawable = 0x7f01004b;
- public static final int actionModeSplitBackground = 0x7f010045;
- public static final int actionModeStyle = 0x7f010042;
- public static final int actionModeWebSearchDrawable = 0x7f01004d;
- public static final int actionOverflowButtonStyle = 0x7f010036;
- public static final int actionOverflowMenuStyle = 0x7f010037;
- public static final int actionProviderClass = 0x7f0100c8;
- public static final int actionViewClass = 0x7f0100c7;
- public static final int activityChooserViewStyle = 0x7f010060;
- public static final int alertDialogButtonGroupStyle = 0x7f010083;
- public static final int alertDialogCenterButtons = 0x7f010084;
- public static final int alertDialogStyle = 0x7f010082;
- public static final int alertDialogTheme = 0x7f010085;
- public static final int allowStacking = 0x7f010099;
- public static final int arrowHeadLength = 0x7f0100b8;
- public static final int arrowShaftLength = 0x7f0100b9;
- public static final int autoCompleteTextViewStyle = 0x7f01008a;
- public static final int background = 0x7f01000c;
- public static final int backgroundSplit = 0x7f01000e;
- public static final int backgroundStacked = 0x7f01000d;
- public static final int backgroundTint = 0x7f010118;
- public static final int backgroundTintMode = 0x7f010119;
- public static final int barLength = 0x7f0100ba;
- public static final int behavior_hideable = 0x7f010098;
- public static final int behavior_overlapTop = 0x7f0100d7;
- public static final int behavior_peekHeight = 0x7f010097;
- public static final int borderWidth = 0x7f0100bf;
- public static final int borderlessButtonStyle = 0x7f01005d;
- public static final int bottomSheetDialogTheme = 0x7f0100b1;
- public static final int bottomSheetStyle = 0x7f0100b2;
- public static final int buttonBarButtonStyle = 0x7f01005a;
- public static final int buttonBarNegativeButtonStyle = 0x7f010088;
- public static final int buttonBarNeutralButtonStyle = 0x7f010089;
- public static final int buttonBarPositiveButtonStyle = 0x7f010087;
- public static final int buttonBarStyle = 0x7f010059;
- public static final int buttonPanelSideLayout = 0x7f01001f;
- public static final int buttonStyle = 0x7f01008b;
- public static final int buttonStyleSmall = 0x7f01008c;
- public static final int buttonTint = 0x7f0100a9;
- public static final int buttonTintMode = 0x7f0100aa;
- public static final int checkboxStyle = 0x7f01008d;
- public static final int checkedTextViewStyle = 0x7f01008e;
- public static final int closeIcon = 0x7f0100dc;
- public static final int closeItemLayout = 0x7f01001c;
- public static final int collapseContentDescription = 0x7f01010f;
- public static final int collapseIcon = 0x7f01010e;
- public static final int collapsedTitleGravity = 0x7f0100a6;
- public static final int collapsedTitleTextAppearance = 0x7f0100a2;
- public static final int color = 0x7f0100b4;
- public static final int colorAccent = 0x7f01007b;
- public static final int colorButtonNormal = 0x7f01007f;
- public static final int colorControlActivated = 0x7f01007d;
- public static final int colorControlHighlight = 0x7f01007e;
- public static final int colorControlNormal = 0x7f01007c;
- public static final int colorPrimary = 0x7f010079;
- public static final int colorPrimaryDark = 0x7f01007a;
- public static final int colorSwitchThumbNormal = 0x7f010080;
- public static final int commitIcon = 0x7f0100e1;
- public static final int contentInsetEnd = 0x7f010017;
- public static final int contentInsetLeft = 0x7f010018;
- public static final int contentInsetRight = 0x7f010019;
- public static final int contentInsetStart = 0x7f010016;
- public static final int contentScrim = 0x7f0100a3;
- public static final int controlBackground = 0x7f010081;
- public static final int counterEnabled = 0x7f010101;
- public static final int counterMaxLength = 0x7f010102;
- public static final int counterOverflowTextAppearance = 0x7f010104;
- public static final int counterTextAppearance = 0x7f010103;
- public static final int customNavigationLayout = 0x7f01000f;
- public static final int defaultQueryHint = 0x7f0100db;
- public static final int dialogPreferredPadding = 0x7f010052;
- public static final int dialogTheme = 0x7f010051;
- public static final int displayOptions = 0x7f010005;
- public static final int divider = 0x7f01000b;
- public static final int dividerHorizontal = 0x7f01005f;
- public static final int dividerPadding = 0x7f0100c4;
- public static final int dividerVertical = 0x7f01005e;
- public static final int drawableSize = 0x7f0100b6;
- public static final int drawerArrowStyle = 0x7f010000;
- public static final int dropDownListViewStyle = 0x7f010071;
- public static final int dropdownListPreferredItemHeight = 0x7f010055;
- public static final int editTextBackground = 0x7f010066;
- public static final int editTextColor = 0x7f010065;
- public static final int editTextStyle = 0x7f01008f;
- public static final int elevation = 0x7f01001a;
- public static final int errorEnabled = 0x7f0100ff;
- public static final int errorTextAppearance = 0x7f010100;
- public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
- public static final int expanded = 0x7f010024;
- public static final int expandedTitleGravity = 0x7f0100a7;
- public static final int expandedTitleMargin = 0x7f01009c;
- public static final int expandedTitleMarginBottom = 0x7f0100a0;
- public static final int expandedTitleMarginEnd = 0x7f01009f;
- public static final int expandedTitleMarginStart = 0x7f01009d;
- public static final int expandedTitleMarginTop = 0x7f01009e;
- public static final int expandedTitleTextAppearance = 0x7f0100a1;
- public static final int fabSize = 0x7f0100bd;
- public static final int foregroundInsidePadding = 0x7f0100c1;
- public static final int gapBetweenBars = 0x7f0100b7;
- public static final int goIcon = 0x7f0100dd;
- public static final int headerLayout = 0x7f0100cf;
- public static final int height = 0x7f010001;
- public static final int hideOnContentScroll = 0x7f010015;
- public static final int hintAnimationEnabled = 0x7f010105;
- public static final int hintEnabled = 0x7f0100fe;
- public static final int hintTextAppearance = 0x7f0100fd;
- public static final int homeAsUpIndicator = 0x7f010057;
- public static final int homeLayout = 0x7f010010;
- public static final int icon = 0x7f010009;
- public static final int iconifiedByDefault = 0x7f0100d9;
- public static final int imageButtonStyle = 0x7f010067;
- public static final int indeterminateProgressStyle = 0x7f010012;
- public static final int initialActivityCount = 0x7f01001d;
- public static final int insetForeground = 0x7f0100d6;
- public static final int isLightTheme = 0x7f010002;
- public static final int itemBackground = 0x7f0100cd;
- public static final int itemIconTint = 0x7f0100cb;
- public static final int itemPadding = 0x7f010014;
- public static final int itemTextAppearance = 0x7f0100ce;
- public static final int itemTextColor = 0x7f0100cc;
- public static final int keylines = 0x7f0100ab;
- public static final int layout = 0x7f0100d8;
- public static final int layoutManager = 0x7f0100d2;
- public static final int layout_anchor = 0x7f0100ae;
- public static final int layout_anchorGravity = 0x7f0100b0;
- public static final int layout_behavior = 0x7f0100ad;
- public static final int layout_collapseMode = 0x7f01009a;
- public static final int layout_collapseParallaxMultiplier = 0x7f01009b;
- public static final int layout_keyline = 0x7f0100af;
- public static final int layout_scrollFlags = 0x7f010025;
- public static final int layout_scrollInterpolator = 0x7f010026;
- public static final int listChoiceBackgroundIndicator = 0x7f010078;
- public static final int listDividerAlertDialog = 0x7f010053;
- public static final int listItemLayout = 0x7f010023;
- public static final int listLayout = 0x7f010020;
- public static final int listPopupWindowStyle = 0x7f010072;
- public static final int listPreferredItemHeight = 0x7f01006c;
- public static final int listPreferredItemHeightLarge = 0x7f01006e;
- public static final int listPreferredItemHeightSmall = 0x7f01006d;
- public static final int listPreferredItemPaddingLeft = 0x7f01006f;
- public static final int listPreferredItemPaddingRight = 0x7f010070;
- public static final int logo = 0x7f01000a;
- public static final int logoDescription = 0x7f010112;
- public static final int maxActionInlineWidth = 0x7f0100e5;
- public static final int maxButtonHeight = 0x7f01010d;
- public static final int measureWithLargestChild = 0x7f0100c2;
- public static final int menu = 0x7f0100ca;
- public static final int multiChoiceItemLayout = 0x7f010021;
- public static final int navigationContentDescription = 0x7f010111;
- public static final int navigationIcon = 0x7f010110;
- public static final int navigationMode = 0x7f010004;
- public static final int overlapAnchor = 0x7f0100d0;
- public static final int paddingEnd = 0x7f010116;
- public static final int paddingStart = 0x7f010115;
- public static final int panelBackground = 0x7f010075;
- public static final int panelMenuListTheme = 0x7f010077;
- public static final int panelMenuListWidth = 0x7f010076;
- public static final int popupMenuStyle = 0x7f010063;
- public static final int popupTheme = 0x7f01001b;
- public static final int popupWindowStyle = 0x7f010064;
- public static final int preserveIconSpacing = 0x7f0100c9;
- public static final int pressedTranslationZ = 0x7f0100be;
- public static final int progressBarPadding = 0x7f010013;
- public static final int progressBarStyle = 0x7f010011;
- public static final int queryBackground = 0x7f0100e3;
- public static final int queryHint = 0x7f0100da;
- public static final int radioButtonStyle = 0x7f010090;
- public static final int ratingBarStyle = 0x7f010091;
- public static final int ratingBarStyleIndicator = 0x7f010092;
- public static final int ratingBarStyleSmall = 0x7f010093;
- public static final int reverseLayout = 0x7f0100d4;
- public static final int rippleColor = 0x7f0100bc;
- public static final int searchHintIcon = 0x7f0100df;
- public static final int searchIcon = 0x7f0100de;
- public static final int searchViewStyle = 0x7f01006b;
- public static final int seekBarStyle = 0x7f010094;
- public static final int selectableItemBackground = 0x7f01005b;
- public static final int selectableItemBackgroundBorderless = 0x7f01005c;
- public static final int showAsAction = 0x7f0100c5;
- public static final int showDividers = 0x7f0100c3;
- public static final int showText = 0x7f0100ec;
- public static final int singleChoiceItemLayout = 0x7f010022;
- public static final int spanCount = 0x7f0100d3;
- public static final int spinBars = 0x7f0100b5;
- public static final int spinnerDropDownItemStyle = 0x7f010056;
- public static final int spinnerStyle = 0x7f010095;
- public static final int splitTrack = 0x7f0100eb;
- public static final int srcCompat = 0x7f010027;
- public static final int stackFromEnd = 0x7f0100d5;
- public static final int state_above_anchor = 0x7f0100d1;
- public static final int statusBarBackground = 0x7f0100ac;
- public static final int statusBarScrim = 0x7f0100a4;
- public static final int submitBackground = 0x7f0100e4;
- public static final int subtitle = 0x7f010006;
- public static final int subtitleTextAppearance = 0x7f010107;
- public static final int subtitleTextColor = 0x7f010114;
- public static final int subtitleTextStyle = 0x7f010008;
- public static final int suggestionRowLayout = 0x7f0100e2;
- public static final int switchMinWidth = 0x7f0100e9;
- public static final int switchPadding = 0x7f0100ea;
- public static final int switchStyle = 0x7f010096;
- public static final int switchTextAppearance = 0x7f0100e8;
- public static final int tabBackground = 0x7f0100f0;
- public static final int tabContentStart = 0x7f0100ef;
- public static final int tabGravity = 0x7f0100f2;
- public static final int tabIndicatorColor = 0x7f0100ed;
- public static final int tabIndicatorHeight = 0x7f0100ee;
- public static final int tabMaxWidth = 0x7f0100f4;
- public static final int tabMinWidth = 0x7f0100f3;
- public static final int tabMode = 0x7f0100f1;
- public static final int tabPadding = 0x7f0100fc;
- public static final int tabPaddingBottom = 0x7f0100fb;
- public static final int tabPaddingEnd = 0x7f0100fa;
- public static final int tabPaddingStart = 0x7f0100f8;
- public static final int tabPaddingTop = 0x7f0100f9;
- public static final int tabSelectedTextColor = 0x7f0100f7;
- public static final int tabTextAppearance = 0x7f0100f5;
- public static final int tabTextColor = 0x7f0100f6;
- public static final int textAllCaps = 0x7f010028;
- public static final int textAppearanceLargePopupMenu = 0x7f01004f;
- public static final int textAppearanceListItem = 0x7f010073;
- public static final int textAppearanceListItemSmall = 0x7f010074;
- public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
- public static final int textAppearanceSearchResultTitle = 0x7f010068;
- public static final int textAppearanceSmallPopupMenu = 0x7f010050;
- public static final int textColorAlertDialogListItem = 0x7f010086;
- public static final int textColorError = 0x7f0100b3;
- public static final int textColorSearchUrl = 0x7f01006a;
- public static final int theme = 0x7f010117;
- public static final int thickness = 0x7f0100bb;
- public static final int thumbTextPadding = 0x7f0100e7;
- public static final int title = 0x7f010003;
- public static final int titleEnabled = 0x7f0100a8;
- public static final int titleMarginBottom = 0x7f01010c;
- public static final int titleMarginEnd = 0x7f01010a;
- public static final int titleMarginStart = 0x7f010109;
- public static final int titleMarginTop = 0x7f01010b;
- public static final int titleMargins = 0x7f010108;
- public static final int titleTextAppearance = 0x7f010106;
- public static final int titleTextColor = 0x7f010113;
- public static final int titleTextStyle = 0x7f010007;
- public static final int toolbarId = 0x7f0100a5;
- public static final int toolbarNavigationButtonStyle = 0x7f010062;
- public static final int toolbarStyle = 0x7f010061;
- public static final int track = 0x7f0100e6;
- public static final int useCompatPadding = 0x7f0100c0;
- public static final int voiceIcon = 0x7f0100e0;
- public static final int windowActionBar = 0x7f010029;
- public static final int windowActionBarOverlay = 0x7f01002b;
- public static final int windowActionModeOverlay = 0x7f01002c;
- public static final int windowFixedHeightMajor = 0x7f010030;
- public static final int windowFixedHeightMinor = 0x7f01002e;
- public static final int windowFixedWidthMajor = 0x7f01002d;
- public static final int windowFixedWidthMinor = 0x7f01002f;
- public static final int windowMinWidthMajor = 0x7f010031;
- public static final int windowMinWidthMinor = 0x7f010032;
- public static final int windowNoTitle = 0x7f01002a;
- }
- public static final class bool {
- public static final int abc_action_bar_embed_tabs = 0x7f060003;
- public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060001;
- public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060004;
- public static final int abc_allow_stacked_button_bar = 0x7f060000;
- public static final int abc_config_actionMenuItemAllCaps = 0x7f060005;
- public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060002;
- public static final int abc_config_closeDialogWhenTouchOutside = 0x7f060006;
- public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060007;
- }
- public static final class color {
- public static final int abc_background_cache_hint_selector_material_dark = 0x7f0a0044;
- public static final int abc_background_cache_hint_selector_material_light = 0x7f0a0045;
- public static final int abc_color_highlight_material = 0x7f0a0046;
- public static final int abc_input_method_navigation_guard = 0x7f0a0000;
- public static final int abc_primary_text_disable_only_material_dark = 0x7f0a0047;
- public static final int abc_primary_text_disable_only_material_light = 0x7f0a0048;
- public static final int abc_primary_text_material_dark = 0x7f0a0049;
- public static final int abc_primary_text_material_light = 0x7f0a004a;
- public static final int abc_search_url_text = 0x7f0a004b;
- public static final int abc_search_url_text_normal = 0x7f0a0001;
- public static final int abc_search_url_text_pressed = 0x7f0a0002;
- public static final int abc_search_url_text_selected = 0x7f0a0003;
- public static final int abc_secondary_text_material_dark = 0x7f0a004c;
- public static final int abc_secondary_text_material_light = 0x7f0a004d;
- public static final int accent_material_dark = 0x7f0a0004;
- public static final int accent_material_light = 0x7f0a0005;
- public static final int background_floating_material_dark = 0x7f0a0006;
- public static final int background_floating_material_light = 0x7f0a0007;
- public static final int background_material_dark = 0x7f0a0008;
- public static final int background_material_light = 0x7f0a0009;
- public static final int bright_foreground_disabled_material_dark = 0x7f0a000a;
- public static final int bright_foreground_disabled_material_light = 0x7f0a000b;
- public static final int bright_foreground_inverse_material_dark = 0x7f0a000c;
- public static final int bright_foreground_inverse_material_light = 0x7f0a000d;
- public static final int bright_foreground_material_dark = 0x7f0a000e;
- public static final int bright_foreground_material_light = 0x7f0a000f;
- public static final int button_material_dark = 0x7f0a0010;
- public static final int button_material_light = 0x7f0a0011;
- public static final int design_fab_shadow_end_color = 0x7f0a0012;
- public static final int design_fab_shadow_mid_color = 0x7f0a0013;
- public static final int design_fab_shadow_start_color = 0x7f0a0014;
- public static final int design_fab_stroke_end_inner_color = 0x7f0a0015;
- public static final int design_fab_stroke_end_outer_color = 0x7f0a0016;
- public static final int design_fab_stroke_top_inner_color = 0x7f0a0017;
- public static final int design_fab_stroke_top_outer_color = 0x7f0a0018;
- public static final int design_snackbar_background_color = 0x7f0a0019;
- public static final int design_textinput_error_color_dark = 0x7f0a001a;
- public static final int design_textinput_error_color_light = 0x7f0a001b;
- public static final int dim_foreground_disabled_material_dark = 0x7f0a001c;
- public static final int dim_foreground_disabled_material_light = 0x7f0a001d;
- public static final int dim_foreground_material_dark = 0x7f0a001e;
- public static final int dim_foreground_material_light = 0x7f0a001f;
- public static final int foreground_material_dark = 0x7f0a0020;
- public static final int foreground_material_light = 0x7f0a0021;
- public static final int highlighted_text_material_dark = 0x7f0a0022;
- public static final int highlighted_text_material_light = 0x7f0a0023;
- public static final int hint_foreground_material_dark = 0x7f0a0024;
- public static final int hint_foreground_material_light = 0x7f0a0025;
- public static final int material_blue_grey_800 = 0x7f0a0026;
- public static final int material_blue_grey_900 = 0x7f0a0027;
- public static final int material_blue_grey_950 = 0x7f0a0028;
- public static final int material_deep_teal_200 = 0x7f0a0029;
- public static final int material_deep_teal_500 = 0x7f0a002a;
- public static final int material_grey_100 = 0x7f0a002b;
- public static final int material_grey_300 = 0x7f0a002c;
- public static final int material_grey_50 = 0x7f0a002d;
- public static final int material_grey_600 = 0x7f0a002e;
- public static final int material_grey_800 = 0x7f0a002f;
- public static final int material_grey_850 = 0x7f0a0030;
- public static final int material_grey_900 = 0x7f0a0031;
- public static final int primary_dark_material_dark = 0x7f0a0032;
- public static final int primary_dark_material_light = 0x7f0a0033;
- public static final int primary_material_dark = 0x7f0a0034;
- public static final int primary_material_light = 0x7f0a0035;
- public static final int primary_text_default_material_dark = 0x7f0a0036;
- public static final int primary_text_default_material_light = 0x7f0a0037;
- public static final int primary_text_disabled_material_dark = 0x7f0a0038;
- public static final int primary_text_disabled_material_light = 0x7f0a0039;
- public static final int ripple_material_dark = 0x7f0a003a;
- public static final int ripple_material_light = 0x7f0a003b;
- public static final int secondary_text_default_material_dark = 0x7f0a003c;
- public static final int secondary_text_default_material_light = 0x7f0a003d;
- public static final int secondary_text_disabled_material_dark = 0x7f0a003e;
- public static final int secondary_text_disabled_material_light = 0x7f0a003f;
- public static final int switch_thumb_disabled_material_dark = 0x7f0a0040;
- public static final int switch_thumb_disabled_material_light = 0x7f0a0041;
- public static final int switch_thumb_material_dark = 0x7f0a004e;
- public static final int switch_thumb_material_light = 0x7f0a004f;
- public static final int switch_thumb_normal_material_dark = 0x7f0a0042;
- public static final int switch_thumb_normal_material_light = 0x7f0a0043;
- }
- public static final class dimen {
- public static final int abc_action_bar_content_inset_material = 0x7f07000d;
- public static final int abc_action_bar_default_height_material = 0x7f070001;
- public static final int abc_action_bar_default_padding_end_material = 0x7f07000e;
- public static final int abc_action_bar_default_padding_start_material = 0x7f07000f;
- public static final int abc_action_bar_icon_vertical_padding_material = 0x7f07001a;
- public static final int abc_action_bar_overflow_padding_end_material = 0x7f07001b;
- public static final int abc_action_bar_overflow_padding_start_material = 0x7f07001c;
- public static final int abc_action_bar_progress_bar_size = 0x7f070002;
- public static final int abc_action_bar_stacked_max_height = 0x7f07001d;
- public static final int abc_action_bar_stacked_tab_max_width = 0x7f07001e;
- public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f07001f;
- public static final int abc_action_bar_subtitle_top_margin_material = 0x7f070020;
- public static final int abc_action_button_min_height_material = 0x7f070021;
- public static final int abc_action_button_min_width_material = 0x7f070022;
- public static final int abc_action_button_min_width_overflow_material = 0x7f070023;
- public static final int abc_alert_dialog_button_bar_height = 0x7f070000;
- public static final int abc_button_inset_horizontal_material = 0x7f070024;
- public static final int abc_button_inset_vertical_material = 0x7f070025;
- public static final int abc_button_padding_horizontal_material = 0x7f070026;
- public static final int abc_button_padding_vertical_material = 0x7f070027;
- public static final int abc_config_prefDialogWidth = 0x7f070005;
- public static final int abc_control_corner_material = 0x7f070028;
- public static final int abc_control_inset_material = 0x7f070029;
- public static final int abc_control_padding_material = 0x7f07002a;
- public static final int abc_dialog_fixed_height_major = 0x7f070006;
- public static final int abc_dialog_fixed_height_minor = 0x7f070007;
- public static final int abc_dialog_fixed_width_major = 0x7f070008;
- public static final int abc_dialog_fixed_width_minor = 0x7f070009;
- public static final int abc_dialog_list_padding_vertical_material = 0x7f07002b;
- public static final int abc_dialog_min_width_major = 0x7f07000a;
- public static final int abc_dialog_min_width_minor = 0x7f07000b;
- public static final int abc_dialog_padding_material = 0x7f07002c;
- public static final int abc_dialog_padding_top_material = 0x7f07002d;
- public static final int abc_disabled_alpha_material_dark = 0x7f07002e;
- public static final int abc_disabled_alpha_material_light = 0x7f07002f;
- public static final int abc_dropdownitem_icon_width = 0x7f070030;
- public static final int abc_dropdownitem_text_padding_left = 0x7f070031;
- public static final int abc_dropdownitem_text_padding_right = 0x7f070032;
- public static final int abc_edit_text_inset_bottom_material = 0x7f070033;
- public static final int abc_edit_text_inset_horizontal_material = 0x7f070034;
- public static final int abc_edit_text_inset_top_material = 0x7f070035;
- public static final int abc_floating_window_z = 0x7f070036;
- public static final int abc_list_item_padding_horizontal_material = 0x7f070037;
- public static final int abc_panel_menu_list_width = 0x7f070038;
- public static final int abc_search_view_preferred_width = 0x7f070039;
- public static final int abc_search_view_text_min_width = 0x7f07000c;
- public static final int abc_seekbar_track_background_height_material = 0x7f07003a;
- public static final int abc_seekbar_track_progress_height_material = 0x7f07003b;
- public static final int abc_select_dialog_padding_start_material = 0x7f07003c;
- public static final int abc_switch_padding = 0x7f070018;
- public static final int abc_text_size_body_1_material = 0x7f07003d;
- public static final int abc_text_size_body_2_material = 0x7f07003e;
- public static final int abc_text_size_button_material = 0x7f07003f;
- public static final int abc_text_size_caption_material = 0x7f070040;
- public static final int abc_text_size_display_1_material = 0x7f070041;
- public static final int abc_text_size_display_2_material = 0x7f070042;
- public static final int abc_text_size_display_3_material = 0x7f070043;
- public static final int abc_text_size_display_4_material = 0x7f070044;
- public static final int abc_text_size_headline_material = 0x7f070045;
- public static final int abc_text_size_large_material = 0x7f070046;
- public static final int abc_text_size_medium_material = 0x7f070047;
- public static final int abc_text_size_menu_material = 0x7f070048;
- public static final int abc_text_size_small_material = 0x7f070049;
- public static final int abc_text_size_subhead_material = 0x7f07004a;
- public static final int abc_text_size_subtitle_material_toolbar = 0x7f070003;
- public static final int abc_text_size_title_material = 0x7f07004b;
- public static final int abc_text_size_title_material_toolbar = 0x7f070004;
- public static final int design_appbar_elevation = 0x7f07004d;
- public static final int design_bottom_sheet_modal_elevation = 0x7f07004e;
- public static final int design_bottom_sheet_modal_peek_height = 0x7f07004f;
- public static final int design_fab_border_width = 0x7f070050;
- public static final int design_fab_elevation = 0x7f070051;
- public static final int design_fab_image_size = 0x7f070052;
- public static final int design_fab_size_mini = 0x7f070053;
- public static final int design_fab_size_normal = 0x7f070054;
- public static final int design_fab_translation_z_pressed = 0x7f070055;
- public static final int design_navigation_elevation = 0x7f070056;
- public static final int design_navigation_icon_padding = 0x7f070057;
- public static final int design_navigation_icon_size = 0x7f070058;
- public static final int design_navigation_max_width = 0x7f070010;
- public static final int design_navigation_padding_bottom = 0x7f070059;
- public static final int design_navigation_separator_vertical_padding = 0x7f07005a;
- public static final int design_snackbar_action_inline_max_width = 0x7f070011;
- public static final int design_snackbar_background_corner_radius = 0x7f070012;
- public static final int design_snackbar_elevation = 0x7f07005b;
- public static final int design_snackbar_extra_spacing_horizontal = 0x7f070013;
- public static final int design_snackbar_max_width = 0x7f070014;
- public static final int design_snackbar_min_width = 0x7f070015;
- public static final int design_snackbar_padding_horizontal = 0x7f07005c;
- public static final int design_snackbar_padding_vertical = 0x7f07005d;
- public static final int design_snackbar_padding_vertical_2lines = 0x7f070016;
- public static final int design_snackbar_text_size = 0x7f07005e;
- public static final int design_tab_max_width = 0x7f07005f;
- public static final int design_tab_scrollable_min_width = 0x7f070017;
- public static final int design_tab_text_size = 0x7f070060;
- public static final int design_tab_text_size_2line = 0x7f070061;
- public static final int disabled_alpha_material_dark = 0x7f070062;
- public static final int disabled_alpha_material_light = 0x7f070063;
- public static final int highlight_alpha_material_colored = 0x7f070064;
- public static final int highlight_alpha_material_dark = 0x7f070065;
- public static final int highlight_alpha_material_light = 0x7f070066;
- public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f070067;
- public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f070068;
- public static final int item_touch_helper_swipe_escape_velocity = 0x7f070069;
- public static final int notification_large_icon_height = 0x7f07006b;
- public static final int notification_large_icon_width = 0x7f07006c;
- public static final int notification_subtext_size = 0x7f07006d;
- }
- public static final class drawable {
- public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
- public static final int abc_action_bar_item_background_material = 0x7f020001;
- public static final int abc_btn_borderless_material = 0x7f020002;
- public static final int abc_btn_check_material = 0x7f020003;
- public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
- public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
- public static final int abc_btn_colored_material = 0x7f020006;
- public static final int abc_btn_default_mtrl_shape = 0x7f020007;
- public static final int abc_btn_radio_material = 0x7f020008;
- public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
- public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
- public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
- public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
- public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
- public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
- public static final int abc_cab_background_internal_bg = 0x7f02000f;
- public static final int abc_cab_background_top_material = 0x7f020010;
- public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
- public static final int abc_control_background_material = 0x7f020012;
- public static final int abc_dialog_material_background_dark = 0x7f020013;
- public static final int abc_dialog_material_background_light = 0x7f020014;
- public static final int abc_edit_text_material = 0x7f020015;
- public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
- public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
- public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
- public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
- public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
- public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
- public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
- public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
- public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
- public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
- public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
- public static final int abc_ic_star_black_16dp = 0x7f020021;
- public static final int abc_ic_star_black_36dp = 0x7f020022;
- public static final int abc_ic_star_half_black_16dp = 0x7f020023;
- public static final int abc_ic_star_half_black_36dp = 0x7f020024;
- public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
- public static final int abc_item_background_holo_dark = 0x7f020026;
- public static final int abc_item_background_holo_light = 0x7f020027;
- public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
- public static final int abc_list_focused_holo = 0x7f020029;
- public static final int abc_list_longpressed_holo = 0x7f02002a;
- public static final int abc_list_pressed_holo_dark = 0x7f02002b;
- public static final int abc_list_pressed_holo_light = 0x7f02002c;
- public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
- public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
- public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
- public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
- public static final int abc_list_selector_holo_dark = 0x7f020031;
- public static final int abc_list_selector_holo_light = 0x7f020032;
- public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
- public static final int abc_popup_background_mtrl_mult = 0x7f020034;
- public static final int abc_ratingbar_full_material = 0x7f020035;
- public static final int abc_ratingbar_indicator_material = 0x7f020036;
- public static final int abc_ratingbar_small_material = 0x7f020037;
- public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
- public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
- public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
- public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
- public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
- public static final int abc_seekbar_thumb_material = 0x7f02003d;
- public static final int abc_seekbar_track_material = 0x7f02003e;
- public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
- public static final int abc_spinner_textfield_background_material = 0x7f020040;
- public static final int abc_switch_thumb_material = 0x7f020041;
- public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
- public static final int abc_tab_indicator_material = 0x7f020043;
- public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
- public static final int abc_text_cursor_material = 0x7f020045;
- public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
- public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
- public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
- public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
- public static final int abc_textfield_search_material = 0x7f02004a;
- public static final int design_fab_background = 0x7f02004f;
- public static final int design_snackbar_background = 0x7f020050;
- public static final int notification_template_icon_bg = 0x7f02008c;
- }
- public static final class id {
- public static final int action0 = 0x7f0b00ab;
- public static final int action_bar = 0x7f0b005a;
- public static final int action_bar_activity_content = 0x7f0b0000;
- public static final int action_bar_container = 0x7f0b0059;
- public static final int action_bar_root = 0x7f0b0055;
- public static final int action_bar_spinner = 0x7f0b0001;
- public static final int action_bar_subtitle = 0x7f0b003b;
- public static final int action_bar_title = 0x7f0b003a;
- public static final int action_context_bar = 0x7f0b005b;
- public static final int action_divider = 0x7f0b00af;
- public static final int action_menu_divider = 0x7f0b0002;
- public static final int action_menu_presenter = 0x7f0b0003;
- public static final int action_mode_bar = 0x7f0b0057;
- public static final int action_mode_bar_stub = 0x7f0b0056;
- public static final int action_mode_close_button = 0x7f0b003c;
- public static final int activity_chooser_view_content = 0x7f0b003d;
- public static final int alertTitle = 0x7f0b0049;
- public static final int always = 0x7f0b0033;
- public static final int beginning = 0x7f0b0031;
- public static final int bottom = 0x7f0b001d;
- public static final int buttonPanel = 0x7f0b0044;
- public static final int cancel_action = 0x7f0b00ac;
- public static final int center = 0x7f0b001e;
- public static final int center_horizontal = 0x7f0b001f;
- public static final int center_vertical = 0x7f0b0020;
- public static final int checkbox = 0x7f0b0052;
- public static final int chronometer = 0x7f0b00b2;
- public static final int clip_horizontal = 0x7f0b002c;
- public static final int clip_vertical = 0x7f0b002d;
- public static final int collapseActionView = 0x7f0b0034;
- public static final int contentPanel = 0x7f0b004a;
- public static final int custom = 0x7f0b0050;
- public static final int customPanel = 0x7f0b004f;
- public static final int decor_content_parent = 0x7f0b0058;
- public static final int default_activity_button = 0x7f0b0040;
- public static final int design_bottom_sheet = 0x7f0b0092;
- public static final int design_menu_item_action_area = 0x7f0b0099;
- public static final int design_menu_item_action_area_stub = 0x7f0b0098;
- public static final int design_menu_item_text = 0x7f0b0097;
- public static final int design_navigation_view = 0x7f0b0096;
- public static final int disableHome = 0x7f0b000e;
- public static final int edit_query = 0x7f0b005c;
- public static final int end = 0x7f0b0021;
- public static final int end_padder = 0x7f0b00b7;
- public static final int enterAlways = 0x7f0b0015;
- public static final int enterAlwaysCollapsed = 0x7f0b0016;
- public static final int exitUntilCollapsed = 0x7f0b0017;
- public static final int expand_activities_button = 0x7f0b003e;
- public static final int expanded_menu = 0x7f0b0051;
- public static final int fill = 0x7f0b002e;
- public static final int fill_horizontal = 0x7f0b002f;
- public static final int fill_vertical = 0x7f0b0022;
- public static final int fixed = 0x7f0b0038;
- public static final int home = 0x7f0b0004;
- public static final int homeAsUp = 0x7f0b000f;
- public static final int icon = 0x7f0b0042;
- public static final int ifRoom = 0x7f0b0035;
- public static final int image = 0x7f0b003f;
- public static final int info = 0x7f0b00b6;
- public static final int item_touch_helper_previous_elevation = 0x7f0b0005;
- public static final int left = 0x7f0b0023;
- public static final int line1 = 0x7f0b00b0;
- public static final int line3 = 0x7f0b00b4;
- public static final int listMode = 0x7f0b000b;
- public static final int list_item = 0x7f0b0041;
- public static final int media_actions = 0x7f0b00ae;
- public static final int middle = 0x7f0b0032;
- public static final int mini = 0x7f0b0030;
- public static final int multiply = 0x7f0b0027;
- public static final int navigation_header_container = 0x7f0b0095;
- public static final int never = 0x7f0b0036;
- public static final int none = 0x7f0b0010;
- public static final int normal = 0x7f0b000c;
- public static final int parallax = 0x7f0b001b;
- public static final int parentPanel = 0x7f0b0046;
- public static final int pin = 0x7f0b001c;
- public static final int progress_circular = 0x7f0b0006;
- public static final int progress_horizontal = 0x7f0b0007;
- public static final int radio = 0x7f0b0054;
- public static final int right = 0x7f0b0024;
- public static final int screen = 0x7f0b0028;
- public static final int scroll = 0x7f0b0018;
- public static final int scrollIndicatorDown = 0x7f0b004e;
- public static final int scrollIndicatorUp = 0x7f0b004b;
- public static final int scrollView = 0x7f0b004c;
- public static final int scrollable = 0x7f0b0039;
- public static final int search_badge = 0x7f0b005e;
- public static final int search_bar = 0x7f0b005d;
- public static final int search_button = 0x7f0b005f;
- public static final int search_close_btn = 0x7f0b0064;
- public static final int search_edit_frame = 0x7f0b0060;
- public static final int search_go_btn = 0x7f0b0066;
- public static final int search_mag_icon = 0x7f0b0061;
- public static final int search_plate = 0x7f0b0062;
- public static final int search_src_text = 0x7f0b0063;
- public static final int search_voice_btn = 0x7f0b0067;
- public static final int select_dialog_listview = 0x7f0b0068;
- public static final int shortcut = 0x7f0b0053;
- public static final int showCustom = 0x7f0b0011;
- public static final int showHome = 0x7f0b0012;
- public static final int showTitle = 0x7f0b0013;
- public static final int snackbar_action = 0x7f0b0094;
- public static final int snackbar_text = 0x7f0b0093;
- public static final int snap = 0x7f0b0019;
- public static final int spacer = 0x7f0b0045;
- public static final int split_action_bar = 0x7f0b0008;
- public static final int src_atop = 0x7f0b0029;
- public static final int src_in = 0x7f0b002a;
- public static final int src_over = 0x7f0b002b;
- public static final int start = 0x7f0b0025;
- public static final int status_bar_latest_event_content = 0x7f0b00ad;
- public static final int submit_area = 0x7f0b0065;
- public static final int tabMode = 0x7f0b000d;
- public static final int text = 0x7f0b00b5;
- public static final int text2 = 0x7f0b00b3;
- public static final int textSpacerNoButtons = 0x7f0b004d;
- public static final int time = 0x7f0b00b1;
- public static final int title = 0x7f0b0043;
- public static final int title_template = 0x7f0b0048;
- public static final int top = 0x7f0b0026;
- public static final int topPanel = 0x7f0b0047;
- public static final int touch_outside = 0x7f0b0091;
- public static final int up = 0x7f0b0009;
- public static final int useLogo = 0x7f0b0014;
- public static final int view_offset_helper = 0x7f0b000a;
- public static final int withText = 0x7f0b0037;
- public static final int wrap_content = 0x7f0b001a;
- }
- public static final class integer {
- public static final int abc_config_activityDefaultDur = 0x7f090002;
- public static final int abc_config_activityShortDur = 0x7f090003;
- public static final int abc_max_action_buttons = 0x7f090000;
- public static final int bottom_sheet_slide_duration = 0x7f090004;
- public static final int cancel_button_image_alpha = 0x7f090005;
- public static final int design_snackbar_text_max_lines = 0x7f090001;
- public static final int status_bar_notification_info_maxnum = 0x7f090006;
- }
- public static final class layout {
- public static final int abc_action_bar_title_item = 0x7f030000;
- public static final int abc_action_bar_up_container = 0x7f030001;
- public static final int abc_action_bar_view_list_nav_layout = 0x7f030002;
- public static final int abc_action_menu_item_layout = 0x7f030003;
- public static final int abc_action_menu_layout = 0x7f030004;
- public static final int abc_action_mode_bar = 0x7f030005;
- public static final int abc_action_mode_close_item_material = 0x7f030006;
- public static final int abc_activity_chooser_view = 0x7f030007;
- public static final int abc_activity_chooser_view_list_item = 0x7f030008;
- public static final int abc_alert_dialog_button_bar_material = 0x7f030009;
- public static final int abc_alert_dialog_material = 0x7f03000a;
- public static final int abc_dialog_title_material = 0x7f03000b;
- public static final int abc_expanded_menu_layout = 0x7f03000c;
- public static final int abc_list_menu_item_checkbox = 0x7f03000d;
- public static final int abc_list_menu_item_icon = 0x7f03000e;
- public static final int abc_list_menu_item_layout = 0x7f03000f;
- public static final int abc_list_menu_item_radio = 0x7f030010;
- public static final int abc_popup_menu_item_layout = 0x7f030011;
- public static final int abc_screen_content_include = 0x7f030012;
- public static final int abc_screen_simple = 0x7f030013;
- public static final int abc_screen_simple_overlay_action_mode = 0x7f030014;
- public static final int abc_screen_toolbar = 0x7f030015;
- public static final int abc_search_dropdown_item_icons_2line = 0x7f030016;
- public static final int abc_search_view = 0x7f030017;
- public static final int abc_select_dialog_material = 0x7f030018;
- public static final int design_bottom_sheet_dialog = 0x7f030022;
- public static final int design_layout_snackbar = 0x7f030023;
- public static final int design_layout_snackbar_include = 0x7f030024;
- public static final int design_layout_tab_icon = 0x7f030025;
- public static final int design_layout_tab_text = 0x7f030026;
- public static final int design_menu_item_action_area = 0x7f030027;
- public static final int design_navigation_item = 0x7f030028;
- public static final int design_navigation_item_header = 0x7f030029;
- public static final int design_navigation_item_separator = 0x7f03002a;
- public static final int design_navigation_item_subheader = 0x7f03002b;
- public static final int design_navigation_menu = 0x7f03002c;
- public static final int design_navigation_menu_item = 0x7f03002d;
- public static final int notification_media_action = 0x7f030037;
- public static final int notification_media_cancel_action = 0x7f030038;
- public static final int notification_template_big_media = 0x7f030039;
- public static final int notification_template_big_media_narrow = 0x7f03003a;
- public static final int notification_template_lines = 0x7f03003b;
- public static final int notification_template_media = 0x7f03003c;
- public static final int notification_template_part_chronometer = 0x7f03003d;
- public static final int notification_template_part_time = 0x7f03003e;
- public static final int select_dialog_item_material = 0x7f03003f;
- public static final int select_dialog_multichoice_material = 0x7f030040;
- public static final int select_dialog_singlechoice_material = 0x7f030041;
- public static final int support_simple_spinner_dropdown_item = 0x7f030043;
- }
- public static final class string {
- public static final int abc_action_bar_home_description = 0x7f050000;
- public static final int abc_action_bar_home_description_format = 0x7f050001;
- public static final int abc_action_bar_home_subtitle_description_format = 0x7f050002;
- public static final int abc_action_bar_up_description = 0x7f050003;
- public static final int abc_action_menu_overflow_description = 0x7f050004;
- public static final int abc_action_mode_done = 0x7f050005;
- public static final int abc_activity_chooser_view_see_all = 0x7f050006;
- public static final int abc_activitychooserview_choose_application = 0x7f050007;
- public static final int abc_capital_off = 0x7f050008;
- public static final int abc_capital_on = 0x7f050009;
- public static final int abc_search_hint = 0x7f05000a;
- public static final int abc_searchview_description_clear = 0x7f05000b;
- public static final int abc_searchview_description_query = 0x7f05000c;
- public static final int abc_searchview_description_search = 0x7f05000d;
- public static final int abc_searchview_description_submit = 0x7f05000e;
- public static final int abc_searchview_description_voice = 0x7f05000f;
- public static final int abc_shareactionprovider_share_with = 0x7f050010;
- public static final int abc_shareactionprovider_share_with_application = 0x7f050011;
- public static final int abc_toolbar_collapse_description = 0x7f050012;
- public static final int appbar_scrolling_view_behavior = 0x7f050018;
- public static final int bottom_sheet_behavior = 0x7f05001a;
- public static final int character_counter_pattern = 0x7f05001b;
- public static final int status_bar_notification_info_overflow = 0x7f050013;
- }
- public static final class style {
- public static final int AlertDialog_AppCompat = 0x7f080087;
- public static final int AlertDialog_AppCompat_Light = 0x7f080088;
- public static final int Animation_AppCompat_Dialog = 0x7f080089;
- public static final int Animation_AppCompat_DropDownUp = 0x7f08008a;
- public static final int Animation_Design_BottomSheetDialog = 0x7f08008b;
- public static final int Base_AlertDialog_AppCompat = 0x7f080090;
- public static final int Base_AlertDialog_AppCompat_Light = 0x7f080091;
- public static final int Base_Animation_AppCompat_Dialog = 0x7f080092;
- public static final int Base_Animation_AppCompat_DropDownUp = 0x7f080093;
- public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f080095;
- public static final int Base_DialogWindowTitle_AppCompat = 0x7f080094;
- public static final int Base_TextAppearance_AppCompat = 0x7f080037;
- public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f080038;
- public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f080039;
- public static final int Base_TextAppearance_AppCompat_Button = 0x7f080021;
- public static final int Base_TextAppearance_AppCompat_Caption = 0x7f08003a;
- public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f08003b;
- public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f08003c;
- public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f08003d;
- public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f08003e;
- public static final int Base_TextAppearance_AppCompat_Headline = 0x7f08003f;
- public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f08000c;
- public static final int Base_TextAppearance_AppCompat_Large = 0x7f080040;
- public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f08000d;
- public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f080041;
- public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f080042;
- public static final int Base_TextAppearance_AppCompat_Medium = 0x7f080043;
- public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f08000e;
- public static final int Base_TextAppearance_AppCompat_Menu = 0x7f080044;
- public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f080096;
- public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f080045;
- public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f080046;
- public static final int Base_TextAppearance_AppCompat_Small = 0x7f080047;
- public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f08000f;
- public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f080048;
- public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f080010;
- public static final int Base_TextAppearance_AppCompat_Title = 0x7f080049;
- public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f080011;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f080080;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f08004a;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f08004b;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f08004c;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f08004d;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f08004e;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f08004f;
- public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f080050;
- public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f080081;
- public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f080097;
- public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f080051;
- public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f080052;
- public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f080053;
- public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f080054;
- public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f080098;
- public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f080055;
- public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f080056;
- public static final int Base_ThemeOverlay_AppCompat = 0x7f0800a1;
- public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0800a2;
- public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0800a3;
- public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0800a4;
- public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0800a5;
- public static final int Base_Theme_AppCompat = 0x7f080057;
- public static final int Base_Theme_AppCompat_CompactMenu = 0x7f080099;
- public static final int Base_Theme_AppCompat_Dialog = 0x7f080012;
- public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f080002;
- public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f08009a;
- public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f08009b;
- public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f08009c;
- public static final int Base_Theme_AppCompat_Light = 0x7f080058;
- public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f08009d;
- public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f080013;
- public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f080003;
- public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f08009e;
- public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f08009f;
- public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0800a0;
- public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f080014;
- public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f080015;
- public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f08001d;
- public static final int Base_V12_Widget_AppCompat_EditText = 0x7f08001e;
- public static final int Base_V21_Theme_AppCompat = 0x7f080059;
- public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f08005a;
- public static final int Base_V21_Theme_AppCompat_Light = 0x7f08005b;
- public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f08005c;
- public static final int Base_V22_Theme_AppCompat = 0x7f08007e;
- public static final int Base_V22_Theme_AppCompat_Light = 0x7f08007f;
- public static final int Base_V23_Theme_AppCompat = 0x7f080082;
- public static final int Base_V23_Theme_AppCompat_Light = 0x7f080083;
- public static final int Base_V7_Theme_AppCompat = 0x7f0800a6;
- public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0800a7;
- public static final int Base_V7_Theme_AppCompat_Light = 0x7f0800a8;
- public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0800a9;
- public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0800aa;
- public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0800ab;
- public static final int Base_Widget_AppCompat_ActionBar = 0x7f0800ac;
- public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0800ad;
- public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0800ae;
- public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f08005d;
- public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f08005e;
- public static final int Base_Widget_AppCompat_ActionButton = 0x7f08005f;
- public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f080060;
- public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f080061;
- public static final int Base_Widget_AppCompat_ActionMode = 0x7f0800af;
- public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0800b0;
- public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f08001f;
- public static final int Base_Widget_AppCompat_Button = 0x7f080062;
- public static final int Base_Widget_AppCompat_ButtonBar = 0x7f080066;
- public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0800b2;
- public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f080063;
- public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f080064;
- public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0800b1;
- public static final int Base_Widget_AppCompat_Button_Colored = 0x7f080084;
- public static final int Base_Widget_AppCompat_Button_Small = 0x7f080065;
- public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f080067;
- public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f080068;
- public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0800b3;
- public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f080000;
- public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0800b4;
- public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f080069;
- public static final int Base_Widget_AppCompat_EditText = 0x7f080020;
- public static final int Base_Widget_AppCompat_ImageButton = 0x7f08006a;
- public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0800b5;
- public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0800b6;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0800b7;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f08006b;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f08006c;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f08006d;
- public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f08006e;
- public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f08006f;
- public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f080070;
- public static final int Base_Widget_AppCompat_ListView = 0x7f080071;
- public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f080072;
- public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f080073;
- public static final int Base_Widget_AppCompat_PopupMenu = 0x7f080074;
- public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f080075;
- public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0800b8;
- public static final int Base_Widget_AppCompat_ProgressBar = 0x7f080016;
- public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f080017;
- public static final int Base_Widget_AppCompat_RatingBar = 0x7f080076;
- public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f080085;
- public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f080086;
- public static final int Base_Widget_AppCompat_SearchView = 0x7f0800b9;
- public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0800ba;
- public static final int Base_Widget_AppCompat_SeekBar = 0x7f080077;
- public static final int Base_Widget_AppCompat_Spinner = 0x7f080078;
- public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f080004;
- public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f080079;
- public static final int Base_Widget_AppCompat_Toolbar = 0x7f0800bb;
- public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f08007a;
- public static final int Base_Widget_Design_TabLayout = 0x7f0800bc;
- public static final int Platform_AppCompat = 0x7f080018;
- public static final int Platform_AppCompat_Light = 0x7f080019;
- public static final int Platform_ThemeOverlay_AppCompat = 0x7f08007b;
- public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f08007c;
- public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f08007d;
- public static final int Platform_V11_AppCompat = 0x7f08001a;
- public static final int Platform_V11_AppCompat_Light = 0x7f08001b;
- public static final int Platform_V14_AppCompat = 0x7f080022;
- public static final int Platform_V14_AppCompat_Light = 0x7f080023;
- public static final int Platform_Widget_AppCompat_Spinner = 0x7f08001c;
- public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f080029;
- public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f08002a;
- public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f08002b;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f08002c;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f08002d;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f08002e;
- public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f080034;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f08002f;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f080030;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f080031;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f080032;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f080033;
- public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f080035;
- public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f080036;
- public static final int TextAppearance_AppCompat = 0x7f0800c1;
- public static final int TextAppearance_AppCompat_Body1 = 0x7f0800c2;
- public static final int TextAppearance_AppCompat_Body2 = 0x7f0800c3;
- public static final int TextAppearance_AppCompat_Button = 0x7f0800c4;
- public static final int TextAppearance_AppCompat_Caption = 0x7f0800c5;
- public static final int TextAppearance_AppCompat_Display1 = 0x7f0800c6;
- public static final int TextAppearance_AppCompat_Display2 = 0x7f0800c7;
- public static final int TextAppearance_AppCompat_Display3 = 0x7f0800c8;
- public static final int TextAppearance_AppCompat_Display4 = 0x7f0800c9;
- public static final int TextAppearance_AppCompat_Headline = 0x7f0800ca;
- public static final int TextAppearance_AppCompat_Inverse = 0x7f0800cb;
- public static final int TextAppearance_AppCompat_Large = 0x7f0800cc;
- public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0800cd;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0800ce;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0800cf;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0800d0;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0800d1;
- public static final int TextAppearance_AppCompat_Medium = 0x7f0800d2;
- public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0800d3;
- public static final int TextAppearance_AppCompat_Menu = 0x7f0800d4;
- public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0800d5;
- public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0800d6;
- public static final int TextAppearance_AppCompat_Small = 0x7f0800d7;
- public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0800d8;
- public static final int TextAppearance_AppCompat_Subhead = 0x7f0800d9;
- public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0800da;
- public static final int TextAppearance_AppCompat_Title = 0x7f0800db;
- public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0800dc;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0800dd;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0800de;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0800df;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0800e0;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0800e1;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0800e2;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0800e3;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0800e4;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0800e5;
- public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0800e6;
- public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0800e7;
- public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0800e8;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0800e9;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0800ea;
- public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0800eb;
- public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0800ec;
- public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0800ed;
- public static final int TextAppearance_Design_Counter = 0x7f0800ee;
- public static final int TextAppearance_Design_Counter_Overflow = 0x7f0800ef;
- public static final int TextAppearance_Design_Error = 0x7f0800f0;
- public static final int TextAppearance_Design_Hint = 0x7f0800f1;
- public static final int TextAppearance_Design_Snackbar_Message = 0x7f0800f2;
- public static final int TextAppearance_Design_Tab = 0x7f0800f3;
- public static final int TextAppearance_StatusBar_EventContent = 0x7f080024;
- public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f080025;
- public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f080026;
- public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f080027;
- public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f080028;
- public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0800f4;
- public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0800f5;
- public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0800f6;
- public static final int ThemeOverlay_AppCompat = 0x7f08010b;
- public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f08010c;
- public static final int ThemeOverlay_AppCompat_Dark = 0x7f08010d;
- public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f08010e;
- public static final int ThemeOverlay_AppCompat_Light = 0x7f08010f;
- public static final int Theme_AppCompat = 0x7f0800f7;
- public static final int Theme_AppCompat_CompactMenu = 0x7f0800f8;
- public static final int Theme_AppCompat_DayNight = 0x7f080005;
- public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f080006;
- public static final int Theme_AppCompat_DayNight_Dialog = 0x7f080007;
- public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f08000a;
- public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f080008;
- public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f080009;
- public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f08000b;
- public static final int Theme_AppCompat_Dialog = 0x7f0800f9;
- public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0800fc;
- public static final int Theme_AppCompat_Dialog_Alert = 0x7f0800fa;
- public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0800fb;
- public static final int Theme_AppCompat_Light = 0x7f0800fd;
- public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0800fe;
- public static final int Theme_AppCompat_Light_Dialog = 0x7f0800ff;
- public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f080102;
- public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f080100;
- public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f080101;
- public static final int Theme_AppCompat_Light_NoActionBar = 0x7f080103;
- public static final int Theme_AppCompat_NoActionBar = 0x7f080104;
- public static final int Theme_Design = 0x7f080105;
- public static final int Theme_Design_BottomSheetDialog = 0x7f080106;
- public static final int Theme_Design_Light = 0x7f080107;
- public static final int Theme_Design_Light_BottomSheetDialog = 0x7f080108;
- public static final int Theme_Design_Light_NoActionBar = 0x7f080109;
- public static final int Theme_Design_NoActionBar = 0x7f08010a;
- public static final int Widget_AppCompat_ActionBar = 0x7f080110;
- public static final int Widget_AppCompat_ActionBar_Solid = 0x7f080111;
- public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f080112;
- public static final int Widget_AppCompat_ActionBar_TabText = 0x7f080113;
- public static final int Widget_AppCompat_ActionBar_TabView = 0x7f080114;
- public static final int Widget_AppCompat_ActionButton = 0x7f080115;
- public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f080116;
- public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f080117;
- public static final int Widget_AppCompat_ActionMode = 0x7f080118;
- public static final int Widget_AppCompat_ActivityChooserView = 0x7f080119;
- public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f08011a;
- public static final int Widget_AppCompat_Button = 0x7f08011b;
- public static final int Widget_AppCompat_ButtonBar = 0x7f080121;
- public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f080122;
- public static final int Widget_AppCompat_Button_Borderless = 0x7f08011c;
- public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f08011d;
- public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f08011e;
- public static final int Widget_AppCompat_Button_Colored = 0x7f08011f;
- public static final int Widget_AppCompat_Button_Small = 0x7f080120;
- public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f080123;
- public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f080124;
- public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f080125;
- public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f080126;
- public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f080127;
- public static final int Widget_AppCompat_EditText = 0x7f080128;
- public static final int Widget_AppCompat_ImageButton = 0x7f080129;
- public static final int Widget_AppCompat_Light_ActionBar = 0x7f08012a;
- public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f08012b;
- public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f08012c;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f08012d;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f08012e;
- public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f08012f;
- public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f080130;
- public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f080131;
- public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f080132;
- public static final int Widget_AppCompat_Light_ActionButton = 0x7f080133;
- public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f080134;
- public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f080135;
- public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f080136;
- public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f080137;
- public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f080138;
- public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f080139;
- public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f08013a;
- public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f08013b;
- public static final int Widget_AppCompat_Light_PopupMenu = 0x7f08013c;
- public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f08013d;
- public static final int Widget_AppCompat_Light_SearchView = 0x7f08013e;
- public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f08013f;
- public static final int Widget_AppCompat_ListPopupWindow = 0x7f080140;
- public static final int Widget_AppCompat_ListView = 0x7f080141;
- public static final int Widget_AppCompat_ListView_DropDown = 0x7f080142;
- public static final int Widget_AppCompat_ListView_Menu = 0x7f080143;
- public static final int Widget_AppCompat_PopupMenu = 0x7f080144;
- public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f080145;
- public static final int Widget_AppCompat_PopupWindow = 0x7f080146;
- public static final int Widget_AppCompat_ProgressBar = 0x7f080147;
- public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f080148;
- public static final int Widget_AppCompat_RatingBar = 0x7f080149;
- public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f08014a;
- public static final int Widget_AppCompat_RatingBar_Small = 0x7f08014b;
- public static final int Widget_AppCompat_SearchView = 0x7f08014c;
- public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f08014d;
- public static final int Widget_AppCompat_SeekBar = 0x7f08014e;
- public static final int Widget_AppCompat_Spinner = 0x7f08014f;
- public static final int Widget_AppCompat_Spinner_DropDown = 0x7f080150;
- public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f080151;
- public static final int Widget_AppCompat_Spinner_Underlined = 0x7f080152;
- public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f080153;
- public static final int Widget_AppCompat_Toolbar = 0x7f080154;
- public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f080155;
- public static final int Widget_Design_AppBarLayout = 0x7f080156;
- public static final int Widget_Design_BottomSheet_Modal = 0x7f080157;
- public static final int Widget_Design_CollapsingToolbar = 0x7f080158;
- public static final int Widget_Design_CoordinatorLayout = 0x7f080159;
- public static final int Widget_Design_FloatingActionButton = 0x7f08015a;
- public static final int Widget_Design_NavigationView = 0x7f08015b;
- public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f08015c;
- public static final int Widget_Design_Snackbar = 0x7f08015d;
- public static final int Widget_Design_TabLayout = 0x7f080001;
- public static final int Widget_Design_TextInputLayout = 0x7f08015e;
- }
- public static final class styleable {
- public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
- public static final int[] ActionBarLayout = { 0x010100b3 };
- public static final int ActionBarLayout_android_layout_gravity = 0;
- public static final int ActionBar_background = 10;
- public static final int ActionBar_backgroundSplit = 12;
- public static final int ActionBar_backgroundStacked = 11;
- public static final int ActionBar_contentInsetEnd = 21;
- public static final int ActionBar_contentInsetLeft = 22;
- public static final int ActionBar_contentInsetRight = 23;
- public static final int ActionBar_contentInsetStart = 20;
- public static final int ActionBar_customNavigationLayout = 13;
- public static final int ActionBar_displayOptions = 3;
- public static final int ActionBar_divider = 9;
- public static final int ActionBar_elevation = 24;
- public static final int ActionBar_height = 0;
- public static final int ActionBar_hideOnContentScroll = 19;
- public static final int ActionBar_homeAsUpIndicator = 26;
- public static final int ActionBar_homeLayout = 14;
- public static final int ActionBar_icon = 7;
- public static final int ActionBar_indeterminateProgressStyle = 16;
- public static final int ActionBar_itemPadding = 18;
- public static final int ActionBar_logo = 8;
- public static final int ActionBar_navigationMode = 2;
- public static final int ActionBar_popupTheme = 25;
- public static final int ActionBar_progressBarPadding = 17;
- public static final int ActionBar_progressBarStyle = 15;
- public static final int ActionBar_subtitle = 4;
- public static final int ActionBar_subtitleTextStyle = 6;
- public static final int ActionBar_title = 1;
- public static final int ActionBar_titleTextStyle = 5;
- public static final int[] ActionMenuItemView = { 0x0101013f };
- public static final int ActionMenuItemView_android_minWidth = 0;
- public static final int[] ActionMenuView = { };
- public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
- public static final int ActionMode_background = 3;
- public static final int ActionMode_backgroundSplit = 4;
- public static final int ActionMode_closeItemLayout = 5;
- public static final int ActionMode_height = 0;
- public static final int ActionMode_subtitleTextStyle = 2;
- public static final int ActionMode_titleTextStyle = 1;
- public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
- public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
- public static final int ActivityChooserView_initialActivityCount = 0;
- public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
- public static final int AlertDialog_android_layout = 0;
- public static final int AlertDialog_buttonPanelSideLayout = 1;
- public static final int AlertDialog_listItemLayout = 5;
- public static final int AlertDialog_listLayout = 2;
- public static final int AlertDialog_multiChoiceItemLayout = 3;
- public static final int AlertDialog_singleChoiceItemLayout = 4;
- public static final int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 };
- public static final int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 };
- public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0;
- public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
- public static final int AppBarLayout_android_background = 0;
- public static final int AppBarLayout_elevation = 1;
- public static final int AppBarLayout_expanded = 2;
- public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
- public static final int AppCompatImageView_android_src = 0;
- public static final int AppCompatImageView_srcCompat = 1;
- public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
- public static final int AppCompatTextView_android_textAppearance = 0;
- public static final int AppCompatTextView_textAllCaps = 1;
- public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
- public static final int AppCompatTheme_actionBarDivider = 23;
- public static final int AppCompatTheme_actionBarItemBackground = 24;
- public static final int AppCompatTheme_actionBarPopupTheme = 17;
- public static final int AppCompatTheme_actionBarSize = 22;
- public static final int AppCompatTheme_actionBarSplitStyle = 19;
- public static final int AppCompatTheme_actionBarStyle = 18;
- public static final int AppCompatTheme_actionBarTabBarStyle = 13;
- public static final int AppCompatTheme_actionBarTabStyle = 12;
- public static final int AppCompatTheme_actionBarTabTextStyle = 14;
- public static final int AppCompatTheme_actionBarTheme = 20;
- public static final int AppCompatTheme_actionBarWidgetTheme = 21;
- public static final int AppCompatTheme_actionButtonStyle = 49;
- public static final int AppCompatTheme_actionDropDownStyle = 45;
- public static final int AppCompatTheme_actionMenuTextAppearance = 25;
- public static final int AppCompatTheme_actionMenuTextColor = 26;
- public static final int AppCompatTheme_actionModeBackground = 29;
- public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
- public static final int AppCompatTheme_actionModeCloseDrawable = 31;
- public static final int AppCompatTheme_actionModeCopyDrawable = 33;
- public static final int AppCompatTheme_actionModeCutDrawable = 32;
- public static final int AppCompatTheme_actionModeFindDrawable = 37;
- public static final int AppCompatTheme_actionModePasteDrawable = 34;
- public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
- public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
- public static final int AppCompatTheme_actionModeShareDrawable = 36;
- public static final int AppCompatTheme_actionModeSplitBackground = 30;
- public static final int AppCompatTheme_actionModeStyle = 27;
- public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
- public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
- public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
- public static final int AppCompatTheme_activityChooserViewStyle = 57;
- public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
- public static final int AppCompatTheme_alertDialogCenterButtons = 93;
- public static final int AppCompatTheme_alertDialogStyle = 91;
- public static final int AppCompatTheme_alertDialogTheme = 94;
- public static final int AppCompatTheme_android_windowAnimationStyle = 1;
- public static final int AppCompatTheme_android_windowIsFloating = 0;
- public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
- public static final int AppCompatTheme_borderlessButtonStyle = 54;
- public static final int AppCompatTheme_buttonBarButtonStyle = 51;
- public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
- public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
- public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
- public static final int AppCompatTheme_buttonBarStyle = 50;
- public static final int AppCompatTheme_buttonStyle = 100;
- public static final int AppCompatTheme_buttonStyleSmall = 101;
- public static final int AppCompatTheme_checkboxStyle = 102;
- public static final int AppCompatTheme_checkedTextViewStyle = 103;
- public static final int AppCompatTheme_colorAccent = 84;
- public static final int AppCompatTheme_colorButtonNormal = 88;
- public static final int AppCompatTheme_colorControlActivated = 86;
- public static final int AppCompatTheme_colorControlHighlight = 87;
- public static final int AppCompatTheme_colorControlNormal = 85;
- public static final int AppCompatTheme_colorPrimary = 82;
- public static final int AppCompatTheme_colorPrimaryDark = 83;
- public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
- public static final int AppCompatTheme_controlBackground = 90;
- public static final int AppCompatTheme_dialogPreferredPadding = 43;
- public static final int AppCompatTheme_dialogTheme = 42;
- public static final int AppCompatTheme_dividerHorizontal = 56;
- public static final int AppCompatTheme_dividerVertical = 55;
- public static final int AppCompatTheme_dropDownListViewStyle = 74;
- public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
- public static final int AppCompatTheme_editTextBackground = 63;
- public static final int AppCompatTheme_editTextColor = 62;
- public static final int AppCompatTheme_editTextStyle = 104;
- public static final int AppCompatTheme_homeAsUpIndicator = 48;
- public static final int AppCompatTheme_imageButtonStyle = 64;
- public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
- public static final int AppCompatTheme_listDividerAlertDialog = 44;
- public static final int AppCompatTheme_listPopupWindowStyle = 75;
- public static final int AppCompatTheme_listPreferredItemHeight = 69;
- public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
- public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
- public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
- public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
- public static final int AppCompatTheme_panelBackground = 78;
- public static final int AppCompatTheme_panelMenuListTheme = 80;
- public static final int AppCompatTheme_panelMenuListWidth = 79;
- public static final int AppCompatTheme_popupMenuStyle = 60;
- public static final int AppCompatTheme_popupWindowStyle = 61;
- public static final int AppCompatTheme_radioButtonStyle = 105;
- public static final int AppCompatTheme_ratingBarStyle = 106;
- public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
- public static final int AppCompatTheme_ratingBarStyleSmall = 108;
- public static final int AppCompatTheme_searchViewStyle = 68;
- public static final int AppCompatTheme_seekBarStyle = 109;
- public static final int AppCompatTheme_selectableItemBackground = 52;
- public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
- public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
- public static final int AppCompatTheme_spinnerStyle = 110;
- public static final int AppCompatTheme_switchStyle = 111;
- public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
- public static final int AppCompatTheme_textAppearanceListItem = 76;
- public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
- public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
- public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
- public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
- public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
- public static final int AppCompatTheme_textColorSearchUrl = 67;
- public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
- public static final int AppCompatTheme_toolbarStyle = 58;
- public static final int AppCompatTheme_windowActionBar = 2;
- public static final int AppCompatTheme_windowActionBarOverlay = 4;
- public static final int AppCompatTheme_windowActionModeOverlay = 5;
- public static final int AppCompatTheme_windowFixedHeightMajor = 9;
- public static final int AppCompatTheme_windowFixedHeightMinor = 7;
- public static final int AppCompatTheme_windowFixedWidthMajor = 6;
- public static final int AppCompatTheme_windowFixedWidthMinor = 8;
- public static final int AppCompatTheme_windowMinWidthMajor = 10;
- public static final int AppCompatTheme_windowMinWidthMinor = 11;
- public static final int AppCompatTheme_windowNoTitle = 3;
- public static final int[] BottomSheetBehavior_Params = { 0x7f010097, 0x7f010098 };
- public static final int BottomSheetBehavior_Params_behavior_hideable = 1;
- public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0;
- public static final int[] ButtonBarLayout = { 0x7f010099 };
- public static final int ButtonBarLayout_allowStacking = 0;
- public static final int[] CollapsingAppBarLayout_LayoutParams = { 0x7f01009a, 0x7f01009b };
- public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0;
- public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
- public static final int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 };
- public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11;
- public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
- public static final int CollapsingToolbarLayout_contentScrim = 8;
- public static final int CollapsingToolbarLayout_expandedTitleGravity = 12;
- public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
- public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
- public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
- public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
- public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
- public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
- public static final int CollapsingToolbarLayout_statusBarScrim = 9;
- public static final int CollapsingToolbarLayout_title = 0;
- public static final int CollapsingToolbarLayout_titleEnabled = 13;
- public static final int CollapsingToolbarLayout_toolbarId = 10;
- public static final int[] CompoundButton = { 0x01010107, 0x7f0100a9, 0x7f0100aa };
- 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[] CoordinatorLayout = { 0x7f0100ab, 0x7f0100ac };
- public static final int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0 };
- public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0;
- public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2;
- public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4;
- public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1;
- public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3;
- public static final int CoordinatorLayout_keylines = 0;
- public static final int CoordinatorLayout_statusBarBackground = 1;
- public static final int[] DesignTheme = { 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 };
- public static final int DesignTheme_bottomSheetDialogTheme = 0;
- public static final int DesignTheme_bottomSheetStyle = 1;
- public static final int DesignTheme_textColorError = 2;
- public static final int[] DrawerArrowToggle = { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb };
- public static final int DrawerArrowToggle_arrowHeadLength = 4;
- public static final int DrawerArrowToggle_arrowShaftLength = 5;
- public static final int DrawerArrowToggle_barLength = 6;
- public static final int DrawerArrowToggle_color = 0;
- public static final int DrawerArrowToggle_drawableSize = 2;
- public static final int DrawerArrowToggle_gapBetweenBars = 3;
- public static final int DrawerArrowToggle_spinBars = 1;
- public static final int DrawerArrowToggle_thickness = 7;
- public static final int[] FloatingActionButton = { 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119 };
- public static final int FloatingActionButton_backgroundTint = 6;
- public static final int FloatingActionButton_backgroundTintMode = 7;
- public static final int FloatingActionButton_borderWidth = 4;
- public static final int FloatingActionButton_elevation = 0;
- public static final int FloatingActionButton_fabSize = 2;
- public static final int FloatingActionButton_pressedTranslationZ = 3;
- public static final int FloatingActionButton_rippleColor = 1;
- public static final int FloatingActionButton_useCompatPadding = 5;
- public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f0100c1 };
- public static final int ForegroundLinearLayout_android_foreground = 0;
- public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
- public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
- public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 };
- 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_height = 2;
- public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
- public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
- public static final int LinearLayoutCompat_android_baselineAligned = 2;
- public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
- public static final int LinearLayoutCompat_android_gravity = 0;
- public static final int LinearLayoutCompat_android_orientation = 1;
- public static final int LinearLayoutCompat_android_weightSum = 4;
- public static final int LinearLayoutCompat_divider = 5;
- public static final int LinearLayoutCompat_dividerPadding = 8;
- public static final int LinearLayoutCompat_measureWithLargestChild = 6;
- public static final int LinearLayoutCompat_showDividers = 7;
- 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_checkableBehavior = 5;
- public static final int MenuGroup_android_enabled = 0;
- public static final int MenuGroup_android_id = 1;
- public static final int MenuGroup_android_menuCategory = 3;
- public static final int MenuGroup_android_orderInCategory = 4;
- public static final int MenuGroup_android_visible = 2;
- public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 };
- public static final int MenuItem_actionLayout = 14;
- public static final int MenuItem_actionProviderClass = 16;
- public static final int MenuItem_actionViewClass = 15;
- public static final int MenuItem_android_alphabeticShortcut = 9;
- public static final int MenuItem_android_checkable = 11;
- public static final int MenuItem_android_checked = 3;
- public static final int MenuItem_android_enabled = 1;
- public static final int MenuItem_android_icon = 0;
- public static final int MenuItem_android_id = 2;
- public static final int MenuItem_android_menuCategory = 5;
- public static final int MenuItem_android_numericShortcut = 10;
- public static final int MenuItem_android_onClick = 12;
- 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_visible = 4;
- public static final int MenuItem_showAsAction = 13;
- public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9 };
- public static final int MenuView_android_headerBackground = 4;
- public static final int MenuView_android_horizontalDivider = 2;
- public static final int MenuView_android_itemBackground = 5;
- public static final int MenuView_android_itemIconDisabledAlpha = 6;
- public static final int MenuView_android_itemTextAppearance = 1;
- public static final int MenuView_android_verticalDivider = 3;
- public static final int MenuView_android_windowAnimationStyle = 0;
- public static final int MenuView_preserveIconSpacing = 7;
- public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf };
- public static final int NavigationView_android_background = 0;
- public static final int NavigationView_android_fitsSystemWindows = 1;
- public static final int NavigationView_android_maxWidth = 2;
- public static final int NavigationView_elevation = 3;
- public static final int NavigationView_headerLayout = 9;
- public static final int NavigationView_itemBackground = 7;
- public static final int NavigationView_itemIconTint = 5;
- public static final int NavigationView_itemTextAppearance = 8;
- public static final int NavigationView_itemTextColor = 6;
- public static final int NavigationView_menu = 4;
- public static final int[] PopupWindow = { 0x01010176, 0x7f0100d0 };
- public static final int[] PopupWindowBackgroundState = { 0x7f0100d1 };
- public static final int PopupWindowBackgroundState_state_above_anchor = 0;
- public static final int PopupWindow_android_popupBackground = 0;
- public static final int PopupWindow_overlapAnchor = 1;
- public static final int[] RecyclerView = { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 };
- public static final int RecyclerView_android_orientation = 0;
- public static final int RecyclerView_layoutManager = 1;
- public static final int RecyclerView_reverseLayout = 3;
- public static final int RecyclerView_spanCount = 2;
- public static final int RecyclerView_stackFromEnd = 4;
- public static final int[] ScrimInsetsFrameLayout = { 0x7f0100d6 };
- public static final int ScrimInsetsFrameLayout_insetForeground = 0;
- public static final int[] ScrollingViewBehavior_Params = { 0x7f0100d7 };
- public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
- public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
- public static final int SearchView_android_focusable = 0;
- public static final int SearchView_android_imeOptions = 3;
- public static final int SearchView_android_inputType = 2;
- public static final int SearchView_android_maxWidth = 1;
- public static final int SearchView_closeIcon = 8;
- public static final int SearchView_commitIcon = 13;
- public static final int SearchView_defaultQueryHint = 7;
- public static final int SearchView_goIcon = 9;
- public static final int SearchView_iconifiedByDefault = 5;
- public static final int SearchView_layout = 4;
- public static final int SearchView_queryBackground = 15;
- public static final int SearchView_queryHint = 6;
- public static final int SearchView_searchHintIcon = 11;
- public static final int SearchView_searchIcon = 10;
- public static final int SearchView_submitBackground = 16;
- public static final int SearchView_suggestionRowLayout = 14;
- public static final int SearchView_voiceIcon = 12;
- public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f0100e5 };
- public static final int SnackbarLayout_android_maxWidth = 0;
- public static final int SnackbarLayout_elevation = 1;
- public static final int SnackbarLayout_maxActionInlineWidth = 2;
- public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
- public static final int Spinner_android_dropDownWidth = 3;
- 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_popupTheme = 4;
- public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec };
- public static final int SwitchCompat_android_textOff = 1;
- public static final int SwitchCompat_android_textOn = 0;
- public static final int SwitchCompat_android_thumb = 2;
- public static final int SwitchCompat_showText = 9;
- public static final int SwitchCompat_splitTrack = 8;
- public static final int SwitchCompat_switchMinWidth = 6;
- public static final int SwitchCompat_switchPadding = 7;
- public static final int SwitchCompat_switchTextAppearance = 5;
- public static final int SwitchCompat_thumbTextPadding = 4;
- public static final int SwitchCompat_track = 3;
- public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f };
- public static final int TabItem_android_icon = 0;
- public static final int TabItem_android_layout = 1;
- public static final int TabItem_android_text = 2;
- public static final int[] TabLayout = { 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc };
- public static final int TabLayout_tabBackground = 3;
- public static final int TabLayout_tabContentStart = 2;
- public static final int TabLayout_tabGravity = 5;
- public static final int TabLayout_tabIndicatorColor = 0;
- public static final int TabLayout_tabIndicatorHeight = 1;
- public static final int TabLayout_tabMaxWidth = 7;
- public static final int TabLayout_tabMinWidth = 6;
- public static final int TabLayout_tabMode = 4;
- public static final int TabLayout_tabPadding = 15;
- public static final int TabLayout_tabPaddingBottom = 14;
- public static final int TabLayout_tabPaddingEnd = 13;
- public static final int TabLayout_tabPaddingStart = 11;
- public static final int TabLayout_tabPaddingTop = 12;
- public static final int TabLayout_tabSelectedTextColor = 10;
- public static final int TabLayout_tabTextAppearance = 8;
- public static final int TabLayout_tabTextColor = 9;
- public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
- public static final int TextAppearance_android_shadowColor = 4;
- public static final int TextAppearance_android_shadowDx = 5;
- public static final int TextAppearance_android_shadowDy = 6;
- public static final int TextAppearance_android_shadowRadius = 7;
- public static final int TextAppearance_android_textColor = 3;
- public static final int TextAppearance_android_textSize = 0;
- public static final int TextAppearance_android_textStyle = 2;
- public static final int TextAppearance_android_typeface = 1;
- public static final int TextAppearance_textAllCaps = 8;
- public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105 };
- public static final int TextInputLayout_android_hint = 1;
- public static final int TextInputLayout_android_textColorHint = 0;
- public static final int TextInputLayout_counterEnabled = 6;
- public static final int TextInputLayout_counterMaxLength = 7;
- public static final int TextInputLayout_counterOverflowTextAppearance = 9;
- public static final int TextInputLayout_counterTextAppearance = 8;
- public static final int TextInputLayout_errorEnabled = 4;
- public static final int TextInputLayout_errorTextAppearance = 5;
- public static final int TextInputLayout_hintAnimationEnabled = 10;
- public static final int TextInputLayout_hintEnabled = 3;
- public static final int TextInputLayout_hintTextAppearance = 2;
- public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 };
- public static final int Toolbar_android_gravity = 0;
- public static final int Toolbar_android_minHeight = 1;
- public static final int Toolbar_collapseContentDescription = 19;
- public static final int Toolbar_collapseIcon = 18;
- public static final int Toolbar_contentInsetEnd = 6;
- public static final int Toolbar_contentInsetLeft = 7;
- public static final int Toolbar_contentInsetRight = 8;
- public static final int Toolbar_contentInsetStart = 5;
- public static final int Toolbar_logo = 4;
- public static final int Toolbar_logoDescription = 22;
- public static final int Toolbar_maxButtonHeight = 17;
- public static final int Toolbar_navigationContentDescription = 21;
- public static final int Toolbar_navigationIcon = 20;
- public static final int Toolbar_popupTheme = 9;
- public static final int Toolbar_subtitle = 3;
- public static final int Toolbar_subtitleTextAppearance = 11;
- public static final int Toolbar_subtitleTextColor = 24;
- public static final int Toolbar_title = 2;
- public static final int Toolbar_titleMarginBottom = 16;
- public static final int Toolbar_titleMarginEnd = 14;
- public static final int Toolbar_titleMarginStart = 13;
- public static final int Toolbar_titleMarginTop = 15;
- public static final int Toolbar_titleMargins = 12;
- public static final int Toolbar_titleTextAppearance = 10;
- public static final int Toolbar_titleTextColor = 23;
- public static final int[] View = { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 };
- public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010118, 0x7f010119 };
- 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_inflatedId = 2;
- public static final int ViewStubCompat_android_layout = 1;
- public static final int View_android_focusable = 1;
- public static final int View_android_theme = 0;
- public static final int View_paddingEnd = 3;
- public static final int View_paddingStart = 2;
- public static final int View_theme = 4;
- }
-}
diff --git a/2p-android/trunk/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/2p-android/trunk/build/generated/source/r/debug/android/support/v7/appcompat/R.java
deleted file mode 100644
index 31e76bd..0000000
--- a/2p-android/trunk/build/generated/source/r/debug/android/support/v7/appcompat/R.java
+++ /dev/null
@@ -1,1281 +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 android.support.v7.appcompat;
-
-public final class R {
- public static final class anim {
- public static final int abc_fade_in = 0x7f040000;
- public static final int abc_fade_out = 0x7f040001;
- public static final int abc_grow_fade_in_from_bottom = 0x7f040002;
- public static final int abc_popup_enter = 0x7f040003;
- public static final int abc_popup_exit = 0x7f040004;
- public static final int abc_shrink_fade_out_from_bottom = 0x7f040005;
- public static final int abc_slide_in_bottom = 0x7f040006;
- public static final int abc_slide_in_top = 0x7f040007;
- public static final int abc_slide_out_bottom = 0x7f040008;
- public static final int abc_slide_out_top = 0x7f040009;
- }
- public static final class attr {
- public static final int actionBarDivider = 0x7f01003e;
- public static final int actionBarItemBackground = 0x7f01003f;
- public static final int actionBarPopupTheme = 0x7f010038;
- public static final int actionBarSize = 0x7f01003d;
- public static final int actionBarSplitStyle = 0x7f01003a;
- public static final int actionBarStyle = 0x7f010039;
- public static final int actionBarTabBarStyle = 0x7f010034;
- public static final int actionBarTabStyle = 0x7f010033;
- public static final int actionBarTabTextStyle = 0x7f010035;
- public static final int actionBarTheme = 0x7f01003b;
- public static final int actionBarWidgetTheme = 0x7f01003c;
- public static final int actionButtonStyle = 0x7f010058;
- public static final int actionDropDownStyle = 0x7f010054;
- public static final int actionLayout = 0x7f0100c6;
- public static final int actionMenuTextAppearance = 0x7f010040;
- public static final int actionMenuTextColor = 0x7f010041;
- public static final int actionModeBackground = 0x7f010044;
- public static final int actionModeCloseButtonStyle = 0x7f010043;
- public static final int actionModeCloseDrawable = 0x7f010046;
- public static final int actionModeCopyDrawable = 0x7f010048;
- public static final int actionModeCutDrawable = 0x7f010047;
- public static final int actionModeFindDrawable = 0x7f01004c;
- public static final int actionModePasteDrawable = 0x7f010049;
- public static final int actionModePopupWindowStyle = 0x7f01004e;
- public static final int actionModeSelectAllDrawable = 0x7f01004a;
- public static final int actionModeShareDrawable = 0x7f01004b;
- public static final int actionModeSplitBackground = 0x7f010045;
- public static final int actionModeStyle = 0x7f010042;
- public static final int actionModeWebSearchDrawable = 0x7f01004d;
- public static final int actionOverflowButtonStyle = 0x7f010036;
- public static final int actionOverflowMenuStyle = 0x7f010037;
- public static final int actionProviderClass = 0x7f0100c8;
- public static final int actionViewClass = 0x7f0100c7;
- public static final int activityChooserViewStyle = 0x7f010060;
- public static final int alertDialogButtonGroupStyle = 0x7f010083;
- public static final int alertDialogCenterButtons = 0x7f010084;
- public static final int alertDialogStyle = 0x7f010082;
- public static final int alertDialogTheme = 0x7f010085;
- public static final int allowStacking = 0x7f010099;
- public static final int arrowHeadLength = 0x7f0100b8;
- public static final int arrowShaftLength = 0x7f0100b9;
- public static final int autoCompleteTextViewStyle = 0x7f01008a;
- public static final int background = 0x7f01000c;
- public static final int backgroundSplit = 0x7f01000e;
- public static final int backgroundStacked = 0x7f01000d;
- public static final int backgroundTint = 0x7f010118;
- public static final int backgroundTintMode = 0x7f010119;
- public static final int barLength = 0x7f0100ba;
- public static final int borderlessButtonStyle = 0x7f01005d;
- public static final int buttonBarButtonStyle = 0x7f01005a;
- public static final int buttonBarNegativeButtonStyle = 0x7f010088;
- public static final int buttonBarNeutralButtonStyle = 0x7f010089;
- public static final int buttonBarPositiveButtonStyle = 0x7f010087;
- public static final int buttonBarStyle = 0x7f010059;
- public static final int buttonPanelSideLayout = 0x7f01001f;
- public static final int buttonStyle = 0x7f01008b;
- public static final int buttonStyleSmall = 0x7f01008c;
- public static final int buttonTint = 0x7f0100a9;
- public static final int buttonTintMode = 0x7f0100aa;
- public static final int checkboxStyle = 0x7f01008d;
- public static final int checkedTextViewStyle = 0x7f01008e;
- public static final int closeIcon = 0x7f0100dc;
- public static final int closeItemLayout = 0x7f01001c;
- public static final int collapseContentDescription = 0x7f01010f;
- public static final int collapseIcon = 0x7f01010e;
- public static final int color = 0x7f0100b4;
- public static final int colorAccent = 0x7f01007b;
- public static final int colorButtonNormal = 0x7f01007f;
- public static final int colorControlActivated = 0x7f01007d;
- public static final int colorControlHighlight = 0x7f01007e;
- public static final int colorControlNormal = 0x7f01007c;
- public static final int colorPrimary = 0x7f010079;
- public static final int colorPrimaryDark = 0x7f01007a;
- public static final int colorSwitchThumbNormal = 0x7f010080;
- public static final int commitIcon = 0x7f0100e1;
- public static final int contentInsetEnd = 0x7f010017;
- public static final int contentInsetLeft = 0x7f010018;
- public static final int contentInsetRight = 0x7f010019;
- public static final int contentInsetStart = 0x7f010016;
- public static final int controlBackground = 0x7f010081;
- public static final int customNavigationLayout = 0x7f01000f;
- public static final int defaultQueryHint = 0x7f0100db;
- public static final int dialogPreferredPadding = 0x7f010052;
- public static final int dialogTheme = 0x7f010051;
- public static final int displayOptions = 0x7f010005;
- public static final int divider = 0x7f01000b;
- public static final int dividerHorizontal = 0x7f01005f;
- public static final int dividerPadding = 0x7f0100c4;
- public static final int dividerVertical = 0x7f01005e;
- public static final int drawableSize = 0x7f0100b6;
- public static final int drawerArrowStyle = 0x7f010000;
- public static final int dropDownListViewStyle = 0x7f010071;
- public static final int dropdownListPreferredItemHeight = 0x7f010055;
- public static final int editTextBackground = 0x7f010066;
- public static final int editTextColor = 0x7f010065;
- public static final int editTextStyle = 0x7f01008f;
- public static final int elevation = 0x7f01001a;
- public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
- public static final int gapBetweenBars = 0x7f0100b7;
- public static final int goIcon = 0x7f0100dd;
- public static final int height = 0x7f010001;
- public static final int hideOnContentScroll = 0x7f010015;
- public static final int homeAsUpIndicator = 0x7f010057;
- public static final int homeLayout = 0x7f010010;
- public static final int icon = 0x7f010009;
- public static final int iconifiedByDefault = 0x7f0100d9;
- public static final int imageButtonStyle = 0x7f010067;
- public static final int indeterminateProgressStyle = 0x7f010012;
- public static final int initialActivityCount = 0x7f01001d;
- public static final int isLightTheme = 0x7f010002;
- public static final int itemPadding = 0x7f010014;
- public static final int layout = 0x7f0100d8;
- public static final int listChoiceBackgroundIndicator = 0x7f010078;
- public static final int listDividerAlertDialog = 0x7f010053;
- public static final int listItemLayout = 0x7f010023;
- public static final int listLayout = 0x7f010020;
- public static final int listPopupWindowStyle = 0x7f010072;
- public static final int listPreferredItemHeight = 0x7f01006c;
- public static final int listPreferredItemHeightLarge = 0x7f01006e;
- public static final int listPreferredItemHeightSmall = 0x7f01006d;
- public static final int listPreferredItemPaddingLeft = 0x7f01006f;
- public static final int listPreferredItemPaddingRight = 0x7f010070;
- public static final int logo = 0x7f01000a;
- public static final int logoDescription = 0x7f010112;
- public static final int maxButtonHeight = 0x7f01010d;
- public static final int measureWithLargestChild = 0x7f0100c2;
- public static final int multiChoiceItemLayout = 0x7f010021;
- public static final int navigationContentDescription = 0x7f010111;
- public static final int navigationIcon = 0x7f010110;
- public static final int navigationMode = 0x7f010004;
- public static final int overlapAnchor = 0x7f0100d0;
- public static final int paddingEnd = 0x7f010116;
- public static final int paddingStart = 0x7f010115;
- public static final int panelBackground = 0x7f010075;
- public static final int panelMenuListTheme = 0x7f010077;
- public static final int panelMenuListWidth = 0x7f010076;
- public static final int popupMenuStyle = 0x7f010063;
- public static final int popupTheme = 0x7f01001b;
- public static final int popupWindowStyle = 0x7f010064;
- public static final int preserveIconSpacing = 0x7f0100c9;
- public static final int progressBarPadding = 0x7f010013;
- public static final int progressBarStyle = 0x7f010011;
- public static final int queryBackground = 0x7f0100e3;
- public static final int queryHint = 0x7f0100da;
- public static final int radioButtonStyle = 0x7f010090;
- public static final int ratingBarStyle = 0x7f010091;
- public static final int ratingBarStyleIndicator = 0x7f010092;
- public static final int ratingBarStyleSmall = 0x7f010093;
- public static final int searchHintIcon = 0x7f0100df;
- public static final int searchIcon = 0x7f0100de;
- public static final int searchViewStyle = 0x7f01006b;
- public static final int seekBarStyle = 0x7f010094;
- public static final int selectableItemBackground = 0x7f01005b;
- public static final int selectableItemBackgroundBorderless = 0x7f01005c;
- public static final int showAsAction = 0x7f0100c5;
- public static final int showDividers = 0x7f0100c3;
- public static final int showText = 0x7f0100ec;
- public static final int singleChoiceItemLayout = 0x7f010022;
- public static final int spinBars = 0x7f0100b5;
- public static final int spinnerDropDownItemStyle = 0x7f010056;
- public static final int spinnerStyle = 0x7f010095;
- public static final int splitTrack = 0x7f0100eb;
- public static final int srcCompat = 0x7f010027;
- public static final int state_above_anchor = 0x7f0100d1;
- public static final int submitBackground = 0x7f0100e4;
- public static final int subtitle = 0x7f010006;
- public static final int subtitleTextAppearance = 0x7f010107;
- public static final int subtitleTextColor = 0x7f010114;
- public static final int subtitleTextStyle = 0x7f010008;
- public static final int suggestionRowLayout = 0x7f0100e2;
- public static final int switchMinWidth = 0x7f0100e9;
- public static final int switchPadding = 0x7f0100ea;
- public static final int switchStyle = 0x7f010096;
- public static final int switchTextAppearance = 0x7f0100e8;
- public static final int textAllCaps = 0x7f010028;
- public static final int textAppearanceLargePopupMenu = 0x7f01004f;
- public static final int textAppearanceListItem = 0x7f010073;
- public static final int textAppearanceListItemSmall = 0x7f010074;
- public static final int textAppearanceSearchResultSubtitle = 0x7f010069;
- public static final int textAppearanceSearchResultTitle = 0x7f010068;
- public static final int textAppearanceSmallPopupMenu = 0x7f010050;
- public static final int textColorAlertDialogListItem = 0x7f010086;
- public static final int textColorSearchUrl = 0x7f01006a;
- public static final int theme = 0x7f010117;
- public static final int thickness = 0x7f0100bb;
- public static final int thumbTextPadding = 0x7f0100e7;
- public static final int title = 0x7f010003;
- public static final int titleMarginBottom = 0x7f01010c;
- public static final int titleMarginEnd = 0x7f01010a;
- public static final int titleMarginStart = 0x7f010109;
- public static final int titleMarginTop = 0x7f01010b;
- public static final int titleMargins = 0x7f010108;
- public static final int titleTextAppearance = 0x7f010106;
- public static final int titleTextColor = 0x7f010113;
- public static final int titleTextStyle = 0x7f010007;
- public static final int toolbarNavigationButtonStyle = 0x7f010062;
- public static final int toolbarStyle = 0x7f010061;
- public static final int track = 0x7f0100e6;
- public static final int voiceIcon = 0x7f0100e0;
- public static final int windowActionBar = 0x7f010029;
- public static final int windowActionBarOverlay = 0x7f01002b;
- public static final int windowActionModeOverlay = 0x7f01002c;
- public static final int windowFixedHeightMajor = 0x7f010030;
- public static final int windowFixedHeightMinor = 0x7f01002e;
- public static final int windowFixedWidthMajor = 0x7f01002d;
- public static final int windowFixedWidthMinor = 0x7f01002f;
- public static final int windowMinWidthMajor = 0x7f010031;
- public static final int windowMinWidthMinor = 0x7f010032;
- public static final int windowNoTitle = 0x7f01002a;
- }
- public static final class bool {
- public static final int abc_action_bar_embed_tabs = 0x7f060003;
- public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060001;
- public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060004;
- public static final int abc_allow_stacked_button_bar = 0x7f060000;
- public static final int abc_config_actionMenuItemAllCaps = 0x7f060005;
- public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060002;
- public static final int abc_config_closeDialogWhenTouchOutside = 0x7f060006;
- public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060007;
- }
- public static final class color {
- public static final int abc_background_cache_hint_selector_material_dark = 0x7f0a0044;
- public static final int abc_background_cache_hint_selector_material_light = 0x7f0a0045;
- public static final int abc_color_highlight_material = 0x7f0a0046;
- public static final int abc_input_method_navigation_guard = 0x7f0a0000;
- public static final int abc_primary_text_disable_only_material_dark = 0x7f0a0047;
- public static final int abc_primary_text_disable_only_material_light = 0x7f0a0048;
- public static final int abc_primary_text_material_dark = 0x7f0a0049;
- public static final int abc_primary_text_material_light = 0x7f0a004a;
- public static final int abc_search_url_text = 0x7f0a004b;
- public static final int abc_search_url_text_normal = 0x7f0a0001;
- public static final int abc_search_url_text_pressed = 0x7f0a0002;
- public static final int abc_search_url_text_selected = 0x7f0a0003;
- public static final int abc_secondary_text_material_dark = 0x7f0a004c;
- public static final int abc_secondary_text_material_light = 0x7f0a004d;
- public static final int accent_material_dark = 0x7f0a0004;
- public static final int accent_material_light = 0x7f0a0005;
- public static final int background_floating_material_dark = 0x7f0a0006;
- public static final int background_floating_material_light = 0x7f0a0007;
- public static final int background_material_dark = 0x7f0a0008;
- public static final int background_material_light = 0x7f0a0009;
- public static final int bright_foreground_disabled_material_dark = 0x7f0a000a;
- public static final int bright_foreground_disabled_material_light = 0x7f0a000b;
- public static final int bright_foreground_inverse_material_dark = 0x7f0a000c;
- public static final int bright_foreground_inverse_material_light = 0x7f0a000d;
- public static final int bright_foreground_material_dark = 0x7f0a000e;
- public static final int bright_foreground_material_light = 0x7f0a000f;
- public static final int button_material_dark = 0x7f0a0010;
- public static final int button_material_light = 0x7f0a0011;
- public static final int dim_foreground_disabled_material_dark = 0x7f0a001c;
- public static final int dim_foreground_disabled_material_light = 0x7f0a001d;
- public static final int dim_foreground_material_dark = 0x7f0a001e;
- public static final int dim_foreground_material_light = 0x7f0a001f;
- public static final int foreground_material_dark = 0x7f0a0020;
- public static final int foreground_material_light = 0x7f0a0021;
- public static final int highlighted_text_material_dark = 0x7f0a0022;
- public static final int highlighted_text_material_light = 0x7f0a0023;
- public static final int hint_foreground_material_dark = 0x7f0a0024;
- public static final int hint_foreground_material_light = 0x7f0a0025;
- public static final int material_blue_grey_800 = 0x7f0a0026;
- public static final int material_blue_grey_900 = 0x7f0a0027;
- public static final int material_blue_grey_950 = 0x7f0a0028;
- public static final int material_deep_teal_200 = 0x7f0a0029;
- public static final int material_deep_teal_500 = 0x7f0a002a;
- public static final int material_grey_100 = 0x7f0a002b;
- public static final int material_grey_300 = 0x7f0a002c;
- public static final int material_grey_50 = 0x7f0a002d;
- public static final int material_grey_600 = 0x7f0a002e;
- public static final int material_grey_800 = 0x7f0a002f;
- public static final int material_grey_850 = 0x7f0a0030;
- public static final int material_grey_900 = 0x7f0a0031;
- public static final int primary_dark_material_dark = 0x7f0a0032;
- public static final int primary_dark_material_light = 0x7f0a0033;
- public static final int primary_material_dark = 0x7f0a0034;
- public static final int primary_material_light = 0x7f0a0035;
- public static final int primary_text_default_material_dark = 0x7f0a0036;
- public static final int primary_text_default_material_light = 0x7f0a0037;
- public static final int primary_text_disabled_material_dark = 0x7f0a0038;
- public static final int primary_text_disabled_material_light = 0x7f0a0039;
- public static final int ripple_material_dark = 0x7f0a003a;
- public static final int ripple_material_light = 0x7f0a003b;
- public static final int secondary_text_default_material_dark = 0x7f0a003c;
- public static final int secondary_text_default_material_light = 0x7f0a003d;
- public static final int secondary_text_disabled_material_dark = 0x7f0a003e;
- public static final int secondary_text_disabled_material_light = 0x7f0a003f;
- public static final int switch_thumb_disabled_material_dark = 0x7f0a0040;
- public static final int switch_thumb_disabled_material_light = 0x7f0a0041;
- public static final int switch_thumb_material_dark = 0x7f0a004e;
- public static final int switch_thumb_material_light = 0x7f0a004f;
- public static final int switch_thumb_normal_material_dark = 0x7f0a0042;
- public static final int switch_thumb_normal_material_light = 0x7f0a0043;
- }
- public static final class dimen {
- public static final int abc_action_bar_content_inset_material = 0x7f07000d;
- public static final int abc_action_bar_default_height_material = 0x7f070001;
- public static final int abc_action_bar_default_padding_end_material = 0x7f07000e;
- public static final int abc_action_bar_default_padding_start_material = 0x7f07000f;
- public static final int abc_action_bar_icon_vertical_padding_material = 0x7f07001a;
- public static final int abc_action_bar_overflow_padding_end_material = 0x7f07001b;
- public static final int abc_action_bar_overflow_padding_start_material = 0x7f07001c;
- public static final int abc_action_bar_progress_bar_size = 0x7f070002;
- public static final int abc_action_bar_stacked_max_height = 0x7f07001d;
- public static final int abc_action_bar_stacked_tab_max_width = 0x7f07001e;
- public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f07001f;
- public static final int abc_action_bar_subtitle_top_margin_material = 0x7f070020;
- public static final int abc_action_button_min_height_material = 0x7f070021;
- public static final int abc_action_button_min_width_material = 0x7f070022;
- public static final int abc_action_button_min_width_overflow_material = 0x7f070023;
- public static final int abc_alert_dialog_button_bar_height = 0x7f070000;
- public static final int abc_button_inset_horizontal_material = 0x7f070024;
- public static final int abc_button_inset_vertical_material = 0x7f070025;
- public static final int abc_button_padding_horizontal_material = 0x7f070026;
- public static final int abc_button_padding_vertical_material = 0x7f070027;
- public static final int abc_config_prefDialogWidth = 0x7f070005;
- public static final int abc_control_corner_material = 0x7f070028;
- public static final int abc_control_inset_material = 0x7f070029;
- public static final int abc_control_padding_material = 0x7f07002a;
- public static final int abc_dialog_fixed_height_major = 0x7f070006;
- public static final int abc_dialog_fixed_height_minor = 0x7f070007;
- public static final int abc_dialog_fixed_width_major = 0x7f070008;
- public static final int abc_dialog_fixed_width_minor = 0x7f070009;
- public static final int abc_dialog_list_padding_vertical_material = 0x7f07002b;
- public static final int abc_dialog_min_width_major = 0x7f07000a;
- public static final int abc_dialog_min_width_minor = 0x7f07000b;
- public static final int abc_dialog_padding_material = 0x7f07002c;
- public static final int abc_dialog_padding_top_material = 0x7f07002d;
- public static final int abc_disabled_alpha_material_dark = 0x7f07002e;
- public static final int abc_disabled_alpha_material_light = 0x7f07002f;
- public static final int abc_dropdownitem_icon_width = 0x7f070030;
- public static final int abc_dropdownitem_text_padding_left = 0x7f070031;
- public static final int abc_dropdownitem_text_padding_right = 0x7f070032;
- public static final int abc_edit_text_inset_bottom_material = 0x7f070033;
- public static final int abc_edit_text_inset_horizontal_material = 0x7f070034;
- public static final int abc_edit_text_inset_top_material = 0x7f070035;
- public static final int abc_floating_window_z = 0x7f070036;
- public static final int abc_list_item_padding_horizontal_material = 0x7f070037;
- public static final int abc_panel_menu_list_width = 0x7f070038;
- public static final int abc_search_view_preferred_width = 0x7f070039;
- public static final int abc_search_view_text_min_width = 0x7f07000c;
- public static final int abc_seekbar_track_background_height_material = 0x7f07003a;
- public static final int abc_seekbar_track_progress_height_material = 0x7f07003b;
- public static final int abc_select_dialog_padding_start_material = 0x7f07003c;
- public static final int abc_switch_padding = 0x7f070018;
- public static final int abc_text_size_body_1_material = 0x7f07003d;
- public static final int abc_text_size_body_2_material = 0x7f07003e;
- public static final int abc_text_size_button_material = 0x7f07003f;
- public static final int abc_text_size_caption_material = 0x7f070040;
- public static final int abc_text_size_display_1_material = 0x7f070041;
- public static final int abc_text_size_display_2_material = 0x7f070042;
- public static final int abc_text_size_display_3_material = 0x7f070043;
- public static final int abc_text_size_display_4_material = 0x7f070044;
- public static final int abc_text_size_headline_material = 0x7f070045;
- public static final int abc_text_size_large_material = 0x7f070046;
- public static final int abc_text_size_medium_material = 0x7f070047;
- public static final int abc_text_size_menu_material = 0x7f070048;
- public static final int abc_text_size_small_material = 0x7f070049;
- public static final int abc_text_size_subhead_material = 0x7f07004a;
- public static final int abc_text_size_subtitle_material_toolbar = 0x7f070003;
- public static final int abc_text_size_title_material = 0x7f07004b;
- public static final int abc_text_size_title_material_toolbar = 0x7f070004;
- public static final int disabled_alpha_material_dark = 0x7f070062;
- public static final int disabled_alpha_material_light = 0x7f070063;
- public static final int highlight_alpha_material_colored = 0x7f070064;
- public static final int highlight_alpha_material_dark = 0x7f070065;
- public static final int highlight_alpha_material_light = 0x7f070066;
- public static final int notification_large_icon_height = 0x7f07006b;
- public static final int notification_large_icon_width = 0x7f07006c;
- public static final int notification_subtext_size = 0x7f07006d;
- }
- public static final class drawable {
- public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
- public static final int abc_action_bar_item_background_material = 0x7f020001;
- public static final int abc_btn_borderless_material = 0x7f020002;
- public static final int abc_btn_check_material = 0x7f020003;
- public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
- public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
- public static final int abc_btn_colored_material = 0x7f020006;
- public static final int abc_btn_default_mtrl_shape = 0x7f020007;
- public static final int abc_btn_radio_material = 0x7f020008;
- public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
- public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
- public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;
- public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;
- public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;
- public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;
- public static final int abc_cab_background_internal_bg = 0x7f02000f;
- public static final int abc_cab_background_top_material = 0x7f020010;
- public static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;
- public static final int abc_control_background_material = 0x7f020012;
- public static final int abc_dialog_material_background_dark = 0x7f020013;
- public static final int abc_dialog_material_background_light = 0x7f020014;
- public static final int abc_edit_text_material = 0x7f020015;
- public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;
- public static final int abc_ic_clear_mtrl_alpha = 0x7f020017;
- public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;
- public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;
- public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;
- public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;
- public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;
- public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;
- public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;
- public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;
- public static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;
- public static final int abc_ic_star_black_16dp = 0x7f020021;
- public static final int abc_ic_star_black_36dp = 0x7f020022;
- public static final int abc_ic_star_half_black_16dp = 0x7f020023;
- public static final int abc_ic_star_half_black_36dp = 0x7f020024;
- public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020025;
- public static final int abc_item_background_holo_dark = 0x7f020026;
- public static final int abc_item_background_holo_light = 0x7f020027;
- public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
- public static final int abc_list_focused_holo = 0x7f020029;
- public static final int abc_list_longpressed_holo = 0x7f02002a;
- public static final int abc_list_pressed_holo_dark = 0x7f02002b;
- public static final int abc_list_pressed_holo_light = 0x7f02002c;
- public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
- public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
- public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
- public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
- public static final int abc_list_selector_holo_dark = 0x7f020031;
- public static final int abc_list_selector_holo_light = 0x7f020032;
- public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
- public static final int abc_popup_background_mtrl_mult = 0x7f020034;
- public static final int abc_ratingbar_full_material = 0x7f020035;
- public static final int abc_ratingbar_indicator_material = 0x7f020036;
- public static final int abc_ratingbar_small_material = 0x7f020037;
- public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
- public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
- public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
- public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
- public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
- public static final int abc_seekbar_thumb_material = 0x7f02003d;
- public static final int abc_seekbar_track_material = 0x7f02003e;
- public static final int abc_spinner_mtrl_am_alpha = 0x7f02003f;
- public static final int abc_spinner_textfield_background_material = 0x7f020040;
- public static final int abc_switch_thumb_material = 0x7f020041;
- public static final int abc_switch_track_mtrl_alpha = 0x7f020042;
- public static final int abc_tab_indicator_material = 0x7f020043;
- public static final int abc_tab_indicator_mtrl_alpha = 0x7f020044;
- public static final int abc_text_cursor_material = 0x7f020045;
- public static final int abc_textfield_activated_mtrl_alpha = 0x7f020046;
- public static final int abc_textfield_default_mtrl_alpha = 0x7f020047;
- public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020048;
- public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020049;
- public static final int abc_textfield_search_material = 0x7f02004a;
- public static final int notification_template_icon_bg = 0x7f02008c;
- }
- public static final class id {
- public static final int action0 = 0x7f0b00ab;
- public static final int action_bar = 0x7f0b005a;
- public static final int action_bar_activity_content = 0x7f0b0000;
- public static final int action_bar_container = 0x7f0b0059;
- public static final int action_bar_root = 0x7f0b0055;
- public static final int action_bar_spinner = 0x7f0b0001;
- public static final int action_bar_subtitle = 0x7f0b003b;
- public static final int action_bar_title = 0x7f0b003a;
- public static final int action_context_bar = 0x7f0b005b;
- public static final int action_divider = 0x7f0b00af;
- public static final int action_menu_divider = 0x7f0b0002;
- public static final int action_menu_presenter = 0x7f0b0003;
- public static final int action_mode_bar = 0x7f0b0057;
- public static final int action_mode_bar_stub = 0x7f0b0056;
- public static final int action_mode_close_button = 0x7f0b003c;
- public static final int activity_chooser_view_content = 0x7f0b003d;
- public static final int alertTitle = 0x7f0b0049;
- public static final int always = 0x7f0b0033;
- public static final int beginning = 0x7f0b0031;
- public static final int buttonPanel = 0x7f0b0044;
- public static final int cancel_action = 0x7f0b00ac;
- public static final int checkbox = 0x7f0b0052;
- public static final int chronometer = 0x7f0b00b2;
- public static final int collapseActionView = 0x7f0b0034;
- public static final int contentPanel = 0x7f0b004a;
- public static final int custom = 0x7f0b0050;
- public static final int customPanel = 0x7f0b004f;
- public static final int decor_content_parent = 0x7f0b0058;
- public static final int default_activity_button = 0x7f0b0040;
- public static final int disableHome = 0x7f0b000e;
- public static final int edit_query = 0x7f0b005c;
- public static final int end = 0x7f0b0021;
- public static final int end_padder = 0x7f0b00b7;
- public static final int expand_activities_button = 0x7f0b003e;
- public static final int expanded_menu = 0x7f0b0051;
- public static final int home = 0x7f0b0004;
- public static final int homeAsUp = 0x7f0b000f;
- public static final int icon = 0x7f0b0042;
- public static final int ifRoom = 0x7f0b0035;
- public static final int image = 0x7f0b003f;
- public static final int info = 0x7f0b00b6;
- public static final int line1 = 0x7f0b00b0;
- public static final int line3 = 0x7f0b00b4;
- public static final int listMode = 0x7f0b000b;
- public static final int list_item = 0x7f0b0041;
- public static final int media_actions = 0x7f0b00ae;
- public static final int middle = 0x7f0b0032;
- public static final int multiply = 0x7f0b0027;
- public static final int never = 0x7f0b0036;
- public static final int none = 0x7f0b0010;
- public static final int normal = 0x7f0b000c;
- public static final int parentPanel = 0x7f0b0046;
- public static final int progress_circular = 0x7f0b0006;
- public static final int progress_horizontal = 0x7f0b0007;
- public static final int radio = 0x7f0b0054;
- public static final int screen = 0x7f0b0028;
- public static final int scrollIndicatorDown = 0x7f0b004e;
- public static final int scrollIndicatorUp = 0x7f0b004b;
- public static final int scrollView = 0x7f0b004c;
- public static final int search_badge = 0x7f0b005e;
- public static final int search_bar = 0x7f0b005d;
- public static final int search_button = 0x7f0b005f;
- public static final int search_close_btn = 0x7f0b0064;
- public static final int search_edit_frame = 0x7f0b0060;
- public static final int search_go_btn = 0x7f0b0066;
- public static final int search_mag_icon = 0x7f0b0061;
- public static final int search_plate = 0x7f0b0062;
- public static final int search_src_text = 0x7f0b0063;
- public static final int search_voice_btn = 0x7f0b0067;
- public static final int select_dialog_listview = 0x7f0b0068;
- public static final int shortcut = 0x7f0b0053;
- public static final int showCustom = 0x7f0b0011;
- public static final int showHome = 0x7f0b0012;
- public static final int showTitle = 0x7f0b0013;
- public static final int spacer = 0x7f0b0045;
- public static final int split_action_bar = 0x7f0b0008;
- public static final int src_atop = 0x7f0b0029;
- public static final int src_in = 0x7f0b002a;
- public static final int src_over = 0x7f0b002b;
- public static final int status_bar_latest_event_content = 0x7f0b00ad;
- public static final int submit_area = 0x7f0b0065;
- public static final int tabMode = 0x7f0b000d;
- public static final int text = 0x7f0b00b5;
- public static final int text2 = 0x7f0b00b3;
- public static final int textSpacerNoButtons = 0x7f0b004d;
- public static final int time = 0x7f0b00b1;
- public static final int title = 0x7f0b0043;
- public static final int title_template = 0x7f0b0048;
- public static final int topPanel = 0x7f0b0047;
- public static final int up = 0x7f0b0009;
- public static final int useLogo = 0x7f0b0014;
- public static final int withText = 0x7f0b0037;
- public static final int wrap_content = 0x7f0b001a;
- }
- public static final class integer {
- public static final int abc_config_activityDefaultDur = 0x7f090002;
- public static final int abc_config_activityShortDur = 0x7f090003;
- public static final int abc_max_action_buttons = 0x7f090000;
- public static final int cancel_button_image_alpha = 0x7f090005;
- public static final int status_bar_notification_info_maxnum = 0x7f090006;
- }
- public static final class layout {
- public static final int abc_action_bar_title_item = 0x7f030000;
- public static final int abc_action_bar_up_container = 0x7f030001;
- public static final int abc_action_bar_view_list_nav_layout = 0x7f030002;
- public static final int abc_action_menu_item_layout = 0x7f030003;
- public static final int abc_action_menu_layout = 0x7f030004;
- public static final int abc_action_mode_bar = 0x7f030005;
- public static final int abc_action_mode_close_item_material = 0x7f030006;
- public static final int abc_activity_chooser_view = 0x7f030007;
- public static final int abc_activity_chooser_view_list_item = 0x7f030008;
- public static final int abc_alert_dialog_button_bar_material = 0x7f030009;
- public static final int abc_alert_dialog_material = 0x7f03000a;
- public static final int abc_dialog_title_material = 0x7f03000b;
- public static final int abc_expanded_menu_layout = 0x7f03000c;
- public static final int abc_list_menu_item_checkbox = 0x7f03000d;
- public static final int abc_list_menu_item_icon = 0x7f03000e;
- public static final int abc_list_menu_item_layout = 0x7f03000f;
- public static final int abc_list_menu_item_radio = 0x7f030010;
- public static final int abc_popup_menu_item_layout = 0x7f030011;
- public static final int abc_screen_content_include = 0x7f030012;
- public static final int abc_screen_simple = 0x7f030013;
- public static final int abc_screen_simple_overlay_action_mode = 0x7f030014;
- public static final int abc_screen_toolbar = 0x7f030015;
- public static final int abc_search_dropdown_item_icons_2line = 0x7f030016;
- public static final int abc_search_view = 0x7f030017;
- public static final int abc_select_dialog_material = 0x7f030018;
- public static final int notification_media_action = 0x7f030037;
- public static final int notification_media_cancel_action = 0x7f030038;
- public static final int notification_template_big_media = 0x7f030039;
- public static final int notification_template_big_media_narrow = 0x7f03003a;
- public static final int notification_template_lines = 0x7f03003b;
- public static final int notification_template_media = 0x7f03003c;
- public static final int notification_template_part_chronometer = 0x7f03003d;
- public static final int notification_template_part_time = 0x7f03003e;
- public static final int select_dialog_item_material = 0x7f03003f;
- public static final int select_dialog_multichoice_material = 0x7f030040;
- public static final int select_dialog_singlechoice_material = 0x7f030041;
- public static final int support_simple_spinner_dropdown_item = 0x7f030043;
- }
- public static final class string {
- public static final int abc_action_bar_home_description = 0x7f050000;
- public static final int abc_action_bar_home_description_format = 0x7f050001;
- public static final int abc_action_bar_home_subtitle_description_format = 0x7f050002;
- public static final int abc_action_bar_up_description = 0x7f050003;
- public static final int abc_action_menu_overflow_description = 0x7f050004;
- public static final int abc_action_mode_done = 0x7f050005;
- public static final int abc_activity_chooser_view_see_all = 0x7f050006;
- public static final int abc_activitychooserview_choose_application = 0x7f050007;
- public static final int abc_capital_off = 0x7f050008;
- public static final int abc_capital_on = 0x7f050009;
- public static final int abc_search_hint = 0x7f05000a;
- public static final int abc_searchview_description_clear = 0x7f05000b;
- public static final int abc_searchview_description_query = 0x7f05000c;
- public static final int abc_searchview_description_search = 0x7f05000d;
- public static final int abc_searchview_description_submit = 0x7f05000e;
- public static final int abc_searchview_description_voice = 0x7f05000f;
- public static final int abc_shareactionprovider_share_with = 0x7f050010;
- public static final int abc_shareactionprovider_share_with_application = 0x7f050011;
- public static final int abc_toolbar_collapse_description = 0x7f050012;
- public static final int status_bar_notification_info_overflow = 0x7f050013;
- }
- public static final class style {
- public static final int AlertDialog_AppCompat = 0x7f080087;
- public static final int AlertDialog_AppCompat_Light = 0x7f080088;
- public static final int Animation_AppCompat_Dialog = 0x7f080089;
- public static final int Animation_AppCompat_DropDownUp = 0x7f08008a;
- public static final int Base_AlertDialog_AppCompat = 0x7f080090;
- public static final int Base_AlertDialog_AppCompat_Light = 0x7f080091;
- public static final int Base_Animation_AppCompat_Dialog = 0x7f080092;
- public static final int Base_Animation_AppCompat_DropDownUp = 0x7f080093;
- public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f080095;
- public static final int Base_DialogWindowTitle_AppCompat = 0x7f080094;
- public static final int Base_TextAppearance_AppCompat = 0x7f080037;
- public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f080038;
- public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f080039;
- public static final int Base_TextAppearance_AppCompat_Button = 0x7f080021;
- public static final int Base_TextAppearance_AppCompat_Caption = 0x7f08003a;
- public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f08003b;
- public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f08003c;
- public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f08003d;
- public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f08003e;
- public static final int Base_TextAppearance_AppCompat_Headline = 0x7f08003f;
- public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f08000c;
- public static final int Base_TextAppearance_AppCompat_Large = 0x7f080040;
- public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f08000d;
- public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f080041;
- public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f080042;
- public static final int Base_TextAppearance_AppCompat_Medium = 0x7f080043;
- public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f08000e;
- public static final int Base_TextAppearance_AppCompat_Menu = 0x7f080044;
- public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f080096;
- public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f080045;
- public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f080046;
- public static final int Base_TextAppearance_AppCompat_Small = 0x7f080047;
- public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f08000f;
- public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f080048;
- public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f080010;
- public static final int Base_TextAppearance_AppCompat_Title = 0x7f080049;
- public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f080011;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f080080;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f08004a;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f08004b;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f08004c;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f08004d;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f08004e;
- public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f08004f;
- public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f080050;
- public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f080081;
- public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f080097;
- public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f080051;
- public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f080052;
- public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f080053;
- public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f080054;
- public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f080098;
- public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f080055;
- public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f080056;
- public static final int Base_ThemeOverlay_AppCompat = 0x7f0800a1;
- public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0800a2;
- public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0800a3;
- public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0800a4;
- public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0800a5;
- public static final int Base_Theme_AppCompat = 0x7f080057;
- public static final int Base_Theme_AppCompat_CompactMenu = 0x7f080099;
- public static final int Base_Theme_AppCompat_Dialog = 0x7f080012;
- public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f080002;
- public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f08009a;
- public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f08009b;
- public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f08009c;
- public static final int Base_Theme_AppCompat_Light = 0x7f080058;
- public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f08009d;
- public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f080013;
- public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f080003;
- public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f08009e;
- public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f08009f;
- public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0800a0;
- public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f080014;
- public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f080015;
- public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f08001d;
- public static final int Base_V12_Widget_AppCompat_EditText = 0x7f08001e;
- public static final int Base_V21_Theme_AppCompat = 0x7f080059;
- public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f08005a;
- public static final int Base_V21_Theme_AppCompat_Light = 0x7f08005b;
- public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f08005c;
- public static final int Base_V22_Theme_AppCompat = 0x7f08007e;
- public static final int Base_V22_Theme_AppCompat_Light = 0x7f08007f;
- public static final int Base_V23_Theme_AppCompat = 0x7f080082;
- public static final int Base_V23_Theme_AppCompat_Light = 0x7f080083;
- public static final int Base_V7_Theme_AppCompat = 0x7f0800a6;
- public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0800a7;
- public static final int Base_V7_Theme_AppCompat_Light = 0x7f0800a8;
- public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0800a9;
- public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0800aa;
- public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0800ab;
- public static final int Base_Widget_AppCompat_ActionBar = 0x7f0800ac;
- public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0800ad;
- public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0800ae;
- public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f08005d;
- public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f08005e;
- public static final int Base_Widget_AppCompat_ActionButton = 0x7f08005f;
- public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f080060;
- public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f080061;
- public static final int Base_Widget_AppCompat_ActionMode = 0x7f0800af;
- public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0800b0;
- public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f08001f;
- public static final int Base_Widget_AppCompat_Button = 0x7f080062;
- public static final int Base_Widget_AppCompat_ButtonBar = 0x7f080066;
- public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0800b2;
- public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f080063;
- public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f080064;
- public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0800b1;
- public static final int Base_Widget_AppCompat_Button_Colored = 0x7f080084;
- public static final int Base_Widget_AppCompat_Button_Small = 0x7f080065;
- public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f080067;
- public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f080068;
- public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0800b3;
- public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f080000;
- public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0800b4;
- public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f080069;
- public static final int Base_Widget_AppCompat_EditText = 0x7f080020;
- public static final int Base_Widget_AppCompat_ImageButton = 0x7f08006a;
- public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0800b5;
- public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0800b6;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0800b7;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f08006b;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f08006c;
- public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f08006d;
- public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f08006e;
- public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f08006f;
- public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f080070;
- public static final int Base_Widget_AppCompat_ListView = 0x7f080071;
- public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f080072;
- public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f080073;
- public static final int Base_Widget_AppCompat_PopupMenu = 0x7f080074;
- public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f080075;
- public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0800b8;
- public static final int Base_Widget_AppCompat_ProgressBar = 0x7f080016;
- public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f080017;
- public static final int Base_Widget_AppCompat_RatingBar = 0x7f080076;
- public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f080085;
- public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f080086;
- public static final int Base_Widget_AppCompat_SearchView = 0x7f0800b9;
- public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0800ba;
- public static final int Base_Widget_AppCompat_SeekBar = 0x7f080077;
- public static final int Base_Widget_AppCompat_Spinner = 0x7f080078;
- public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f080004;
- public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f080079;
- public static final int Base_Widget_AppCompat_Toolbar = 0x7f0800bb;
- public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f08007a;
- public static final int Platform_AppCompat = 0x7f080018;
- public static final int Platform_AppCompat_Light = 0x7f080019;
- public static final int Platform_ThemeOverlay_AppCompat = 0x7f08007b;
- public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f08007c;
- public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f08007d;
- public static final int Platform_V11_AppCompat = 0x7f08001a;
- public static final int Platform_V11_AppCompat_Light = 0x7f08001b;
- public static final int Platform_V14_AppCompat = 0x7f080022;
- public static final int Platform_V14_AppCompat_Light = 0x7f080023;
- public static final int Platform_Widget_AppCompat_Spinner = 0x7f08001c;
- public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f080029;
- public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f08002a;
- public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f08002b;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f08002c;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f08002d;
- public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f08002e;
- public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f080034;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f08002f;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f080030;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f080031;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f080032;
- public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f080033;
- public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f080035;
- public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f080036;
- public static final int TextAppearance_AppCompat = 0x7f0800c1;
- public static final int TextAppearance_AppCompat_Body1 = 0x7f0800c2;
- public static final int TextAppearance_AppCompat_Body2 = 0x7f0800c3;
- public static final int TextAppearance_AppCompat_Button = 0x7f0800c4;
- public static final int TextAppearance_AppCompat_Caption = 0x7f0800c5;
- public static final int TextAppearance_AppCompat_Display1 = 0x7f0800c6;
- public static final int TextAppearance_AppCompat_Display2 = 0x7f0800c7;
- public static final int TextAppearance_AppCompat_Display3 = 0x7f0800c8;
- public static final int TextAppearance_AppCompat_Display4 = 0x7f0800c9;
- public static final int TextAppearance_AppCompat_Headline = 0x7f0800ca;
- public static final int TextAppearance_AppCompat_Inverse = 0x7f0800cb;
- public static final int TextAppearance_AppCompat_Large = 0x7f0800cc;
- public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0800cd;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0800ce;
- public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0800cf;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0800d0;
- public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0800d1;
- public static final int TextAppearance_AppCompat_Medium = 0x7f0800d2;
- public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0800d3;
- public static final int TextAppearance_AppCompat_Menu = 0x7f0800d4;
- public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0800d5;
- public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0800d6;
- public static final int TextAppearance_AppCompat_Small = 0x7f0800d7;
- public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0800d8;
- public static final int TextAppearance_AppCompat_Subhead = 0x7f0800d9;
- public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0800da;
- public static final int TextAppearance_AppCompat_Title = 0x7f0800db;
- public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0800dc;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0800dd;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0800de;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0800df;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0800e0;
- public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0800e1;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0800e2;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0800e3;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0800e4;
- public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0800e5;
- public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0800e6;
- public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0800e7;
- public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0800e8;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0800e9;
- public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0800ea;
- public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0800eb;
- public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0800ec;
- public static final int TextAppearance_StatusBar_EventContent = 0x7f080024;
- public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f080025;
- public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f080026;
- public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f080027;
- public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f080028;
- public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0800f4;
- public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0800f5;
- public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0800f6;
- public static final int ThemeOverlay_AppCompat = 0x7f08010b;
- public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f08010c;
- public static final int ThemeOverlay_AppCompat_Dark = 0x7f08010d;
- public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f08010e;
- public static final int ThemeOverlay_AppCompat_Light = 0x7f08010f;
- public static final int Theme_AppCompat = 0x7f0800f7;
- public static final int Theme_AppCompat_CompactMenu = 0x7f0800f8;
- public static final int Theme_AppCompat_DayNight = 0x7f080005;
- public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f080006;
- public static final int Theme_AppCompat_DayNight_Dialog = 0x7f080007;
- public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f08000a;
- public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f080008;
- public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f080009;
- public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f08000b;
- public static final int Theme_AppCompat_Dialog = 0x7f0800f9;
- public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0800fc;
- public static final int Theme_AppCompat_Dialog_Alert = 0x7f0800fa;
- public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0800fb;
- public static final int Theme_AppCompat_Light = 0x7f0800fd;
- public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0800fe;
- public static final int Theme_AppCompat_Light_Dialog = 0x7f0800ff;
- public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f080102;
- public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f080100;
- public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f080101;
- public static final int Theme_AppCompat_Light_NoActionBar = 0x7f080103;
- public static final int Theme_AppCompat_NoActionBar = 0x7f080104;
- public static final int Widget_AppCompat_ActionBar = 0x7f080110;
- public static final int Widget_AppCompat_ActionBar_Solid = 0x7f080111;
- public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f080112;
- public static final int Widget_AppCompat_ActionBar_TabText = 0x7f080113;
- public static final int Widget_AppCompat_ActionBar_TabView = 0x7f080114;
- public static final int Widget_AppCompat_ActionButton = 0x7f080115;
- public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f080116;
- public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f080117;
- public static final int Widget_AppCompat_ActionMode = 0x7f080118;
- public static final int Widget_AppCompat_ActivityChooserView = 0x7f080119;
- public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f08011a;
- public static final int Widget_AppCompat_Button = 0x7f08011b;
- public static final int Widget_AppCompat_ButtonBar = 0x7f080121;
- public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f080122;
- public static final int Widget_AppCompat_Button_Borderless = 0x7f08011c;
- public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f08011d;
- public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f08011e;
- public static final int Widget_AppCompat_Button_Colored = 0x7f08011f;
- public static final int Widget_AppCompat_Button_Small = 0x7f080120;
- public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f080123;
- public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f080124;
- public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f080125;
- public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f080126;
- public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f080127;
- public static final int Widget_AppCompat_EditText = 0x7f080128;
- public static final int Widget_AppCompat_ImageButton = 0x7f080129;
- public static final int Widget_AppCompat_Light_ActionBar = 0x7f08012a;
- public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f08012b;
- public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f08012c;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f08012d;
- public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f08012e;
- public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f08012f;
- public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f080130;
- public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f080131;
- public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f080132;
- public static final int Widget_AppCompat_Light_ActionButton = 0x7f080133;
- public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f080134;
- public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f080135;
- public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f080136;
- public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f080137;
- public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f080138;
- public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f080139;
- public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f08013a;
- public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f08013b;
- public static final int Widget_AppCompat_Light_PopupMenu = 0x7f08013c;
- public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f08013d;
- public static final int Widget_AppCompat_Light_SearchView = 0x7f08013e;
- public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f08013f;
- public static final int Widget_AppCompat_ListPopupWindow = 0x7f080140;
- public static final int Widget_AppCompat_ListView = 0x7f080141;
- public static final int Widget_AppCompat_ListView_DropDown = 0x7f080142;
- public static final int Widget_AppCompat_ListView_Menu = 0x7f080143;
- public static final int Widget_AppCompat_PopupMenu = 0x7f080144;
- public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f080145;
- public static final int Widget_AppCompat_PopupWindow = 0x7f080146;
- public static final int Widget_AppCompat_ProgressBar = 0x7f080147;
- public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f080148;
- public static final int Widget_AppCompat_RatingBar = 0x7f080149;
- public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f08014a;
- public static final int Widget_AppCompat_RatingBar_Small = 0x7f08014b;
- public static final int Widget_AppCompat_SearchView = 0x7f08014c;
- public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f08014d;
- public static final int Widget_AppCompat_SeekBar = 0x7f08014e;
- public static final int Widget_AppCompat_Spinner = 0x7f08014f;
- public static final int Widget_AppCompat_Spinner_DropDown = 0x7f080150;
- public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f080151;
- public static final int Widget_AppCompat_Spinner_Underlined = 0x7f080152;
- public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f080153;
- public static final int Widget_AppCompat_Toolbar = 0x7f080154;
- public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f080155;
- }
- public static final class styleable {
- public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 };
- public static final int[] ActionBarLayout = { 0x010100b3 };
- public static final int ActionBarLayout_android_layout_gravity = 0;
- public static final int ActionBar_background = 10;
- public static final int ActionBar_backgroundSplit = 12;
- public static final int ActionBar_backgroundStacked = 11;
- public static final int ActionBar_contentInsetEnd = 21;
- public static final int ActionBar_contentInsetLeft = 22;
- public static final int ActionBar_contentInsetRight = 23;
- public static final int ActionBar_contentInsetStart = 20;
- public static final int ActionBar_customNavigationLayout = 13;
- public static final int ActionBar_displayOptions = 3;
- public static final int ActionBar_divider = 9;
- public static final int ActionBar_elevation = 24;
- public static final int ActionBar_height = 0;
- public static final int ActionBar_hideOnContentScroll = 19;
- public static final int ActionBar_homeAsUpIndicator = 26;
- public static final int ActionBar_homeLayout = 14;
- public static final int ActionBar_icon = 7;
- public static final int ActionBar_indeterminateProgressStyle = 16;
- public static final int ActionBar_itemPadding = 18;
- public static final int ActionBar_logo = 8;
- public static final int ActionBar_navigationMode = 2;
- public static final int ActionBar_popupTheme = 25;
- public static final int ActionBar_progressBarPadding = 17;
- public static final int ActionBar_progressBarStyle = 15;
- public static final int ActionBar_subtitle = 4;
- public static final int ActionBar_subtitleTextStyle = 6;
- public static final int ActionBar_title = 1;
- public static final int ActionBar_titleTextStyle = 5;
- public static final int[] ActionMenuItemView = { 0x0101013f };
- public static final int ActionMenuItemView_android_minWidth = 0;
- public static final int[] ActionMenuView = { };
- public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
- public static final int ActionMode_background = 3;
- public static final int ActionMode_backgroundSplit = 4;
- public static final int ActionMode_closeItemLayout = 5;
- public static final int ActionMode_height = 0;
- public static final int ActionMode_subtitleTextStyle = 2;
- public static final int ActionMode_titleTextStyle = 1;
- public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
- public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
- public static final int ActivityChooserView_initialActivityCount = 0;
- public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
- public static final int AlertDialog_android_layout = 0;
- public static final int AlertDialog_buttonPanelSideLayout = 1;
- public static final int AlertDialog_listItemLayout = 5;
- public static final int AlertDialog_listLayout = 2;
- public static final int AlertDialog_multiChoiceItemLayout = 3;
- public static final int AlertDialog_singleChoiceItemLayout = 4;
- public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
- public static final int AppCompatImageView_android_src = 0;
- public static final int AppCompatImageView_srcCompat = 1;
- public static final int[] AppCompatTextView = { 0x01010034, 0x7f010028 };
- public static final int AppCompatTextView_android_textAppearance = 0;
- public static final int AppCompatTextView_textAllCaps = 1;
- public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
- public static final int AppCompatTheme_actionBarDivider = 23;
- public static final int AppCompatTheme_actionBarItemBackground = 24;
- public static final int AppCompatTheme_actionBarPopupTheme = 17;
- public static final int AppCompatTheme_actionBarSize = 22;
- public static final int AppCompatTheme_actionBarSplitStyle = 19;
- public static final int AppCompatTheme_actionBarStyle = 18;
- public static final int AppCompatTheme_actionBarTabBarStyle = 13;
- public static final int AppCompatTheme_actionBarTabStyle = 12;
- public static final int AppCompatTheme_actionBarTabTextStyle = 14;
- public static final int AppCompatTheme_actionBarTheme = 20;
- public static final int AppCompatTheme_actionBarWidgetTheme = 21;
- public static final int AppCompatTheme_actionButtonStyle = 49;
- public static final int AppCompatTheme_actionDropDownStyle = 45;
- public static final int AppCompatTheme_actionMenuTextAppearance = 25;
- public static final int AppCompatTheme_actionMenuTextColor = 26;
- public static final int AppCompatTheme_actionModeBackground = 29;
- public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
- public static final int AppCompatTheme_actionModeCloseDrawable = 31;
- public static final int AppCompatTheme_actionModeCopyDrawable = 33;
- public static final int AppCompatTheme_actionModeCutDrawable = 32;
- public static final int AppCompatTheme_actionModeFindDrawable = 37;
- public static final int AppCompatTheme_actionModePasteDrawable = 34;
- public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
- public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
- public static final int AppCompatTheme_actionModeShareDrawable = 36;
- public static final int AppCompatTheme_actionModeSplitBackground = 30;
- public static final int AppCompatTheme_actionModeStyle = 27;
- public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
- public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
- public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
- public static final int AppCompatTheme_activityChooserViewStyle = 57;
- public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92;
- public static final int AppCompatTheme_alertDialogCenterButtons = 93;
- public static final int AppCompatTheme_alertDialogStyle = 91;
- public static final int AppCompatTheme_alertDialogTheme = 94;
- public static final int AppCompatTheme_android_windowAnimationStyle = 1;
- public static final int AppCompatTheme_android_windowIsFloating = 0;
- public static final int AppCompatTheme_autoCompleteTextViewStyle = 99;
- public static final int AppCompatTheme_borderlessButtonStyle = 54;
- public static final int AppCompatTheme_buttonBarButtonStyle = 51;
- public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97;
- public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98;
- public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96;
- public static final int AppCompatTheme_buttonBarStyle = 50;
- public static final int AppCompatTheme_buttonStyle = 100;
- public static final int AppCompatTheme_buttonStyleSmall = 101;
- public static final int AppCompatTheme_checkboxStyle = 102;
- public static final int AppCompatTheme_checkedTextViewStyle = 103;
- public static final int AppCompatTheme_colorAccent = 84;
- public static final int AppCompatTheme_colorButtonNormal = 88;
- public static final int AppCompatTheme_colorControlActivated = 86;
- public static final int AppCompatTheme_colorControlHighlight = 87;
- public static final int AppCompatTheme_colorControlNormal = 85;
- public static final int AppCompatTheme_colorPrimary = 82;
- public static final int AppCompatTheme_colorPrimaryDark = 83;
- public static final int AppCompatTheme_colorSwitchThumbNormal = 89;
- public static final int AppCompatTheme_controlBackground = 90;
- public static final int AppCompatTheme_dialogPreferredPadding = 43;
- public static final int AppCompatTheme_dialogTheme = 42;
- public static final int AppCompatTheme_dividerHorizontal = 56;
- public static final int AppCompatTheme_dividerVertical = 55;
- public static final int AppCompatTheme_dropDownListViewStyle = 74;
- public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46;
- public static final int AppCompatTheme_editTextBackground = 63;
- public static final int AppCompatTheme_editTextColor = 62;
- public static final int AppCompatTheme_editTextStyle = 104;
- public static final int AppCompatTheme_homeAsUpIndicator = 48;
- public static final int AppCompatTheme_imageButtonStyle = 64;
- public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81;
- public static final int AppCompatTheme_listDividerAlertDialog = 44;
- public static final int AppCompatTheme_listPopupWindowStyle = 75;
- public static final int AppCompatTheme_listPreferredItemHeight = 69;
- public static final int AppCompatTheme_listPreferredItemHeightLarge = 71;
- public static final int AppCompatTheme_listPreferredItemHeightSmall = 70;
- public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72;
- public static final int AppCompatTheme_listPreferredItemPaddingRight = 73;
- public static final int AppCompatTheme_panelBackground = 78;
- public static final int AppCompatTheme_panelMenuListTheme = 80;
- public static final int AppCompatTheme_panelMenuListWidth = 79;
- public static final int AppCompatTheme_popupMenuStyle = 60;
- public static final int AppCompatTheme_popupWindowStyle = 61;
- public static final int AppCompatTheme_radioButtonStyle = 105;
- public static final int AppCompatTheme_ratingBarStyle = 106;
- public static final int AppCompatTheme_ratingBarStyleIndicator = 107;
- public static final int AppCompatTheme_ratingBarStyleSmall = 108;
- public static final int AppCompatTheme_searchViewStyle = 68;
- public static final int AppCompatTheme_seekBarStyle = 109;
- public static final int AppCompatTheme_selectableItemBackground = 52;
- public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53;
- public static final int AppCompatTheme_spinnerDropDownItemStyle = 47;
- public static final int AppCompatTheme_spinnerStyle = 110;
- public static final int AppCompatTheme_switchStyle = 111;
- public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
- public static final int AppCompatTheme_textAppearanceListItem = 76;
- public static final int AppCompatTheme_textAppearanceListItemSmall = 77;
- public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66;
- public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65;
- public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
- public static final int AppCompatTheme_textColorAlertDialogListItem = 95;
- public static final int AppCompatTheme_textColorSearchUrl = 67;
- public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59;
- public static final int AppCompatTheme_toolbarStyle = 58;
- public static final int AppCompatTheme_windowActionBar = 2;
- public static final int AppCompatTheme_windowActionBarOverlay = 4;
- public static final int AppCompatTheme_windowActionModeOverlay = 5;
- public static final int AppCompatTheme_windowFixedHeightMajor = 9;
- public static final int AppCompatTheme_windowFixedHeightMinor = 7;
- public static final int AppCompatTheme_windowFixedWidthMajor = 6;
- public static final int AppCompatTheme_windowFixedWidthMinor = 8;
- public static final int AppCompatTheme_windowMinWidthMajor = 10;
- public static final int AppCompatTheme_windowMinWidthMinor = 11;
- public static final int AppCompatTheme_windowNoTitle = 3;
- public static final int[] ButtonBarLayout = { 0x7f010099 };
- public static final int ButtonBarLayout_allowStacking = 0;
- public static final int[] CompoundButton = { 0x01010107, 0x7f0100a9, 0x7f0100aa };
- 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 = { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb };
- public static final int DrawerArrowToggle_arrowHeadLength = 4;
- public static final int DrawerArrowToggle_arrowShaftLength = 5;
- public static final int DrawerArrowToggle_barLength = 6;
- public static final int DrawerArrowToggle_color = 0;
- public static final int DrawerArrowToggle_drawableSize = 2;
- public static final int DrawerArrowToggle_gapBetweenBars = 3;
- public static final int DrawerArrowToggle_spinBars = 1;
- public static final int DrawerArrowToggle_thickness = 7;
- public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 };
- 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_height = 2;
- public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
- public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
- public static final int LinearLayoutCompat_android_baselineAligned = 2;
- public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
- public static final int LinearLayoutCompat_android_gravity = 0;
- public static final int LinearLayoutCompat_android_orientation = 1;
- public static final int LinearLayoutCompat_android_weightSum = 4;
- public static final int LinearLayoutCompat_divider = 5;
- public static final int LinearLayoutCompat_dividerPadding = 8;
- public static final int LinearLayoutCompat_measureWithLargestChild = 6;
- public static final int LinearLayoutCompat_showDividers = 7;
- 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_checkableBehavior = 5;
- public static final int MenuGroup_android_enabled = 0;
- public static final int MenuGroup_android_id = 1;
- public static final int MenuGroup_android_menuCategory = 3;
- public static final int MenuGroup_android_orderInCategory = 4;
- public static final int MenuGroup_android_visible = 2;
- public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 };
- public static final int MenuItem_actionLayout = 14;
- public static final int MenuItem_actionProviderClass = 16;
- public static final int MenuItem_actionViewClass = 15;
- public static final int MenuItem_android_alphabeticShortcut = 9;
- public static final int MenuItem_android_checkable = 11;
- public static final int MenuItem_android_checked = 3;
- public static final int MenuItem_android_enabled = 1;
- public static final int MenuItem_android_icon = 0;
- public static final int MenuItem_android_id = 2;
- public static final int MenuItem_android_menuCategory = 5;
- public static final int MenuItem_android_numericShortcut = 10;
- public static final int MenuItem_android_onClick = 12;
- 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_visible = 4;
- public static final int MenuItem_showAsAction = 13;
- public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9 };
- public static final int MenuView_android_headerBackground = 4;
- public static final int MenuView_android_horizontalDivider = 2;
- public static final int MenuView_android_itemBackground = 5;
- public static final int MenuView_android_itemIconDisabledAlpha = 6;
- public static final int MenuView_android_itemTextAppearance = 1;
- public static final int MenuView_android_verticalDivider = 3;
- public static final int MenuView_android_windowAnimationStyle = 0;
- public static final int MenuView_preserveIconSpacing = 7;
- public static final int[] PopupWindow = { 0x01010176, 0x7f0100d0 };
- public static final int[] PopupWindowBackgroundState = { 0x7f0100d1 };
- public static final int PopupWindowBackgroundState_state_above_anchor = 0;
- public static final int PopupWindow_android_popupBackground = 0;
- public static final int PopupWindow_overlapAnchor = 1;
- public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
- public static final int SearchView_android_focusable = 0;
- public static final int SearchView_android_imeOptions = 3;
- public static final int SearchView_android_inputType = 2;
- public static final int SearchView_android_maxWidth = 1;
- public static final int SearchView_closeIcon = 8;
- public static final int SearchView_commitIcon = 13;
- public static final int SearchView_defaultQueryHint = 7;
- public static final int SearchView_goIcon = 9;
- public static final int SearchView_iconifiedByDefault = 5;
- public static final int SearchView_layout = 4;
- public static final int SearchView_queryBackground = 15;
- public static final int SearchView_queryHint = 6;
- public static final int SearchView_searchHintIcon = 11;
- public static final int SearchView_searchIcon = 10;
- public static final int SearchView_submitBackground = 16;
- public static final int SearchView_suggestionRowLayout = 14;
- public static final int SearchView_voiceIcon = 12;
- public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };
- public static final int Spinner_android_dropDownWidth = 3;
- 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_popupTheme = 4;
- public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec };
- public static final int SwitchCompat_android_textOff = 1;
- public static final int SwitchCompat_android_textOn = 0;
- public static final int SwitchCompat_android_thumb = 2;
- public static final int SwitchCompat_showText = 9;
- public static final int SwitchCompat_splitTrack = 8;
- public static final int SwitchCompat_switchMinWidth = 6;
- public static final int SwitchCompat_switchPadding = 7;
- public static final int SwitchCompat_switchTextAppearance = 5;
- public static final int SwitchCompat_thumbTextPadding = 4;
- public static final int SwitchCompat_track = 3;
- public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 };
- public static final int TextAppearance_android_shadowColor = 4;
- public static final int TextAppearance_android_shadowDx = 5;
- public static final int TextAppearance_android_shadowDy = 6;
- public static final int TextAppearance_android_shadowRadius = 7;
- public static final int TextAppearance_android_textColor = 3;
- public static final int TextAppearance_android_textSize = 0;
- public static final int TextAppearance_android_textStyle = 2;
- public static final int TextAppearance_android_typeface = 1;
- public static final int TextAppearance_textAllCaps = 8;
- public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 };
- public static final int Toolbar_android_gravity = 0;
- public static final int Toolbar_android_minHeight = 1;
- public static final int Toolbar_collapseContentDescription = 19;
- public static final int Toolbar_collapseIcon = 18;
- public static final int Toolbar_contentInsetEnd = 6;
- public static final int Toolbar_contentInsetLeft = 7;
- public static final int Toolbar_contentInsetRight = 8;
- public static final int Toolbar_contentInsetStart = 5;
- public static final int Toolbar_logo = 4;
- public static final int Toolbar_logoDescription = 22;
- public static final int Toolbar_maxButtonHeight = 17;
- public static final int Toolbar_navigationContentDescription = 21;
- public static final int Toolbar_navigationIcon = 20;
- public static final int Toolbar_popupTheme = 9;
- public static final int Toolbar_subtitle = 3;
- public static final int Toolbar_subtitleTextAppearance = 11;
- public static final int Toolbar_subtitleTextColor = 24;
- public static final int Toolbar_title = 2;
- public static final int Toolbar_titleMarginBottom = 16;
- public static final int Toolbar_titleMarginEnd = 14;
- public static final int Toolbar_titleMarginStart = 13;
- public static final int Toolbar_titleMarginTop = 15;
- public static final int Toolbar_titleMargins = 12;
- public static final int Toolbar_titleTextAppearance = 10;
- public static final int Toolbar_titleTextColor = 23;
- public static final int[] View = { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 };
- public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010118, 0x7f010119 };
- 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_inflatedId = 2;
- public static final int ViewStubCompat_android_layout = 1;
- public static final int View_android_focusable = 1;
- public static final int View_android_theme = 0;
- public static final int View_paddingEnd = 3;
- public static final int View_paddingStart = 2;
- public static final int View_theme = 4;
- }
-}
diff --git a/2p-android/trunk/build/generated/source/r/debug/android/support/v7/recyclerview/R.java b/2p-android/trunk/build/generated/source/r/debug/android/support/v7/recyclerview/R.java
deleted file mode 100644
index 284791f..0000000
--- a/2p-android/trunk/build/generated/source/r/debug/android/support/v7/recyclerview/R.java
+++ /dev/null
@@ -1,32 +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 android.support.v7.recyclerview;
-
-public final class R {
- public static final class attr {
- public static final int layoutManager = 0x7f0100d2;
- public static final int reverseLayout = 0x7f0100d4;
- public static final int spanCount = 0x7f0100d3;
- public static final int stackFromEnd = 0x7f0100d5;
- }
- public static final class dimen {
- public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f070067;
- public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f070068;
- public static final int item_touch_helper_swipe_escape_velocity = 0x7f070069;
- }
- public static final class id {
- public static final int item_touch_helper_previous_elevation = 0x7f0b0005;
- }
- public static final class styleable {
- public static final int[] RecyclerView = { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 };
- public static final int RecyclerView_android_orientation = 0;
- public static final int RecyclerView_layoutManager = 1;
- public static final int RecyclerView_reverseLayout = 3;
- public static final int RecyclerView_spanCount = 2;
- public static final int RecyclerView_stackFromEnd = 4;
- }
-}
diff --git a/2p-android/trunk/build/intermediates/classes/androidTest/debug/alice/tuprologx/android/tuprologmobile/ApplicationTest.class b/2p-android/trunk/build/intermediates/classes/androidTest/debug/alice/tuprologx/android/tuprologmobile/ApplicationTest.class
deleted file mode 100644
index eadf9c4..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/androidTest/debug/alice/tuprologx/android/tuprologmobile/ApplicationTest.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/androidTest/debug/alice/tuprologx/android/tuprologmobile/test/BuildConfig.class b/2p-android/trunk/build/intermediates/classes/androidTest/debug/alice/tuprologx/android/tuprologmobile/test/BuildConfig.class
deleted file mode 100644
index 6030b9f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/androidTest/debug/alice/tuprologx/android/tuprologmobile/test/BuildConfig.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity$1.class
deleted file mode 100644
index 77b81fa..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity$2.class
deleted file mode 100644
index a405b19..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity.class
deleted file mode 100644
index 7782d3e..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BaseActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BuildConfig.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BuildConfig.class
deleted file mode 100644
index 98f846a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/BuildConfig.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$1.class
deleted file mode 100644
index e8af52a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$2.class
deleted file mode 100644
index 2c3c6cd..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$3.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$3.class
deleted file mode 100644
index e6133f6..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$3.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1$1.class
deleted file mode 100644
index 14c1779..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1$2.class
deleted file mode 100644
index ddd31c3..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1.class
deleted file mode 100644
index dff7beb..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4.class
deleted file mode 100644
index 55ce33a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole$4.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole.class
deleted file mode 100644
index 880be8f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/CUIConsole.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/DescriptionActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/DescriptionActivity.class
deleted file mode 100644
index 06cf374..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/DescriptionActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HistoryActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HistoryActivity$1.class
deleted file mode 100644
index 3c2ffa7..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HistoryActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HistoryActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HistoryActivity.class
deleted file mode 100644
index e75dd83..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HistoryActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$1.class
deleted file mode 100644
index f832712..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$10.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$10.class
deleted file mode 100644
index 9458737..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$10.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$2.class
deleted file mode 100644
index fc2c813..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$3.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$3.class
deleted file mode 100644
index cf0ab15..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$3.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$4.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$4.class
deleted file mode 100644
index 128fb1e..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$4.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$5.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$5.class
deleted file mode 100644
index 4e319e4..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$5.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$6.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$6.class
deleted file mode 100644
index 83505ac..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$6.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$7$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$7$1.class
deleted file mode 100644
index 2c49ec6..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$7$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$7.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$7.class
deleted file mode 100644
index 503ab71..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$7.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$8$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$8$1.class
deleted file mode 100644
index ed15931..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$8$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$8.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$8.class
deleted file mode 100644
index b7804e7..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$8.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$9.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$9.class
deleted file mode 100644
index a1e577b..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity$9.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity.class
deleted file mode 100644
index efd63fc..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/HomeActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity$1.class
deleted file mode 100644
index 1310d0e..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity$DISPLAYMODE.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity$DISPLAYMODE.class
deleted file mode 100644
index 62afb98..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity$DISPLAYMODE.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.class
deleted file mode 100644
index 9423331..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryImportActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManager.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManager.class
deleted file mode 100644
index 6b2d679..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManager.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity$1.class
deleted file mode 100644
index 7fec381..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.class
deleted file mode 100644
index 78e6d61..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/LibraryManagerActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter$DatabaseHelper.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter$DatabaseHelper.class
deleted file mode 100644
index 7cf42c0..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter$DatabaseHelper.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.class
deleted file mode 100644
index db4e0ab..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/QueriesHistoryDbAdapter.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$anim.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$anim.class
deleted file mode 100644
index 741812a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$anim.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$attr.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$attr.class
deleted file mode 100644
index 9a4c37f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$attr.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$bool.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$bool.class
deleted file mode 100644
index 80f9645..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$bool.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$color.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$color.class
deleted file mode 100644
index d9f052b..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$color.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$dimen.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$dimen.class
deleted file mode 100644
index 8f348fe..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$dimen.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$drawable.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$drawable.class
deleted file mode 100644
index 6bc223a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$drawable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$id.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$id.class
deleted file mode 100644
index 7a9b482..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$id.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$integer.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$integer.class
deleted file mode 100644
index ac2f9a2..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$integer.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$layout.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$layout.class
deleted file mode 100644
index 759f4ef..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$layout.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$menu.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$menu.class
deleted file mode 100644
index bf65397..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$menu.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$string.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$string.class
deleted file mode 100644
index db20bbb..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$string.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$style.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$style.class
deleted file mode 100644
index 1dd17b7..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$style.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$styleable.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$styleable.class
deleted file mode 100644
index 1d8be28..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R$styleable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R.class
deleted file mode 100644
index 1ea4a87..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/R.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$1.class
deleted file mode 100644
index e52a313..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$2.class
deleted file mode 100644
index 1a09886..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$3.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$3.class
deleted file mode 100644
index 8c2ace1..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$3.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4$1.class
deleted file mode 100644
index 39680f1..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4$2.class
deleted file mode 100644
index b330392..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4.class
deleted file mode 100644
index 9ff7b6b..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$4.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5$1.class
deleted file mode 100644
index 426f053..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5$2.class
deleted file mode 100644
index c601c46..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5.class
deleted file mode 100644
index 3baea83..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$5.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6$1.class
deleted file mode 100644
index e3bd4b4..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6$2.class
deleted file mode 100644
index 9a55b1d..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6.class
deleted file mode 100644
index 06f27b5..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity$6.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity.class
deleted file mode 100644
index 576281f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SettingsActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SplashScreenActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SplashScreenActivity$1.class
deleted file mode 100644
index 0ce4b51..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SplashScreenActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.class
deleted file mode 100644
index b585aa6..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/SplashScreenActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity$1.class
deleted file mode 100644
index 222ff91..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.class
deleted file mode 100644
index 7a43943..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoriesDatabaseActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.class
deleted file mode 100644
index c1bc227..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryCursorAdapter.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter$DatabaseHelper.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter$DatabaseHelper.class
deleted file mode 100644
index 2f5b9f8..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter$DatabaseHelper.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.class
deleted file mode 100644
index 50471ce..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDbAdapter.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity$1.class
deleted file mode 100644
index b8eef64..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.class
deleted file mode 100644
index 7208880..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryDescriptionActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryEditActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryEditActivity$1.class
deleted file mode 100644
index 81abc41..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryEditActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.class
deleted file mode 100644
index 3a82448..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryEditActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter$DatabaseHelper.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter$DatabaseHelper.class
deleted file mode 100644
index bbd87d1..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter$DatabaseHelper.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.class
deleted file mode 100644
index fa132da..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryHistoryDbAdapter.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity$1.class
deleted file mode 100644
index ec5054c..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity$DISPLAYMODE.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity$DISPLAYMODE.class
deleted file mode 100644
index 020b77c..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity$DISPLAYMODE.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.class
deleted file mode 100644
index 475c106..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/TheoryImportActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter$1.class
deleted file mode 100644
index fb3303d..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter$ViewHolder.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter$ViewHolder.class
deleted file mode 100644
index 603688a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter$ViewHolder.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.class
deleted file mode 100644
index d07f16c..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/NavigationDrawerListAdapter.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.class
deleted file mode 100644
index c85c031..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/adapters/ViewPagerAdapter.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$1.class
deleted file mode 100644
index b5f0120..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$2.class
deleted file mode 100644
index cea88bf..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$3.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$3.class
deleted file mode 100644
index d7f2286..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment$3.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.class
deleted file mode 100644
index f538a46..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/QueryFragment.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$1.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$1.class
deleted file mode 100644
index 2198743..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$1.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$2.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$2.class
deleted file mode 100644
index 65e28f1..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$2.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$3.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$3.class
deleted file mode 100644
index e5f2378..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment$3.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.class
deleted file mode 100644
index 07dfeb4..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/fragments/TheoryFragment.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/models/Items.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/models/Items.class
deleted file mode 100644
index ed92c18..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/models/Items.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/tuPrologActivity.class b/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/tuPrologActivity.class
deleted file mode 100644
index 160aa61..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/alice/tuprologx/android/tuprologmobile/tuPrologActivity.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$anim.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$anim.class
deleted file mode 100644
index 0a831eb..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$anim.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$attr.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$attr.class
deleted file mode 100644
index 08f4a6e..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$attr.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$bool.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$bool.class
deleted file mode 100644
index 404f152..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$bool.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$color.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$color.class
deleted file mode 100644
index 413a7d3..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$color.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$dimen.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$dimen.class
deleted file mode 100644
index 0c085b0..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$dimen.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$drawable.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$drawable.class
deleted file mode 100644
index a0dc8d6..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$drawable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$id.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$id.class
deleted file mode 100644
index 2c17046..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$id.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$integer.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$integer.class
deleted file mode 100644
index e2a1051..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$integer.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$layout.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$layout.class
deleted file mode 100644
index 48fd362..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$layout.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$string.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$string.class
deleted file mode 100644
index ae0f3f9..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$string.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$style.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$style.class
deleted file mode 100644
index 2309cb9..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$style.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$styleable.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$styleable.class
deleted file mode 100644
index ab35d57..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R$styleable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R.class
deleted file mode 100644
index 418fff8..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/design/R.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class
deleted file mode 100644
index e84a3fd..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class
deleted file mode 100644
index 651dd6f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class
deleted file mode 100644
index 49c9786..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class
deleted file mode 100644
index 212d9a1..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class
deleted file mode 100644
index 890953f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class
deleted file mode 100644
index b3406c3..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class
deleted file mode 100644
index 65e3e56..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class
deleted file mode 100644
index cd5126c..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class
deleted file mode 100644
index 47bad9a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class
deleted file mode 100644
index d2281fa..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class
deleted file mode 100644
index 03fbecc..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class
deleted file mode 100644
index 06f70a7..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R.class
deleted file mode 100644
index 053ec5c..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/appcompat/R.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class
deleted file mode 100644
index 9dc0fb9..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class
deleted file mode 100644
index 9bcf997..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class
deleted file mode 100644
index eaacf2a..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class
deleted file mode 100644
index aa1213f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class b/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class
deleted file mode 100644
index e897a3f..0000000
Binary files a/2p-android/trunk/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/dex/debug/classes.dex b/2p-android/trunk/build/intermediates/dex/debug/classes.dex
deleted file mode 100644
index cf4735b..0000000
Binary files a/2p-android/trunk/build/intermediates/dex/debug/classes.dex and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/AndroidManifest.xml
deleted file mode 100644
index 88a0d85..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/AndroidManifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/aapt/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/aapt/AndroidManifest.xml
deleted file mode 100644
index 88a0d85..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/jars/classes.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/jars/classes.jar
deleted file mode 100644
index 8ff147b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/23.4.0/jars/classes.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/AndroidManifest.xml
deleted file mode 100644
index e15f76a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/R.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/R.txt
deleted file mode 100644
index 041ecf6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/R.txt
+++ /dev/null
@@ -1,1247 +0,0 @@
-int anim abc_fade_in 0x7f040000
-int anim abc_fade_out 0x7f040001
-int anim abc_grow_fade_in_from_bottom 0x7f040002
-int anim abc_popup_enter 0x7f040003
-int anim abc_popup_exit 0x7f040004
-int anim abc_shrink_fade_out_from_bottom 0x7f040005
-int anim abc_slide_in_bottom 0x7f040006
-int anim abc_slide_in_top 0x7f040007
-int anim abc_slide_out_bottom 0x7f040008
-int anim abc_slide_out_top 0x7f040009
-int attr actionBarDivider 0x7f01003b
-int attr actionBarItemBackground 0x7f01003c
-int attr actionBarPopupTheme 0x7f010035
-int attr actionBarSize 0x7f01003a
-int attr actionBarSplitStyle 0x7f010037
-int attr actionBarStyle 0x7f010036
-int attr actionBarTabBarStyle 0x7f010031
-int attr actionBarTabStyle 0x7f010030
-int attr actionBarTabTextStyle 0x7f010032
-int attr actionBarTheme 0x7f010038
-int attr actionBarWidgetTheme 0x7f010039
-int attr actionButtonStyle 0x7f010055
-int attr actionDropDownStyle 0x7f010051
-int attr actionLayout 0x7f0100a3
-int attr actionMenuTextAppearance 0x7f01003d
-int attr actionMenuTextColor 0x7f01003e
-int attr actionModeBackground 0x7f010041
-int attr actionModeCloseButtonStyle 0x7f010040
-int attr actionModeCloseDrawable 0x7f010043
-int attr actionModeCopyDrawable 0x7f010045
-int attr actionModeCutDrawable 0x7f010044
-int attr actionModeFindDrawable 0x7f010049
-int attr actionModePasteDrawable 0x7f010046
-int attr actionModePopupWindowStyle 0x7f01004b
-int attr actionModeSelectAllDrawable 0x7f010047
-int attr actionModeShareDrawable 0x7f010048
-int attr actionModeSplitBackground 0x7f010042
-int attr actionModeStyle 0x7f01003f
-int attr actionModeWebSearchDrawable 0x7f01004a
-int attr actionOverflowButtonStyle 0x7f010033
-int attr actionOverflowMenuStyle 0x7f010034
-int attr actionProviderClass 0x7f0100a5
-int attr actionViewClass 0x7f0100a4
-int attr activityChooserViewStyle 0x7f01005d
-int attr alertDialogButtonGroupStyle 0x7f010080
-int attr alertDialogCenterButtons 0x7f010081
-int attr alertDialogStyle 0x7f01007f
-int attr alertDialogTheme 0x7f010082
-int attr allowStacking 0x7f010094
-int attr arrowHeadLength 0x7f01009b
-int attr arrowShaftLength 0x7f01009c
-int attr autoCompleteTextViewStyle 0x7f010087
-int attr background 0x7f01000c
-int attr backgroundSplit 0x7f01000e
-int attr backgroundStacked 0x7f01000d
-int attr backgroundTint 0x7f0100cf
-int attr backgroundTintMode 0x7f0100d0
-int attr barLength 0x7f01009d
-int attr borderlessButtonStyle 0x7f01005a
-int attr buttonBarButtonStyle 0x7f010057
-int attr buttonBarNegativeButtonStyle 0x7f010085
-int attr buttonBarNeutralButtonStyle 0x7f010086
-int attr buttonBarPositiveButtonStyle 0x7f010084
-int attr buttonBarStyle 0x7f010056
-int attr buttonPanelSideLayout 0x7f01001f
-int attr buttonStyle 0x7f010088
-int attr buttonStyleSmall 0x7f010089
-int attr buttonTint 0x7f010095
-int attr buttonTintMode 0x7f010096
-int attr checkboxStyle 0x7f01008a
-int attr checkedTextViewStyle 0x7f01008b
-int attr closeIcon 0x7f0100ad
-int attr closeItemLayout 0x7f01001c
-int attr collapseContentDescription 0x7f0100c6
-int attr collapseIcon 0x7f0100c5
-int attr color 0x7f010097
-int attr colorAccent 0x7f010078
-int attr colorButtonNormal 0x7f01007c
-int attr colorControlActivated 0x7f01007a
-int attr colorControlHighlight 0x7f01007b
-int attr colorControlNormal 0x7f010079
-int attr colorPrimary 0x7f010076
-int attr colorPrimaryDark 0x7f010077
-int attr colorSwitchThumbNormal 0x7f01007d
-int attr commitIcon 0x7f0100b2
-int attr contentInsetEnd 0x7f010017
-int attr contentInsetLeft 0x7f010018
-int attr contentInsetRight 0x7f010019
-int attr contentInsetStart 0x7f010016
-int attr controlBackground 0x7f01007e
-int attr customNavigationLayout 0x7f01000f
-int attr defaultQueryHint 0x7f0100ac
-int attr dialogPreferredPadding 0x7f01004f
-int attr dialogTheme 0x7f01004e
-int attr displayOptions 0x7f010005
-int attr divider 0x7f01000b
-int attr dividerHorizontal 0x7f01005c
-int attr dividerPadding 0x7f0100a1
-int attr dividerVertical 0x7f01005b
-int attr drawableSize 0x7f010099
-int attr drawerArrowStyle 0x7f010000
-int attr dropDownListViewStyle 0x7f01006e
-int attr dropdownListPreferredItemHeight 0x7f010052
-int attr editTextBackground 0x7f010063
-int attr editTextColor 0x7f010062
-int attr editTextStyle 0x7f01008c
-int attr elevation 0x7f01001a
-int attr expandActivityOverflowButtonDrawable 0x7f01001e
-int attr gapBetweenBars 0x7f01009a
-int attr goIcon 0x7f0100ae
-int attr height 0x7f010001
-int attr hideOnContentScroll 0x7f010015
-int attr homeAsUpIndicator 0x7f010054
-int attr homeLayout 0x7f010010
-int attr icon 0x7f010009
-int attr iconifiedByDefault 0x7f0100aa
-int attr imageButtonStyle 0x7f010064
-int attr indeterminateProgressStyle 0x7f010012
-int attr initialActivityCount 0x7f01001d
-int attr isLightTheme 0x7f010002
-int attr itemPadding 0x7f010014
-int attr layout 0x7f0100a9
-int attr listChoiceBackgroundIndicator 0x7f010075
-int attr listDividerAlertDialog 0x7f010050
-int attr listItemLayout 0x7f010023
-int attr listLayout 0x7f010020
-int attr listPopupWindowStyle 0x7f01006f
-int attr listPreferredItemHeight 0x7f010069
-int attr listPreferredItemHeightLarge 0x7f01006b
-int attr listPreferredItemHeightSmall 0x7f01006a
-int attr listPreferredItemPaddingLeft 0x7f01006c
-int attr listPreferredItemPaddingRight 0x7f01006d
-int attr logo 0x7f01000a
-int attr logoDescription 0x7f0100c9
-int attr maxButtonHeight 0x7f0100c4
-int attr measureWithLargestChild 0x7f01009f
-int attr multiChoiceItemLayout 0x7f010021
-int attr navigationContentDescription 0x7f0100c8
-int attr navigationIcon 0x7f0100c7
-int attr navigationMode 0x7f010004
-int attr overlapAnchor 0x7f0100a7
-int attr paddingEnd 0x7f0100cd
-int attr paddingStart 0x7f0100cc
-int attr panelBackground 0x7f010072
-int attr panelMenuListTheme 0x7f010074
-int attr panelMenuListWidth 0x7f010073
-int attr popupMenuStyle 0x7f010060
-int attr popupTheme 0x7f01001b
-int attr popupWindowStyle 0x7f010061
-int attr preserveIconSpacing 0x7f0100a6
-int attr progressBarPadding 0x7f010013
-int attr progressBarStyle 0x7f010011
-int attr queryBackground 0x7f0100b4
-int attr queryHint 0x7f0100ab
-int attr radioButtonStyle 0x7f01008d
-int attr ratingBarStyle 0x7f01008e
-int attr ratingBarStyleIndicator 0x7f01008f
-int attr ratingBarStyleSmall 0x7f010090
-int attr searchHintIcon 0x7f0100b0
-int attr searchIcon 0x7f0100af
-int attr searchViewStyle 0x7f010068
-int attr seekBarStyle 0x7f010091
-int attr selectableItemBackground 0x7f010058
-int attr selectableItemBackgroundBorderless 0x7f010059
-int attr showAsAction 0x7f0100a2
-int attr showDividers 0x7f0100a0
-int attr showText 0x7f0100bc
-int attr singleChoiceItemLayout 0x7f010022
-int attr spinBars 0x7f010098
-int attr spinnerDropDownItemStyle 0x7f010053
-int attr spinnerStyle 0x7f010092
-int attr splitTrack 0x7f0100bb
-int attr srcCompat 0x7f010024
-int attr state_above_anchor 0x7f0100a8
-int attr submitBackground 0x7f0100b5
-int attr subtitle 0x7f010006
-int attr subtitleTextAppearance 0x7f0100be
-int attr subtitleTextColor 0x7f0100cb
-int attr subtitleTextStyle 0x7f010008
-int attr suggestionRowLayout 0x7f0100b3
-int attr switchMinWidth 0x7f0100b9
-int attr switchPadding 0x7f0100ba
-int attr switchStyle 0x7f010093
-int attr switchTextAppearance 0x7f0100b8
-int attr textAllCaps 0x7f010025
-int attr textAppearanceLargePopupMenu 0x7f01004c
-int attr textAppearanceListItem 0x7f010070
-int attr textAppearanceListItemSmall 0x7f010071
-int attr textAppearanceSearchResultSubtitle 0x7f010066
-int attr textAppearanceSearchResultTitle 0x7f010065
-int attr textAppearanceSmallPopupMenu 0x7f01004d
-int attr textColorAlertDialogListItem 0x7f010083
-int attr textColorSearchUrl 0x7f010067
-int attr theme 0x7f0100ce
-int attr thickness 0x7f01009e
-int attr thumbTextPadding 0x7f0100b7
-int attr title 0x7f010003
-int attr titleMarginBottom 0x7f0100c3
-int attr titleMarginEnd 0x7f0100c1
-int attr titleMarginStart 0x7f0100c0
-int attr titleMarginTop 0x7f0100c2
-int attr titleMargins 0x7f0100bf
-int attr titleTextAppearance 0x7f0100bd
-int attr titleTextColor 0x7f0100ca
-int attr titleTextStyle 0x7f010007
-int attr toolbarNavigationButtonStyle 0x7f01005f
-int attr toolbarStyle 0x7f01005e
-int attr track 0x7f0100b6
-int attr voiceIcon 0x7f0100b1
-int attr windowActionBar 0x7f010026
-int attr windowActionBarOverlay 0x7f010028
-int attr windowActionModeOverlay 0x7f010029
-int attr windowFixedHeightMajor 0x7f01002d
-int attr windowFixedHeightMinor 0x7f01002b
-int attr windowFixedWidthMajor 0x7f01002a
-int attr windowFixedWidthMinor 0x7f01002c
-int attr windowMinWidthMajor 0x7f01002e
-int attr windowMinWidthMinor 0x7f01002f
-int attr windowNoTitle 0x7f010027
-int bool abc_action_bar_embed_tabs 0x7f060003
-int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
-int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004
-int bool abc_allow_stacked_button_bar 0x7f060000
-int bool abc_config_actionMenuItemAllCaps 0x7f060005
-int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002
-int bool abc_config_closeDialogWhenTouchOutside 0x7f060006
-int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007
-int color abc_background_cache_hint_selector_material_dark 0x7f0a003a
-int color abc_background_cache_hint_selector_material_light 0x7f0a003b
-int color abc_color_highlight_material 0x7f0a003c
-int color abc_input_method_navigation_guard 0x7f0a0000
-int color abc_primary_text_disable_only_material_dark 0x7f0a003d
-int color abc_primary_text_disable_only_material_light 0x7f0a003e
-int color abc_primary_text_material_dark 0x7f0a003f
-int color abc_primary_text_material_light 0x7f0a0040
-int color abc_search_url_text 0x7f0a0041
-int color abc_search_url_text_normal 0x7f0a0001
-int color abc_search_url_text_pressed 0x7f0a0002
-int color abc_search_url_text_selected 0x7f0a0003
-int color abc_secondary_text_material_dark 0x7f0a0042
-int color abc_secondary_text_material_light 0x7f0a0043
-int color accent_material_dark 0x7f0a0004
-int color accent_material_light 0x7f0a0005
-int color background_floating_material_dark 0x7f0a0006
-int color background_floating_material_light 0x7f0a0007
-int color background_material_dark 0x7f0a0008
-int color background_material_light 0x7f0a0009
-int color bright_foreground_disabled_material_dark 0x7f0a000a
-int color bright_foreground_disabled_material_light 0x7f0a000b
-int color bright_foreground_inverse_material_dark 0x7f0a000c
-int color bright_foreground_inverse_material_light 0x7f0a000d
-int color bright_foreground_material_dark 0x7f0a000e
-int color bright_foreground_material_light 0x7f0a000f
-int color button_material_dark 0x7f0a0010
-int color button_material_light 0x7f0a0011
-int color dim_foreground_disabled_material_dark 0x7f0a0012
-int color dim_foreground_disabled_material_light 0x7f0a0013
-int color dim_foreground_material_dark 0x7f0a0014
-int color dim_foreground_material_light 0x7f0a0015
-int color foreground_material_dark 0x7f0a0016
-int color foreground_material_light 0x7f0a0017
-int color highlighted_text_material_dark 0x7f0a0018
-int color highlighted_text_material_light 0x7f0a0019
-int color hint_foreground_material_dark 0x7f0a001a
-int color hint_foreground_material_light 0x7f0a001b
-int color material_blue_grey_800 0x7f0a001c
-int color material_blue_grey_900 0x7f0a001d
-int color material_blue_grey_950 0x7f0a001e
-int color material_deep_teal_200 0x7f0a001f
-int color material_deep_teal_500 0x7f0a0020
-int color material_grey_100 0x7f0a0021
-int color material_grey_300 0x7f0a0022
-int color material_grey_50 0x7f0a0023
-int color material_grey_600 0x7f0a0024
-int color material_grey_800 0x7f0a0025
-int color material_grey_850 0x7f0a0026
-int color material_grey_900 0x7f0a0027
-int color primary_dark_material_dark 0x7f0a0028
-int color primary_dark_material_light 0x7f0a0029
-int color primary_material_dark 0x7f0a002a
-int color primary_material_light 0x7f0a002b
-int color primary_text_default_material_dark 0x7f0a002c
-int color primary_text_default_material_light 0x7f0a002d
-int color primary_text_disabled_material_dark 0x7f0a002e
-int color primary_text_disabled_material_light 0x7f0a002f
-int color ripple_material_dark 0x7f0a0030
-int color ripple_material_light 0x7f0a0031
-int color secondary_text_default_material_dark 0x7f0a0032
-int color secondary_text_default_material_light 0x7f0a0033
-int color secondary_text_disabled_material_dark 0x7f0a0034
-int color secondary_text_disabled_material_light 0x7f0a0035
-int color switch_thumb_disabled_material_dark 0x7f0a0036
-int color switch_thumb_disabled_material_light 0x7f0a0037
-int color switch_thumb_material_dark 0x7f0a0044
-int color switch_thumb_material_light 0x7f0a0045
-int color switch_thumb_normal_material_dark 0x7f0a0038
-int color switch_thumb_normal_material_light 0x7f0a0039
-int dimen abc_action_bar_content_inset_material 0x7f07000d
-int dimen abc_action_bar_default_height_material 0x7f070001
-int dimen abc_action_bar_default_padding_end_material 0x7f07000e
-int dimen abc_action_bar_default_padding_start_material 0x7f07000f
-int dimen abc_action_bar_icon_vertical_padding_material 0x7f070011
-int dimen abc_action_bar_overflow_padding_end_material 0x7f070012
-int dimen abc_action_bar_overflow_padding_start_material 0x7f070013
-int dimen abc_action_bar_progress_bar_size 0x7f070002
-int dimen abc_action_bar_stacked_max_height 0x7f070014
-int dimen abc_action_bar_stacked_tab_max_width 0x7f070015
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070016
-int dimen abc_action_bar_subtitle_top_margin_material 0x7f070017
-int dimen abc_action_button_min_height_material 0x7f070018
-int dimen abc_action_button_min_width_material 0x7f070019
-int dimen abc_action_button_min_width_overflow_material 0x7f07001a
-int dimen abc_alert_dialog_button_bar_height 0x7f070000
-int dimen abc_button_inset_horizontal_material 0x7f07001b
-int dimen abc_button_inset_vertical_material 0x7f07001c
-int dimen abc_button_padding_horizontal_material 0x7f07001d
-int dimen abc_button_padding_vertical_material 0x7f07001e
-int dimen abc_config_prefDialogWidth 0x7f070005
-int dimen abc_control_corner_material 0x7f07001f
-int dimen abc_control_inset_material 0x7f070020
-int dimen abc_control_padding_material 0x7f070021
-int dimen abc_dialog_fixed_height_major 0x7f070006
-int dimen abc_dialog_fixed_height_minor 0x7f070007
-int dimen abc_dialog_fixed_width_major 0x7f070008
-int dimen abc_dialog_fixed_width_minor 0x7f070009
-int dimen abc_dialog_list_padding_vertical_material 0x7f070022
-int dimen abc_dialog_min_width_major 0x7f07000a
-int dimen abc_dialog_min_width_minor 0x7f07000b
-int dimen abc_dialog_padding_material 0x7f070023
-int dimen abc_dialog_padding_top_material 0x7f070024
-int dimen abc_disabled_alpha_material_dark 0x7f070025
-int dimen abc_disabled_alpha_material_light 0x7f070026
-int dimen abc_dropdownitem_icon_width 0x7f070027
-int dimen abc_dropdownitem_text_padding_left 0x7f070028
-int dimen abc_dropdownitem_text_padding_right 0x7f070029
-int dimen abc_edit_text_inset_bottom_material 0x7f07002a
-int dimen abc_edit_text_inset_horizontal_material 0x7f07002b
-int dimen abc_edit_text_inset_top_material 0x7f07002c
-int dimen abc_floating_window_z 0x7f07002d
-int dimen abc_list_item_padding_horizontal_material 0x7f07002e
-int dimen abc_panel_menu_list_width 0x7f07002f
-int dimen abc_search_view_preferred_width 0x7f070030
-int dimen abc_search_view_text_min_width 0x7f07000c
-int dimen abc_seekbar_track_background_height_material 0x7f070031
-int dimen abc_seekbar_track_progress_height_material 0x7f070032
-int dimen abc_select_dialog_padding_start_material 0x7f070033
-int dimen abc_switch_padding 0x7f070010
-int dimen abc_text_size_body_1_material 0x7f070034
-int dimen abc_text_size_body_2_material 0x7f070035
-int dimen abc_text_size_button_material 0x7f070036
-int dimen abc_text_size_caption_material 0x7f070037
-int dimen abc_text_size_display_1_material 0x7f070038
-int dimen abc_text_size_display_2_material 0x7f070039
-int dimen abc_text_size_display_3_material 0x7f07003a
-int dimen abc_text_size_display_4_material 0x7f07003b
-int dimen abc_text_size_headline_material 0x7f07003c
-int dimen abc_text_size_large_material 0x7f07003d
-int dimen abc_text_size_medium_material 0x7f07003e
-int dimen abc_text_size_menu_material 0x7f07003f
-int dimen abc_text_size_small_material 0x7f070040
-int dimen abc_text_size_subhead_material 0x7f070041
-int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
-int dimen abc_text_size_title_material 0x7f070042
-int dimen abc_text_size_title_material_toolbar 0x7f070004
-int dimen disabled_alpha_material_dark 0x7f070043
-int dimen disabled_alpha_material_light 0x7f070044
-int dimen highlight_alpha_material_colored 0x7f070045
-int dimen highlight_alpha_material_dark 0x7f070046
-int dimen highlight_alpha_material_light 0x7f070047
-int dimen notification_large_icon_height 0x7f070048
-int dimen notification_large_icon_width 0x7f070049
-int dimen notification_subtext_size 0x7f07004a
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
-int drawable abc_action_bar_item_background_material 0x7f020001
-int drawable abc_btn_borderless_material 0x7f020002
-int drawable abc_btn_check_material 0x7f020003
-int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
-int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
-int drawable abc_btn_colored_material 0x7f020006
-int drawable abc_btn_default_mtrl_shape 0x7f020007
-int drawable abc_btn_radio_material 0x7f020008
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
-int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
-int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
-int drawable abc_cab_background_internal_bg 0x7f02000f
-int drawable abc_cab_background_top_material 0x7f020010
-int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
-int drawable abc_control_background_material 0x7f020012
-int drawable abc_dialog_material_background_dark 0x7f020013
-int drawable abc_dialog_material_background_light 0x7f020014
-int drawable abc_edit_text_material 0x7f020015
-int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
-int drawable abc_ic_clear_mtrl_alpha 0x7f020017
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
-int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
-int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
-int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
-int drawable abc_ic_star_black_16dp 0x7f020021
-int drawable abc_ic_star_black_36dp 0x7f020022
-int drawable abc_ic_star_half_black_16dp 0x7f020023
-int drawable abc_ic_star_half_black_36dp 0x7f020024
-int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
-int drawable abc_item_background_holo_dark 0x7f020026
-int drawable abc_item_background_holo_light 0x7f020027
-int drawable abc_list_divider_mtrl_alpha 0x7f020028
-int drawable abc_list_focused_holo 0x7f020029
-int drawable abc_list_longpressed_holo 0x7f02002a
-int drawable abc_list_pressed_holo_dark 0x7f02002b
-int drawable abc_list_pressed_holo_light 0x7f02002c
-int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
-int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
-int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
-int drawable abc_list_selector_disabled_holo_light 0x7f020030
-int drawable abc_list_selector_holo_dark 0x7f020031
-int drawable abc_list_selector_holo_light 0x7f020032
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
-int drawable abc_popup_background_mtrl_mult 0x7f020034
-int drawable abc_ratingbar_full_material 0x7f020035
-int drawable abc_ratingbar_indicator_material 0x7f020036
-int drawable abc_ratingbar_small_material 0x7f020037
-int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
-int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
-int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
-int drawable abc_seekbar_thumb_material 0x7f02003d
-int drawable abc_seekbar_track_material 0x7f02003e
-int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
-int drawable abc_spinner_textfield_background_material 0x7f020040
-int drawable abc_switch_thumb_material 0x7f020041
-int drawable abc_switch_track_mtrl_alpha 0x7f020042
-int drawable abc_tab_indicator_material 0x7f020043
-int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
-int drawable abc_text_cursor_material 0x7f020045
-int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
-int drawable abc_textfield_default_mtrl_alpha 0x7f020047
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
-int drawable abc_textfield_search_material 0x7f02004a
-int drawable notification_template_icon_bg 0x7f02004b
-int id action0 0x7f0b0050
-int id action_bar 0x7f0b0041
-int id action_bar_activity_content 0x7f0b0000
-int id action_bar_container 0x7f0b0040
-int id action_bar_root 0x7f0b003c
-int id action_bar_spinner 0x7f0b0001
-int id action_bar_subtitle 0x7f0b0022
-int id action_bar_title 0x7f0b0021
-int id action_context_bar 0x7f0b0042
-int id action_divider 0x7f0b0054
-int id action_menu_divider 0x7f0b0002
-int id action_menu_presenter 0x7f0b0003
-int id action_mode_bar 0x7f0b003e
-int id action_mode_bar_stub 0x7f0b003d
-int id action_mode_close_button 0x7f0b0023
-int id activity_chooser_view_content 0x7f0b0024
-int id alertTitle 0x7f0b0030
-int id always 0x7f0b001c
-int id beginning 0x7f0b0019
-int id buttonPanel 0x7f0b002b
-int id cancel_action 0x7f0b0051
-int id checkbox 0x7f0b0039
-int id chronometer 0x7f0b0057
-int id collapseActionView 0x7f0b001d
-int id contentPanel 0x7f0b0031
-int id custom 0x7f0b0037
-int id customPanel 0x7f0b0036
-int id decor_content_parent 0x7f0b003f
-int id default_activity_button 0x7f0b0027
-int id disableHome 0x7f0b000c
-int id edit_query 0x7f0b0043
-int id end 0x7f0b001a
-int id end_padder 0x7f0b005c
-int id expand_activities_button 0x7f0b0025
-int id expanded_menu 0x7f0b0038
-int id home 0x7f0b0004
-int id homeAsUp 0x7f0b000d
-int id icon 0x7f0b0029
-int id ifRoom 0x7f0b001e
-int id image 0x7f0b0026
-int id info 0x7f0b005b
-int id line1 0x7f0b0055
-int id line3 0x7f0b0059
-int id listMode 0x7f0b0009
-int id list_item 0x7f0b0028
-int id media_actions 0x7f0b0053
-int id middle 0x7f0b001b
-int id multiply 0x7f0b0014
-int id never 0x7f0b001f
-int id none 0x7f0b000e
-int id normal 0x7f0b000a
-int id parentPanel 0x7f0b002d
-int id progress_circular 0x7f0b0005
-int id progress_horizontal 0x7f0b0006
-int id radio 0x7f0b003b
-int id screen 0x7f0b0015
-int id scrollIndicatorDown 0x7f0b0035
-int id scrollIndicatorUp 0x7f0b0032
-int id scrollView 0x7f0b0033
-int id search_badge 0x7f0b0045
-int id search_bar 0x7f0b0044
-int id search_button 0x7f0b0046
-int id search_close_btn 0x7f0b004b
-int id search_edit_frame 0x7f0b0047
-int id search_go_btn 0x7f0b004d
-int id search_mag_icon 0x7f0b0048
-int id search_plate 0x7f0b0049
-int id search_src_text 0x7f0b004a
-int id search_voice_btn 0x7f0b004e
-int id select_dialog_listview 0x7f0b004f
-int id shortcut 0x7f0b003a
-int id showCustom 0x7f0b000f
-int id showHome 0x7f0b0010
-int id showTitle 0x7f0b0011
-int id spacer 0x7f0b002c
-int id split_action_bar 0x7f0b0007
-int id src_atop 0x7f0b0016
-int id src_in 0x7f0b0017
-int id src_over 0x7f0b0018
-int id status_bar_latest_event_content 0x7f0b0052
-int id submit_area 0x7f0b004c
-int id tabMode 0x7f0b000b
-int id text 0x7f0b005a
-int id text2 0x7f0b0058
-int id textSpacerNoButtons 0x7f0b0034
-int id time 0x7f0b0056
-int id title 0x7f0b002a
-int id title_template 0x7f0b002f
-int id topPanel 0x7f0b002e
-int id up 0x7f0b0008
-int id useLogo 0x7f0b0012
-int id withText 0x7f0b0020
-int id wrap_content 0x7f0b0013
-int integer abc_config_activityDefaultDur 0x7f090001
-int integer abc_config_activityShortDur 0x7f090002
-int integer abc_max_action_buttons 0x7f090000
-int integer cancel_button_image_alpha 0x7f090003
-int integer status_bar_notification_info_maxnum 0x7f090004
-int layout abc_action_bar_title_item 0x7f030000
-int layout abc_action_bar_up_container 0x7f030001
-int layout abc_action_bar_view_list_nav_layout 0x7f030002
-int layout abc_action_menu_item_layout 0x7f030003
-int layout abc_action_menu_layout 0x7f030004
-int layout abc_action_mode_bar 0x7f030005
-int layout abc_action_mode_close_item_material 0x7f030006
-int layout abc_activity_chooser_view 0x7f030007
-int layout abc_activity_chooser_view_list_item 0x7f030008
-int layout abc_alert_dialog_button_bar_material 0x7f030009
-int layout abc_alert_dialog_material 0x7f03000a
-int layout abc_dialog_title_material 0x7f03000b
-int layout abc_expanded_menu_layout 0x7f03000c
-int layout abc_list_menu_item_checkbox 0x7f03000d
-int layout abc_list_menu_item_icon 0x7f03000e
-int layout abc_list_menu_item_layout 0x7f03000f
-int layout abc_list_menu_item_radio 0x7f030010
-int layout abc_popup_menu_item_layout 0x7f030011
-int layout abc_screen_content_include 0x7f030012
-int layout abc_screen_simple 0x7f030013
-int layout abc_screen_simple_overlay_action_mode 0x7f030014
-int layout abc_screen_toolbar 0x7f030015
-int layout abc_search_dropdown_item_icons_2line 0x7f030016
-int layout abc_search_view 0x7f030017
-int layout abc_select_dialog_material 0x7f030018
-int layout notification_media_action 0x7f030019
-int layout notification_media_cancel_action 0x7f03001a
-int layout notification_template_big_media 0x7f03001b
-int layout notification_template_big_media_narrow 0x7f03001c
-int layout notification_template_lines 0x7f03001d
-int layout notification_template_media 0x7f03001e
-int layout notification_template_part_chronometer 0x7f03001f
-int layout notification_template_part_time 0x7f030020
-int layout select_dialog_item_material 0x7f030021
-int layout select_dialog_multichoice_material 0x7f030022
-int layout select_dialog_singlechoice_material 0x7f030023
-int layout support_simple_spinner_dropdown_item 0x7f030024
-int string abc_action_bar_home_description 0x7f050000
-int string abc_action_bar_home_description_format 0x7f050001
-int string abc_action_bar_home_subtitle_description_format 0x7f050002
-int string abc_action_bar_up_description 0x7f050003
-int string abc_action_menu_overflow_description 0x7f050004
-int string abc_action_mode_done 0x7f050005
-int string abc_activity_chooser_view_see_all 0x7f050006
-int string abc_activitychooserview_choose_application 0x7f050007
-int string abc_capital_off 0x7f050008
-int string abc_capital_on 0x7f050009
-int string abc_search_hint 0x7f05000a
-int string abc_searchview_description_clear 0x7f05000b
-int string abc_searchview_description_query 0x7f05000c
-int string abc_searchview_description_search 0x7f05000d
-int string abc_searchview_description_submit 0x7f05000e
-int string abc_searchview_description_voice 0x7f05000f
-int string abc_shareactionprovider_share_with 0x7f050010
-int string abc_shareactionprovider_share_with_application 0x7f050011
-int string abc_toolbar_collapse_description 0x7f050012
-int string status_bar_notification_info_overflow 0x7f050013
-int style AlertDialog_AppCompat 0x7f080086
-int style AlertDialog_AppCompat_Light 0x7f080087
-int style Animation_AppCompat_Dialog 0x7f080088
-int style Animation_AppCompat_DropDownUp 0x7f080089
-int style Base_AlertDialog_AppCompat 0x7f08008a
-int style Base_AlertDialog_AppCompat_Light 0x7f08008b
-int style Base_Animation_AppCompat_Dialog 0x7f08008c
-int style Base_Animation_AppCompat_DropDownUp 0x7f08008d
-int style Base_DialogWindowTitle_AppCompat 0x7f08008e
-int style Base_DialogWindowTitleBackground_AppCompat 0x7f08008f
-int style Base_TextAppearance_AppCompat 0x7f080036
-int style Base_TextAppearance_AppCompat_Body1 0x7f080037
-int style Base_TextAppearance_AppCompat_Body2 0x7f080038
-int style Base_TextAppearance_AppCompat_Button 0x7f080020
-int style Base_TextAppearance_AppCompat_Caption 0x7f080039
-int style Base_TextAppearance_AppCompat_Display1 0x7f08003a
-int style Base_TextAppearance_AppCompat_Display2 0x7f08003b
-int style Base_TextAppearance_AppCompat_Display3 0x7f08003c
-int style Base_TextAppearance_AppCompat_Display4 0x7f08003d
-int style Base_TextAppearance_AppCompat_Headline 0x7f08003e
-int style Base_TextAppearance_AppCompat_Inverse 0x7f08000b
-int style Base_TextAppearance_AppCompat_Large 0x7f08003f
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f08000c
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080040
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080041
-int style Base_TextAppearance_AppCompat_Medium 0x7f080042
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f08000d
-int style Base_TextAppearance_AppCompat_Menu 0x7f080043
-int style Base_TextAppearance_AppCompat_SearchResult 0x7f080090
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080044
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080045
-int style Base_TextAppearance_AppCompat_Small 0x7f080046
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f08000e
-int style Base_TextAppearance_AppCompat_Subhead 0x7f080047
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f08000f
-int style Base_TextAppearance_AppCompat_Title 0x7f080048
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080010
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f08007f
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080049
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08004a
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08004b
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08004c
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08004d
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08004e
-int style Base_TextAppearance_AppCompat_Widget_Button 0x7f08004f
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080080
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080091
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080050
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080051
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080052
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080053
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080092
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080054
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080055
-int style Base_Theme_AppCompat 0x7f080056
-int style Base_Theme_AppCompat_CompactMenu 0x7f080093
-int style Base_Theme_AppCompat_Dialog 0x7f080011
-int style Base_Theme_AppCompat_Dialog_Alert 0x7f080094
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f080095
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f080096
-int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
-int style Base_Theme_AppCompat_Light 0x7f080057
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f080097
-int style Base_Theme_AppCompat_Light_Dialog 0x7f080012
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f080098
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f080099
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08009a
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
-int style Base_ThemeOverlay_AppCompat 0x7f08009b
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f08009c
-int style Base_ThemeOverlay_AppCompat_Dark 0x7f08009d
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f08009e
-int style Base_ThemeOverlay_AppCompat_Light 0x7f08009f
-int style Base_V11_Theme_AppCompat_Dialog 0x7f080013
-int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f080014
-int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f08001c
-int style Base_V12_Widget_AppCompat_EditText 0x7f08001d
-int style Base_V21_Theme_AppCompat 0x7f080058
-int style Base_V21_Theme_AppCompat_Dialog 0x7f080059
-int style Base_V21_Theme_AppCompat_Light 0x7f08005a
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08005b
-int style Base_V22_Theme_AppCompat 0x7f08007d
-int style Base_V22_Theme_AppCompat_Light 0x7f08007e
-int style Base_V23_Theme_AppCompat 0x7f080081
-int style Base_V23_Theme_AppCompat_Light 0x7f080082
-int style Base_V7_Theme_AppCompat 0x7f0800a0
-int style Base_V7_Theme_AppCompat_Dialog 0x7f0800a1
-int style Base_V7_Theme_AppCompat_Light 0x7f0800a2
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0800a3
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0800a4
-int style Base_V7_Widget_AppCompat_EditText 0x7f0800a5
-int style Base_Widget_AppCompat_ActionBar 0x7f0800a6
-int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0800a7
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0800a8
-int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08005c
-int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08005d
-int style Base_Widget_AppCompat_ActionButton 0x7f08005e
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f08005f
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080060
-int style Base_Widget_AppCompat_ActionMode 0x7f0800a9
-int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800aa
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f08001e
-int style Base_Widget_AppCompat_Button 0x7f080061
-int style Base_Widget_AppCompat_Button_Borderless 0x7f080062
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080063
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800ab
-int style Base_Widget_AppCompat_Button_Colored 0x7f080083
-int style Base_Widget_AppCompat_Button_Small 0x7f080064
-int style Base_Widget_AppCompat_ButtonBar 0x7f080065
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800ac
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080066
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080067
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800ad
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800ae
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080068
-int style Base_Widget_AppCompat_EditText 0x7f08001f
-int style Base_Widget_AppCompat_ImageButton 0x7f080069
-int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800af
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800b0
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800b1
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f08006a
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08006b
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08006c
-int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08006d
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08006e
-int style Base_Widget_AppCompat_ListPopupWindow 0x7f08006f
-int style Base_Widget_AppCompat_ListView 0x7f080070
-int style Base_Widget_AppCompat_ListView_DropDown 0x7f080071
-int style Base_Widget_AppCompat_ListView_Menu 0x7f080072
-int style Base_Widget_AppCompat_PopupMenu 0x7f080073
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080074
-int style Base_Widget_AppCompat_PopupWindow 0x7f0800b2
-int style Base_Widget_AppCompat_ProgressBar 0x7f080015
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f080016
-int style Base_Widget_AppCompat_RatingBar 0x7f080075
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f080084
-int style Base_Widget_AppCompat_RatingBar_Small 0x7f080085
-int style Base_Widget_AppCompat_SearchView 0x7f0800b3
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800b4
-int style Base_Widget_AppCompat_SeekBar 0x7f080076
-int style Base_Widget_AppCompat_Spinner 0x7f080077
-int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080003
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080078
-int style Base_Widget_AppCompat_Toolbar 0x7f0800b5
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080079
-int style Platform_AppCompat 0x7f080017
-int style Platform_AppCompat_Light 0x7f080018
-int style Platform_ThemeOverlay_AppCompat 0x7f08007a
-int style Platform_ThemeOverlay_AppCompat_Dark 0x7f08007b
-int style Platform_ThemeOverlay_AppCompat_Light 0x7f08007c
-int style Platform_V11_AppCompat 0x7f080019
-int style Platform_V11_AppCompat_Light 0x7f08001a
-int style Platform_V14_AppCompat 0x7f080021
-int style Platform_V14_AppCompat_Light 0x7f080022
-int style Platform_Widget_AppCompat_Spinner 0x7f08001b
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080028
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080029
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f08002a
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08002b
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08002c
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08002d
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08002e
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f08002f
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080030
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080031
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080032
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080033
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f080034
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f080035
-int style TextAppearance_AppCompat 0x7f0800b6
-int style TextAppearance_AppCompat_Body1 0x7f0800b7
-int style TextAppearance_AppCompat_Body2 0x7f0800b8
-int style TextAppearance_AppCompat_Button 0x7f0800b9
-int style TextAppearance_AppCompat_Caption 0x7f0800ba
-int style TextAppearance_AppCompat_Display1 0x7f0800bb
-int style TextAppearance_AppCompat_Display2 0x7f0800bc
-int style TextAppearance_AppCompat_Display3 0x7f0800bd
-int style TextAppearance_AppCompat_Display4 0x7f0800be
-int style TextAppearance_AppCompat_Headline 0x7f0800bf
-int style TextAppearance_AppCompat_Inverse 0x7f0800c0
-int style TextAppearance_AppCompat_Large 0x7f0800c1
-int style TextAppearance_AppCompat_Large_Inverse 0x7f0800c2
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800c3
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800c4
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800c5
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800c6
-int style TextAppearance_AppCompat_Medium 0x7f0800c7
-int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800c8
-int style TextAppearance_AppCompat_Menu 0x7f0800c9
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800ca
-int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800cb
-int style TextAppearance_AppCompat_Small 0x7f0800cc
-int style TextAppearance_AppCompat_Small_Inverse 0x7f0800cd
-int style TextAppearance_AppCompat_Subhead 0x7f0800ce
-int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800cf
-int style TextAppearance_AppCompat_Title 0x7f0800d0
-int style TextAppearance_AppCompat_Title_Inverse 0x7f0800d1
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800d2
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800d3
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800d4
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800d5
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800d6
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800d7
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800d8
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800d9
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800da
-int style TextAppearance_AppCompat_Widget_Button 0x7f0800db
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800dc
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800dd
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800de
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800df
-int style TextAppearance_AppCompat_Widget_Switch 0x7f0800e0
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800e1
-int style TextAppearance_StatusBar_EventContent 0x7f080023
-int style TextAppearance_StatusBar_EventContent_Info 0x7f080024
-int style TextAppearance_StatusBar_EventContent_Line2 0x7f080025
-int style TextAppearance_StatusBar_EventContent_Time 0x7f080026
-int style TextAppearance_StatusBar_EventContent_Title 0x7f080027
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800e2
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800e3
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800e4
-int style Theme_AppCompat 0x7f0800e5
-int style Theme_AppCompat_CompactMenu 0x7f0800e6
-int style Theme_AppCompat_DayNight 0x7f080004
-int style Theme_AppCompat_DayNight_DarkActionBar 0x7f080005
-int style Theme_AppCompat_DayNight_Dialog 0x7f080006
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f080007
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f080008
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f080009
-int style Theme_AppCompat_DayNight_NoActionBar 0x7f08000a
-int style Theme_AppCompat_Dialog 0x7f0800e7
-int style Theme_AppCompat_Dialog_Alert 0x7f0800e8
-int style Theme_AppCompat_Dialog_MinWidth 0x7f0800e9
-int style Theme_AppCompat_DialogWhenLarge 0x7f0800ea
-int style Theme_AppCompat_Light 0x7f0800eb
-int style Theme_AppCompat_Light_DarkActionBar 0x7f0800ec
-int style Theme_AppCompat_Light_Dialog 0x7f0800ed
-int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800ee
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800ef
-int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800f0
-int style Theme_AppCompat_Light_NoActionBar 0x7f0800f1
-int style Theme_AppCompat_NoActionBar 0x7f0800f2
-int style ThemeOverlay_AppCompat 0x7f0800f3
-int style ThemeOverlay_AppCompat_ActionBar 0x7f0800f4
-int style ThemeOverlay_AppCompat_Dark 0x7f0800f5
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800f6
-int style ThemeOverlay_AppCompat_Light 0x7f0800f7
-int style Widget_AppCompat_ActionBar 0x7f0800f8
-int style Widget_AppCompat_ActionBar_Solid 0x7f0800f9
-int style Widget_AppCompat_ActionBar_TabBar 0x7f0800fa
-int style Widget_AppCompat_ActionBar_TabText 0x7f0800fb
-int style Widget_AppCompat_ActionBar_TabView 0x7f0800fc
-int style Widget_AppCompat_ActionButton 0x7f0800fd
-int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800fe
-int style Widget_AppCompat_ActionButton_Overflow 0x7f0800ff
-int style Widget_AppCompat_ActionMode 0x7f080100
-int style Widget_AppCompat_ActivityChooserView 0x7f080101
-int style Widget_AppCompat_AutoCompleteTextView 0x7f080102
-int style Widget_AppCompat_Button 0x7f080103
-int style Widget_AppCompat_Button_Borderless 0x7f080104
-int style Widget_AppCompat_Button_Borderless_Colored 0x7f080105
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080106
-int style Widget_AppCompat_Button_Colored 0x7f080107
-int style Widget_AppCompat_Button_Small 0x7f080108
-int style Widget_AppCompat_ButtonBar 0x7f080109
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f08010a
-int style Widget_AppCompat_CompoundButton_CheckBox 0x7f08010b
-int style Widget_AppCompat_CompoundButton_RadioButton 0x7f08010c
-int style Widget_AppCompat_CompoundButton_Switch 0x7f08010d
-int style Widget_AppCompat_DrawerArrowToggle 0x7f08010e
-int style Widget_AppCompat_DropDownItem_Spinner 0x7f08010f
-int style Widget_AppCompat_EditText 0x7f080110
-int style Widget_AppCompat_ImageButton 0x7f080111
-int style Widget_AppCompat_Light_ActionBar 0x7f080112
-int style Widget_AppCompat_Light_ActionBar_Solid 0x7f080113
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f080114
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f080115
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080116
-int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080117
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080118
-int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080119
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f08011a
-int style Widget_AppCompat_Light_ActionButton 0x7f08011b
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f08011c
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f08011d
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f08011e
-int style Widget_AppCompat_Light_ActivityChooserView 0x7f08011f
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080120
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080121
-int style Widget_AppCompat_Light_ListPopupWindow 0x7f080122
-int style Widget_AppCompat_Light_ListView_DropDown 0x7f080123
-int style Widget_AppCompat_Light_PopupMenu 0x7f080124
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080125
-int style Widget_AppCompat_Light_SearchView 0x7f080126
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080127
-int style Widget_AppCompat_ListPopupWindow 0x7f080128
-int style Widget_AppCompat_ListView 0x7f080129
-int style Widget_AppCompat_ListView_DropDown 0x7f08012a
-int style Widget_AppCompat_ListView_Menu 0x7f08012b
-int style Widget_AppCompat_PopupMenu 0x7f08012c
-int style Widget_AppCompat_PopupMenu_Overflow 0x7f08012d
-int style Widget_AppCompat_PopupWindow 0x7f08012e
-int style Widget_AppCompat_ProgressBar 0x7f08012f
-int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080130
-int style Widget_AppCompat_RatingBar 0x7f080131
-int style Widget_AppCompat_RatingBar_Indicator 0x7f080132
-int style Widget_AppCompat_RatingBar_Small 0x7f080133
-int style Widget_AppCompat_SearchView 0x7f080134
-int style Widget_AppCompat_SearchView_ActionBar 0x7f080135
-int style Widget_AppCompat_SeekBar 0x7f080136
-int style Widget_AppCompat_Spinner 0x7f080137
-int style Widget_AppCompat_Spinner_DropDown 0x7f080138
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080139
-int style Widget_AppCompat_Spinner_Underlined 0x7f08013a
-int style Widget_AppCompat_TextView_SpinnerItem 0x7f08013b
-int style Widget_AppCompat_Toolbar 0x7f08013c
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f08013d
-int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010054 }
-int styleable ActionBar_background 10
-int styleable ActionBar_backgroundSplit 12
-int styleable ActionBar_backgroundStacked 11
-int styleable ActionBar_contentInsetEnd 21
-int styleable ActionBar_contentInsetLeft 22
-int styleable ActionBar_contentInsetRight 23
-int styleable ActionBar_contentInsetStart 20
-int styleable ActionBar_customNavigationLayout 13
-int styleable ActionBar_displayOptions 3
-int styleable ActionBar_divider 9
-int styleable ActionBar_elevation 24
-int styleable ActionBar_height 0
-int styleable ActionBar_hideOnContentScroll 19
-int styleable ActionBar_homeAsUpIndicator 26
-int styleable ActionBar_homeLayout 14
-int styleable ActionBar_icon 7
-int styleable ActionBar_indeterminateProgressStyle 16
-int styleable ActionBar_itemPadding 18
-int styleable ActionBar_logo 8
-int styleable ActionBar_navigationMode 2
-int styleable ActionBar_popupTheme 25
-int styleable ActionBar_progressBarPadding 17
-int styleable ActionBar_progressBarStyle 15
-int styleable ActionBar_subtitle 4
-int styleable ActionBar_subtitleTextStyle 6
-int styleable ActionBar_title 1
-int styleable ActionBar_titleTextStyle 5
-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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
-int styleable ActionMode_background 3
-int styleable ActionMode_backgroundSplit 4
-int styleable ActionMode_closeItemLayout 5
-int styleable ActionMode_height 0
-int styleable ActionMode_subtitleTextStyle 2
-int styleable ActionMode_titleTextStyle 1
-int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
-int styleable ActivityChooserView_initialActivityCount 0
-int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonPanelSideLayout 1
-int styleable AlertDialog_listItemLayout 5
-int styleable AlertDialog_listLayout 2
-int styleable AlertDialog_multiChoiceItemLayout 3
-int styleable AlertDialog_singleChoiceItemLayout 4
-int[] styleable AppCompatImageView { 0x01010119, 0x7f010024 }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int[] styleable AppCompatTextView { 0x01010034, 0x7f010025 }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_textAllCaps 1
-int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093 }
-int styleable AppCompatTheme_actionBarDivider 23
-int styleable AppCompatTheme_actionBarItemBackground 24
-int styleable AppCompatTheme_actionBarPopupTheme 17
-int styleable AppCompatTheme_actionBarSize 22
-int styleable AppCompatTheme_actionBarSplitStyle 19
-int styleable AppCompatTheme_actionBarStyle 18
-int styleable AppCompatTheme_actionBarTabBarStyle 13
-int styleable AppCompatTheme_actionBarTabStyle 12
-int styleable AppCompatTheme_actionBarTabTextStyle 14
-int styleable AppCompatTheme_actionBarTheme 20
-int styleable AppCompatTheme_actionBarWidgetTheme 21
-int styleable AppCompatTheme_actionButtonStyle 49
-int styleable AppCompatTheme_actionDropDownStyle 45
-int styleable AppCompatTheme_actionMenuTextAppearance 25
-int styleable AppCompatTheme_actionMenuTextColor 26
-int styleable AppCompatTheme_actionModeBackground 29
-int styleable AppCompatTheme_actionModeCloseButtonStyle 28
-int styleable AppCompatTheme_actionModeCloseDrawable 31
-int styleable AppCompatTheme_actionModeCopyDrawable 33
-int styleable AppCompatTheme_actionModeCutDrawable 32
-int styleable AppCompatTheme_actionModeFindDrawable 37
-int styleable AppCompatTheme_actionModePasteDrawable 34
-int styleable AppCompatTheme_actionModePopupWindowStyle 39
-int styleable AppCompatTheme_actionModeSelectAllDrawable 35
-int styleable AppCompatTheme_actionModeShareDrawable 36
-int styleable AppCompatTheme_actionModeSplitBackground 30
-int styleable AppCompatTheme_actionModeStyle 27
-int styleable AppCompatTheme_actionModeWebSearchDrawable 38
-int styleable AppCompatTheme_actionOverflowButtonStyle 15
-int styleable AppCompatTheme_actionOverflowMenuStyle 16
-int styleable AppCompatTheme_activityChooserViewStyle 57
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
-int styleable AppCompatTheme_alertDialogCenterButtons 93
-int styleable AppCompatTheme_alertDialogStyle 91
-int styleable AppCompatTheme_alertDialogTheme 94
-int styleable AppCompatTheme_android_windowAnimationStyle 1
-int styleable AppCompatTheme_android_windowIsFloating 0
-int styleable AppCompatTheme_autoCompleteTextViewStyle 99
-int styleable AppCompatTheme_borderlessButtonStyle 54
-int styleable AppCompatTheme_buttonBarButtonStyle 51
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
-int styleable AppCompatTheme_buttonBarStyle 50
-int styleable AppCompatTheme_buttonStyle 100
-int styleable AppCompatTheme_buttonStyleSmall 101
-int styleable AppCompatTheme_checkboxStyle 102
-int styleable AppCompatTheme_checkedTextViewStyle 103
-int styleable AppCompatTheme_colorAccent 84
-int styleable AppCompatTheme_colorButtonNormal 88
-int styleable AppCompatTheme_colorControlActivated 86
-int styleable AppCompatTheme_colorControlHighlight 87
-int styleable AppCompatTheme_colorControlNormal 85
-int styleable AppCompatTheme_colorPrimary 82
-int styleable AppCompatTheme_colorPrimaryDark 83
-int styleable AppCompatTheme_colorSwitchThumbNormal 89
-int styleable AppCompatTheme_controlBackground 90
-int styleable AppCompatTheme_dialogPreferredPadding 43
-int styleable AppCompatTheme_dialogTheme 42
-int styleable AppCompatTheme_dividerHorizontal 56
-int styleable AppCompatTheme_dividerVertical 55
-int styleable AppCompatTheme_dropDownListViewStyle 74
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
-int styleable AppCompatTheme_editTextBackground 63
-int styleable AppCompatTheme_editTextColor 62
-int styleable AppCompatTheme_editTextStyle 104
-int styleable AppCompatTheme_homeAsUpIndicator 48
-int styleable AppCompatTheme_imageButtonStyle 64
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
-int styleable AppCompatTheme_listDividerAlertDialog 44
-int styleable AppCompatTheme_listPopupWindowStyle 75
-int styleable AppCompatTheme_listPreferredItemHeight 69
-int styleable AppCompatTheme_listPreferredItemHeightLarge 71
-int styleable AppCompatTheme_listPreferredItemHeightSmall 70
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
-int styleable AppCompatTheme_listPreferredItemPaddingRight 73
-int styleable AppCompatTheme_panelBackground 78
-int styleable AppCompatTheme_panelMenuListTheme 80
-int styleable AppCompatTheme_panelMenuListWidth 79
-int styleable AppCompatTheme_popupMenuStyle 60
-int styleable AppCompatTheme_popupWindowStyle 61
-int styleable AppCompatTheme_radioButtonStyle 105
-int styleable AppCompatTheme_ratingBarStyle 106
-int styleable AppCompatTheme_ratingBarStyleIndicator 107
-int styleable AppCompatTheme_ratingBarStyleSmall 108
-int styleable AppCompatTheme_searchViewStyle 68
-int styleable AppCompatTheme_seekBarStyle 109
-int styleable AppCompatTheme_selectableItemBackground 52
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
-int styleable AppCompatTheme_spinnerDropDownItemStyle 47
-int styleable AppCompatTheme_spinnerStyle 110
-int styleable AppCompatTheme_switchStyle 111
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
-int styleable AppCompatTheme_textAppearanceListItem 76
-int styleable AppCompatTheme_textAppearanceListItemSmall 77
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
-int styleable AppCompatTheme_textColorAlertDialogListItem 95
-int styleable AppCompatTheme_textColorSearchUrl 67
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
-int styleable AppCompatTheme_toolbarStyle 58
-int styleable AppCompatTheme_windowActionBar 2
-int styleable AppCompatTheme_windowActionBarOverlay 4
-int styleable AppCompatTheme_windowActionModeOverlay 5
-int styleable AppCompatTheme_windowFixedHeightMajor 9
-int styleable AppCompatTheme_windowFixedHeightMinor 7
-int styleable AppCompatTheme_windowFixedWidthMajor 6
-int styleable AppCompatTheme_windowFixedWidthMinor 8
-int styleable AppCompatTheme_windowMinWidthMajor 10
-int styleable AppCompatTheme_windowMinWidthMinor 11
-int styleable AppCompatTheme_windowNoTitle 3
-int[] styleable ButtonBarLayout { 0x7f010094 }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable CompoundButton { 0x01010107, 0x7f010095, 0x7f010096 }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonTint 1
-int styleable CompoundButton_buttonTintMode 2
-int[] styleable DrawerArrowToggle { 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e }
-int styleable DrawerArrowToggle_arrowHeadLength 4
-int styleable DrawerArrowToggle_arrowShaftLength 5
-int styleable DrawerArrowToggle_barLength 6
-int styleable DrawerArrowToggle_color 0
-int styleable DrawerArrowToggle_drawableSize 2
-int styleable DrawerArrowToggle_gapBetweenBars 3
-int styleable DrawerArrowToggle_spinBars 1
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01009f, 0x7f0100a0, 0x7f0100a1 }
-int styleable LinearLayoutCompat_android_baselineAligned 2
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
-int styleable LinearLayoutCompat_android_gravity 0
-int styleable LinearLayoutCompat_android_orientation 1
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 8
-int styleable LinearLayoutCompat_measureWithLargestChild 6
-int styleable LinearLayoutCompat_showDividers 7
-int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_height 2
-int styleable LinearLayoutCompat_Layout_android_layout_weight 3
-int styleable LinearLayoutCompat_Layout_android_layout_width 1
-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_checkableBehavior 5
-int styleable MenuGroup_android_enabled 0
-int styleable MenuGroup_android_id 1
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_visible 2
-int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5 }
-int styleable MenuItem_actionLayout 14
-int styleable MenuItem_actionProviderClass 16
-int styleable MenuItem_actionViewClass 15
-int styleable MenuItem_android_alphabeticShortcut 9
-int styleable MenuItem_android_checkable 11
-int styleable MenuItem_android_checked 3
-int styleable MenuItem_android_enabled 1
-int styleable MenuItem_android_icon 0
-int styleable MenuItem_android_id 2
-int styleable MenuItem_android_menuCategory 5
-int styleable MenuItem_android_numericShortcut 10
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_android_orderInCategory 6
-int styleable MenuItem_android_title 7
-int styleable MenuItem_android_titleCondensed 8
-int styleable MenuItem_android_visible 4
-int styleable MenuItem_showAsAction 13
-int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100a6 }
-int styleable MenuView_android_headerBackground 4
-int styleable MenuView_android_horizontalDivider 2
-int styleable MenuView_android_itemBackground 5
-int styleable MenuView_android_itemIconDisabledAlpha 6
-int styleable MenuView_android_itemTextAppearance 1
-int styleable MenuView_android_verticalDivider 3
-int styleable MenuView_android_windowAnimationStyle 0
-int styleable MenuView_preserveIconSpacing 7
-int[] styleable PopupWindow { 0x01010176, 0x7f0100a7 }
-int styleable PopupWindow_android_popupBackground 0
-int styleable PopupWindow_overlapAnchor 1
-int[] styleable PopupWindowBackgroundState { 0x7f0100a8 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_imeOptions 3
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_maxWidth 1
-int styleable SearchView_closeIcon 8
-int styleable SearchView_commitIcon 13
-int styleable SearchView_defaultQueryHint 7
-int styleable SearchView_goIcon 9
-int styleable SearchView_iconifiedByDefault 5
-int styleable SearchView_layout 4
-int styleable SearchView_queryBackground 15
-int styleable SearchView_queryHint 6
-int styleable SearchView_searchHintIcon 11
-int styleable SearchView_searchIcon 10
-int styleable SearchView_submitBackground 16
-int styleable SearchView_suggestionRowLayout 14
-int styleable SearchView_voiceIcon 12
-int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
-int styleable Spinner_android_dropDownWidth 3
-int styleable Spinner_android_entries 0
-int styleable Spinner_android_popupBackground 1
-int styleable Spinner_android_prompt 2
-int styleable Spinner_popupTheme 4
-int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc }
-int styleable SwitchCompat_android_textOff 1
-int styleable SwitchCompat_android_textOn 0
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 9
-int styleable SwitchCompat_splitTrack 8
-int styleable SwitchCompat_switchMinWidth 6
-int styleable SwitchCompat_switchPadding 7
-int styleable SwitchCompat_switchTextAppearance 5
-int styleable SwitchCompat_thumbTextPadding 4
-int styleable SwitchCompat_track 3
-int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010025 }
-int styleable TextAppearance_android_shadowColor 4
-int styleable TextAppearance_android_shadowDx 5
-int styleable TextAppearance_android_shadowDy 6
-int styleable TextAppearance_android_shadowRadius 7
-int styleable TextAppearance_android_textColor 3
-int styleable TextAppearance_android_textSize 0
-int styleable TextAppearance_android_textStyle 2
-int styleable TextAppearance_android_typeface 1
-int styleable TextAppearance_textAllCaps 8
-int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_collapseContentDescription 19
-int styleable Toolbar_collapseIcon 18
-int styleable Toolbar_contentInsetEnd 6
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 5
-int styleable Toolbar_logo 4
-int styleable Toolbar_logoDescription 22
-int styleable Toolbar_maxButtonHeight 17
-int styleable Toolbar_navigationContentDescription 21
-int styleable Toolbar_navigationIcon 20
-int styleable Toolbar_popupTheme 9
-int styleable Toolbar_subtitle 3
-int styleable Toolbar_subtitleTextAppearance 11
-int styleable Toolbar_subtitleTextColor 24
-int styleable Toolbar_title 2
-int styleable Toolbar_titleMarginBottom 16
-int styleable Toolbar_titleMarginEnd 14
-int styleable Toolbar_titleMarginStart 13
-int styleable Toolbar_titleMarginTop 15
-int styleable Toolbar_titleMargins 12
-int styleable Toolbar_titleTextAppearance 10
-int styleable Toolbar_titleTextColor 23
-int[] styleable View { 0x01010000, 0x010100da, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce }
-int styleable View_android_focusable 1
-int styleable View_android_theme 0
-int styleable View_paddingEnd 3
-int styleable View_paddingStart 2
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100cf, 0x7f0100d0 }
-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_inflatedId 2
-int styleable ViewStubCompat_android_layout 1
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/aapt/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/aapt/AndroidManifest.xml
deleted file mode 100644
index e15f76a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip
deleted file mode 100644
index 1e5483a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/jars/classes.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/jars/classes.jar
deleted file mode 100644
index e918f70..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/jars/classes.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/public.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/public.txt
deleted file mode 100644
index 7a8152f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/public.txt
+++ /dev/null
@@ -1,321 +0,0 @@
-style TextAppearance.AppCompat
-style TextAppearance.AppCompat.Body1
-style TextAppearance.AppCompat.Body2
-style TextAppearance.AppCompat.Button
-style TextAppearance.AppCompat.Caption
-style TextAppearance.AppCompat.Display1
-style TextAppearance.AppCompat.Display2
-style TextAppearance.AppCompat.Display3
-style TextAppearance.AppCompat.Display4
-style TextAppearance.AppCompat.Headline
-style TextAppearance.AppCompat.Inverse
-style TextAppearance.AppCompat.Large
-style TextAppearance.AppCompat.Large.Inverse
-style TextAppearance.AppCompat.Light.SearchResult.Subtitle
-style TextAppearance.AppCompat.Light.SearchResult.Title
-style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large
-style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small
-style TextAppearance.AppCompat.Medium
-style TextAppearance.AppCompat.Medium.Inverse
-style TextAppearance.AppCompat.Menu
-style TextAppearance.AppCompat.SearchResult.Subtitle
-style TextAppearance.AppCompat.SearchResult.Title
-style TextAppearance.AppCompat.Small
-style TextAppearance.AppCompat.Small.Inverse
-style TextAppearance.AppCompat.Subhead
-style TextAppearance.AppCompat.Subhead.Inverse
-style TextAppearance.AppCompat.Title
-style TextAppearance.AppCompat.Title.Inverse
-style TextAppearance.AppCompat.Widget.ActionBar.Menu
-style TextAppearance.AppCompat.Widget.ActionBar.Subtitle
-style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse
-style TextAppearance.AppCompat.Widget.ActionBar.Title
-style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse
-style TextAppearance.AppCompat.Widget.ActionMode.Subtitle
-style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse
-style TextAppearance.AppCompat.Widget.ActionMode.Title
-style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse
-style TextAppearance.AppCompat.Widget.Button
-style TextAppearance.AppCompat.Widget.Button.Inverse
-style TextAppearance.AppCompat.Widget.DropDownItem
-style TextAppearance.AppCompat.Widget.PopupMenu.Large
-style TextAppearance.AppCompat.Widget.PopupMenu.Small
-style TextAppearance.AppCompat.Widget.Switch
-style TextAppearance.AppCompat.Widget.TextView.SpinnerItem
-style Theme.AppCompat
-style Theme.AppCompat.DayNight
-style Theme.AppCompat.DayNight.DarkActionBar
-style Theme.AppCompat.DayNight.Dialog
-style Theme.AppCompat.DayNight.Dialog.Alert
-style Theme.AppCompat.DayNight.Dialog.MinWidth
-style Theme.AppCompat.DayNight.DialogWhenLarge
-style Theme.AppCompat.DayNight.NoActionBar
-style Theme.AppCompat.Dialog
-style Theme.AppCompat.Dialog.Alert
-style Theme.AppCompat.Dialog.MinWidth
-style Theme.AppCompat.DialogWhenLarge
-style Theme.AppCompat.Light
-style Theme.AppCompat.Light.DarkActionBar
-style Theme.AppCompat.Light.Dialog
-style Theme.AppCompat.Light.Dialog.Alert
-style Theme.AppCompat.Light.Dialog.MinWidth
-style Theme.AppCompat.Light.DialogWhenLarge
-style Theme.AppCompat.Light.NoActionBar
-style Theme.AppCompat.NoActionBar
-style ThemeOverlay.AppCompat
-style ThemeOverlay.AppCompat.ActionBar
-style ThemeOverlay.AppCompat.Dark
-style ThemeOverlay.AppCompat.Dark.ActionBar
-style ThemeOverlay.AppCompat.Light
-style Widget.AppCompat.ActionBar
-style Widget.AppCompat.ActionBar.Solid
-style Widget.AppCompat.ActionBar.TabBar
-style Widget.AppCompat.ActionBar.TabText
-style Widget.AppCompat.ActionBar.TabView
-style Widget.AppCompat.ActionButton
-style Widget.AppCompat.ActionButton.CloseMode
-style Widget.AppCompat.ActionButton.Overflow
-style Widget.AppCompat.ActionMode
-style Widget.AppCompat.AutoCompleteTextView
-style Widget.AppCompat.Button
-style Widget.AppCompat.Button.Borderless
-style Widget.AppCompat.Button.Borderless.Colored
-style Widget.AppCompat.Button.ButtonBar.AlertDialog
-style Widget.AppCompat.Button.Colored
-style Widget.AppCompat.Button.Small
-style Widget.AppCompat.ButtonBar
-style Widget.AppCompat.ButtonBar.AlertDialog
-style Widget.AppCompat.CompoundButton.CheckBox
-style Widget.AppCompat.CompoundButton.RadioButton
-style Widget.AppCompat.CompoundButton.Switch
-style Widget.AppCompat.DrawerArrowToggle
-style Widget.AppCompat.DropDownItem.Spinner
-style Widget.AppCompat.EditText
-style Widget.AppCompat.ImageButton
-style Widget.AppCompat.Light.ActionBar
-style Widget.AppCompat.Light.ActionBar.Solid
-style Widget.AppCompat.Light.ActionBar.Solid.Inverse
-style Widget.AppCompat.Light.ActionBar.TabBar
-style Widget.AppCompat.Light.ActionBar.TabBar.Inverse
-style Widget.AppCompat.Light.ActionBar.TabText
-style Widget.AppCompat.Light.ActionBar.TabText.Inverse
-style Widget.AppCompat.Light.ActionBar.TabView
-style Widget.AppCompat.Light.ActionBar.TabView.Inverse
-style Widget.AppCompat.Light.ActionButton
-style Widget.AppCompat.Light.ActionButton.CloseMode
-style Widget.AppCompat.Light.ActionButton.Overflow
-style Widget.AppCompat.Light.ActionMode.Inverse
-style Widget.AppCompat.Light.AutoCompleteTextView
-style Widget.AppCompat.Light.DropDownItem.Spinner
-style Widget.AppCompat.Light.ListPopupWindow
-style Widget.AppCompat.Light.ListView.DropDown
-style Widget.AppCompat.Light.PopupMenu
-style Widget.AppCompat.Light.PopupMenu.Overflow
-style Widget.AppCompat.Light.SearchView
-style Widget.AppCompat.Light.Spinner.DropDown.ActionBar
-style Widget.AppCompat.ListPopupWindow
-style Widget.AppCompat.ListView
-style Widget.AppCompat.ListView.DropDown
-style Widget.AppCompat.ListView.Menu
-style Widget.AppCompat.PopupMenu
-style Widget.AppCompat.PopupMenu.Overflow
-style Widget.AppCompat.PopupWindow
-style Widget.AppCompat.ProgressBar
-style Widget.AppCompat.ProgressBar.Horizontal
-style Widget.AppCompat.RatingBar
-style Widget.AppCompat.RatingBar.Indicator
-style Widget.AppCompat.RatingBar.Small
-style Widget.AppCompat.SearchView
-style Widget.AppCompat.SearchView.ActionBar
-style Widget.AppCompat.SeekBar
-style Widget.AppCompat.Spinner
-style Widget.AppCompat.Spinner.DropDown
-style Widget.AppCompat.Spinner.DropDown.ActionBar
-style Widget.AppCompat.Spinner.Underlined
-style Widget.AppCompat.TextView.SpinnerItem
-style Widget.AppCompat.Toolbar
-style Widget.AppCompat.Toolbar.Button.Navigation
-attr actionBarDivider
-attr actionBarItemBackground
-attr actionBarPopupTheme
-attr actionBarSize
-attr actionBarSplitStyle
-attr actionBarStyle
-attr actionBarTabBarStyle
-attr actionBarTabStyle
-attr actionBarTabTextStyle
-attr actionBarTheme
-attr actionBarWidgetTheme
-attr actionButtonStyle
-attr actionDropDownStyle
-attr actionLayout
-attr actionMenuTextAppearance
-attr actionMenuTextColor
-attr actionModeBackground
-attr actionModeCloseButtonStyle
-attr actionModeCloseDrawable
-attr actionModeCopyDrawable
-attr actionModeCutDrawable
-attr actionModeFindDrawable
-attr actionModePasteDrawable
-attr actionModeSelectAllDrawable
-attr actionModeShareDrawable
-attr actionModeSplitBackground
-attr actionModeStyle
-attr actionModeWebSearchDrawable
-attr actionOverflowButtonStyle
-attr actionOverflowMenuStyle
-attr actionProviderClass
-attr actionViewClass
-attr alertDialogStyle
-attr alertDialogTheme
-attr arrowHeadLength
-attr arrowShaftLength
-attr autoCompleteTextViewStyle
-attr background
-attr backgroundSplit
-attr backgroundStacked
-attr backgroundTint
-attr backgroundTintMode
-attr barLength
-attr borderlessButtonStyle
-attr buttonBarButtonStyle
-attr buttonBarNegativeButtonStyle
-attr buttonBarNeutralButtonStyle
-attr buttonBarPositiveButtonStyle
-attr buttonBarStyle
-attr buttonStyle
-attr buttonStyleSmall
-attr buttonTint
-attr buttonTintMode
-attr checkboxStyle
-attr checkedTextViewStyle
-attr closeIcon
-attr closeItemLayout
-attr collapseContentDescription
-attr collapseIcon
-attr color
-attr colorAccent
-attr colorButtonNormal
-attr colorControlActivated
-attr colorControlHighlight
-attr colorControlNormal
-attr colorPrimary
-attr colorPrimaryDark
-attr colorSwitchThumbNormal
-attr commitIcon
-attr contentInsetEnd
-attr contentInsetLeft
-attr contentInsetRight
-attr contentInsetStart
-attr customNavigationLayout
-attr dialogPreferredPadding
-attr dialogTheme
-attr displayOptions
-attr divider
-attr dividerHorizontal
-attr dividerPadding
-attr dividerVertical
-attr drawableSize
-attr drawerArrowStyle
-attr dropDownListViewStyle
-attr editTextBackground
-attr editTextColor
-attr editTextStyle
-attr elevation
-attr gapBetweenBars
-attr goIcon
-attr height
-attr hideOnContentScroll
-attr homeAsUpIndicator
-attr homeLayout
-attr icon
-attr iconifiedByDefault
-attr imageButtonStyle
-attr indeterminateProgressStyle
-attr isLightTheme
-attr itemPadding
-attr layout
-attr listChoiceBackgroundIndicator
-attr listDividerAlertDialog
-attr listPopupWindowStyle
-attr listPreferredItemHeight
-attr listPreferredItemHeightLarge
-attr listPreferredItemHeightSmall
-attr listPreferredItemPaddingLeft
-attr listPreferredItemPaddingRight
-attr logo
-attr logoDescription
-attr measureWithLargestChild
-attr navigationContentDescription
-attr navigationIcon
-attr navigationMode
-attr overlapAnchor
-attr paddingEnd
-attr paddingStart
-attr panelBackground
-attr popupMenuStyle
-attr popupTheme
-attr popupWindowStyle
-attr preserveIconSpacing
-attr progressBarPadding
-attr progressBarStyle
-attr queryBackground
-attr queryHint
-attr radioButtonStyle
-attr ratingBarStyle
-attr ratingBarStyleIndicator
-attr ratingBarStyleSmall
-attr searchHintIcon
-attr searchIcon
-attr searchViewStyle
-attr seekBarStyle
-attr selectableItemBackground
-attr selectableItemBackgroundBorderless
-attr showAsAction
-attr showDividers
-attr showText
-attr spinBars
-attr spinnerDropDownItemStyle
-attr spinnerStyle
-attr splitTrack
-attr srcCompat
-attr submitBackground
-attr subtitle
-attr subtitleTextAppearance
-attr subtitleTextColor
-attr subtitleTextStyle
-attr suggestionRowLayout
-layout support_simple_spinner_dropdown_item
-attr switchMinWidth
-attr switchPadding
-attr switchStyle
-attr switchTextAppearance
-attr textAllCaps
-attr textAppearanceLargePopupMenu
-attr textAppearanceListItem
-attr textAppearanceListItemSmall
-attr textAppearanceSearchResultSubtitle
-attr textAppearanceSearchResultTitle
-attr textAppearanceSmallPopupMenu
-attr textColorAlertDialogListItem
-attr theme
-attr thickness
-attr thumbTextPadding
-attr title
-attr titleMarginBottom
-attr titleMarginEnd
-attr titleMarginStart
-attr titleMarginTop
-attr titleMargins
-attr titleTextAppearance
-attr titleTextColor
-attr titleTextStyle
-attr toolbarNavigationButtonStyle
-attr toolbarStyle
-attr track
-attr voiceIcon
-attr windowActionBar
-attr windowActionBarOverlay
-attr windowActionModeOverlay
-attr windowNoTitle
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml
deleted file mode 100644
index da7ee29..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_in.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml
deleted file mode 100644
index c81b39a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_fade_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml
deleted file mode 100644
index 79d02d4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_grow_fade_in_from_bottom.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml
deleted file mode 100644
index 91664da..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_enter.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml
deleted file mode 100644
index db7e807..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_popup_exit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml
deleted file mode 100644
index 9a23cd2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_shrink_fade_out_from_bottom.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml
deleted file mode 100644
index 1afa8fe..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml
deleted file mode 100644
index ab824f2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_in_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml
deleted file mode 100644
index b309fe8..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml
deleted file mode 100644
index e84d1c7..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/anim/abc_slide_out_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index e016076..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index 290faf1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml
deleted file mode 100644
index 8d53611..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color-v23/abc_color_highlight_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index 9a7af53..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index aa53f35..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml
deleted file mode 100644
index 724c255..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml
deleted file mode 100644
index 7395e68..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_disable_only_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml
deleted file mode 100644
index 7d66d02..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml
deleted file mode 100644
index 105b643..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_primary_text_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml
deleted file mode 100644
index 0631d5d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_search_url_text.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml
deleted file mode 100644
index 6399b1d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml
deleted file mode 100644
index 87c015a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/abc_secondary_text_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml
deleted file mode 100644
index 6153382..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml
deleted file mode 100644
index 94d7114..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/color/switch_thumb_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index 4d9f861..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 9911008..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 69ff9dd..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9218981..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a588576..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 1b12adf..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 30c8c99..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 4657a25..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 3fd617b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 2264398..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 46ccacc..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index ce64334..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 65ccd8f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index f39c153..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 706fc1f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index e78bcaf..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index 00e189b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 8610c50..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index e631df7..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index cd1f57c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index cc6d5da..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index a728afe..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 64b2aa7..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index cf270fe..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 49ad6cd..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index a6dbc2a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 1e571f5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index c09ec90..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 62fbd2c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 2f6ef91..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 863ce95..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index b6d4677..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index e01c739..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index d077a25..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 9d8451a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 208def6..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index c9c203e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 253e906..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index ffb0096..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index e54950e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 0da5b1d..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 54df961..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 4b0b10a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 5b13bc1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 5440b1a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index a74ab26..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 6282df4..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 57211b5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index a262b0c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index d8eaf07..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index ddbec8b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index b872414..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 254f806..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index efe4446..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index c888ee0..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index ffa1654..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 88e34c4..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 87bf8d3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 09dadcc..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 33b4f0f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index fb54215..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 3cdb6cf..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index a58daf6..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index a91425a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index fb91811..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 90fe333..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 6ccac60..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index fa0ed8f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 7a9fcbc..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 3b052e5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 96a8693..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 6e18d40..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 27a75a7..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 14e9e09..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index d0a41a5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index bebb1e2..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 038e000..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 90fbc56..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index dde307e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 6086f9c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index 0084c12..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 559b835..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 1c0a1e9..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index 234a958..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 1492ab6..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 7c011af..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 36f664c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index faefc59..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 3f5d25e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 2ddcdd9..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 077f9b0..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index ac6ad11..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index a216da1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 1e571f5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index addb54a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 5fcd5b2..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 251b989..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 01efec0..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index f1d1b61..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 10851f6..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 3924664..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 5f55cd5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index ddd6d0a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 9280f82..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index f60817c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 8878129..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 869c8b0..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index ed75cb8..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index ab8460f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 12b0a79..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 3ffa251..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 0eb61f1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 0c766f3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 4f66d7a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml
deleted file mode 100644
index 595c56c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_action_bar_item_background_material.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml
deleted file mode 100644
index 10251aa..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml
deleted file mode 100644
index d98b008..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v21/abc_edit_text_material.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml
deleted file mode 100644
index 0b54039..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-v23/abc_control_background_material.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index 6284eaa..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 4902520..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 59a683a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 03bf49c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 342323b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 05e6afe..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 7116604..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 4feb8a3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 2bf9208..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 600178a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 154babd..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index 6d90d0c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index ca303fd..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index 19e000a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 6448549..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index cd38901..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index e76c83e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 9aabc43..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 6a7161f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 6be7e09..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index 4510e52..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 35fe965..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 45887c1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index ea6033a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 2f4818b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index 7329c15..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 1e571f5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 67c25ae..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 17c34a1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 988548a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 15fcf6a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index 65275b3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 5b58e76..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 99cf6de..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index b5dd854..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 1627f21..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 0486af1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 0b15d96..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index fb4e42a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 44b9a14..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index bcf6b7f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 7c56175..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 2242d2f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 8ff3a83..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index e7e693a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 819171a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 4def8c8..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index 4eae28f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index accf80e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 8c82ec3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 8fc0a9b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 3038d70..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 37b8583..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 4a3bd14..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index c079867..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 3b9dc7c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index f6d2f32..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index f99802f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index b85e87f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 7d9dfa4..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index d041623..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 90d6ba3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 63e541f..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index c382aa6..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index f71485c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 162ab98..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index d95a377..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index 0ada3a3..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index e5509b0..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 72685ab..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 8e985b4..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 19bbc12..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index dacf407..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 987b2bc..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 8b050e8..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 00e370a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 719c7b5..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 75bd580..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index 4f3b147..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 224a081..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index b5ceeac..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 4727a7d..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index eb6e91b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index dd0031c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 9955cdf..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 3d9b961..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 56a69df..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 2493858..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index d2fc99a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index eeb74c8..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 4d3d3a4..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index c5acb84..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 30328ae..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index bc21142..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index d44bbae..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 4e18de2..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 5fa3266..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index c11cb2e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 8043c0b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 355d5b7..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 41d6d6b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index da2b577..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 715db8a..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 397fd91..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index bb074a6..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 1891b3d..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 591a1c9..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index ba16aac..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index 5430b2c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index cc81097..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index dc312c1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 1c7f66e..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 82e7293..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index d191642..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 7dfaf7c..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index fe8f2e4..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 761e8de..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 5651d24..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 929be19..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml
deleted file mode 100644
index f389460..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_borderless_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml
deleted file mode 100644
index f6e938f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_check_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml
deleted file mode 100644
index ec93b8b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml
deleted file mode 100644
index c50d4b1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_default_mtrl_shape.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml
deleted file mode 100644
index 6e9f9cf..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_btn_radio_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml
deleted file mode 100644
index 9faf60a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_internal_bg.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml
deleted file mode 100644
index f20add7..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_cab_background_top_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml
deleted file mode 100644
index 41c4a6f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_dark.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml
deleted file mode 100644
index 248b13a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_dialog_material_background_light.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml
deleted file mode 100644
index 46c4e91..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_edit_text_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml
deleted file mode 100644
index 72162c2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_dark.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml
deleted file mode 100644
index 1c180b2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_item_background_holo_light.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
deleted file mode 100644
index 0add58c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
deleted file mode 100644
index 0c1d3e6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml
deleted file mode 100644
index 1fb5fc4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_dark.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml
deleted file mode 100644
index 8d24047..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_list_selector_holo_light.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml
deleted file mode 100644
index 535e2da..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_full_material.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml
deleted file mode 100644
index 207991c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_indicator_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
- -
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml
deleted file mode 100644
index 6daff8b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_ratingbar_small_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
- -
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml
deleted file mode 100644
index 7fea83b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_thumb_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml
deleted file mode 100644
index e68ac03..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_seekbar_track_material.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
- -
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml
deleted file mode 100644
index d0f46a8..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_spinner_textfield_background_material.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml
deleted file mode 100644
index ee96ec2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_switch_thumb_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml
deleted file mode 100644
index 1a8de1b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_tab_indicator_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml
deleted file mode 100644
index 885670c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_text_cursor_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml
deleted file mode 100644
index 0887396..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/drawable/abc_textfield_search_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml
deleted file mode 100644
index 194afb7..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_title_item.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml
deleted file mode 100644
index f46550a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_up_container.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml
deleted file mode 100644
index 5c105ab..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_bar_view_list_nav_layout.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml
deleted file mode 100644
index 283358a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_item_layout.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml
deleted file mode 100644
index 4918d2f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_menu_layout.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml
deleted file mode 100644
index dc1f1ba..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_bar.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml
deleted file mode 100644
index 2944d98..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_action_mode_close_item_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml
deleted file mode 100644
index 0100c23..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml
deleted file mode 100644
index 887427d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_activity_chooser_view_list_item.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml
deleted file mode 100644
index d32ad10..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_button_bar_material.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml
deleted file mode 100644
index 3237533..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_alert_dialog_material.xml
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml
deleted file mode 100644
index 1ea20c5..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_dialog_title_material.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml
deleted file mode 100644
index 560ada6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_expanded_menu_layout.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml
deleted file mode 100644
index d9c3f06..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_checkbox.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml
deleted file mode 100644
index acd005a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_icon.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml
deleted file mode 100644
index c85469d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_layout.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml
deleted file mode 100644
index 0ca8d7a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_list_menu_item_radio.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml
deleted file mode 100644
index 47125fe..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_popup_menu_item_layout.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml
deleted file mode 100644
index 1c30338..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_content_include.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml
deleted file mode 100644
index 2783187..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml
deleted file mode 100644
index c02c2aa..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_simple_overlay_action_mode.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml
deleted file mode 100644
index 96412c1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_screen_toolbar.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml
deleted file mode 100644
index b81d5d8..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_dropdown_item_icons_2line.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml
deleted file mode 100644
index a7446e3..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_search_view.xml
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml
deleted file mode 100644
index 12bcbf1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/abc_select_dialog_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml
deleted file mode 100644
index d546792..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_action.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml
deleted file mode 100644
index e9b5fb0..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_media_cancel_action.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml
deleted file mode 100644
index 2e40b69..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml
deleted file mode 100644
index cf64061..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_big_media_narrow.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml
deleted file mode 100644
index 42ba776..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_lines.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml
deleted file mode 100644
index 90daa88..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_media.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml
deleted file mode 100644
index 6f5f3ac..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_chronometer.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml
deleted file mode 100644
index 72d216e..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/notification_template_part_time.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml
deleted file mode 100644
index 677b178..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_item_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml
deleted file mode 100644
index 60f3576..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_multichoice_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml
deleted file mode 100644
index 4d10fc7..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/select_dialog_singlechoice_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml
deleted file mode 100644
index d2f177a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/layout/support_simple_spinner_dropdown_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml
deleted file mode 100644
index 8143ae0..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml
deleted file mode 100644
index b81f93f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ወደ መáŠáˆ» á‹á‹³áˆµáˆ±"
- "%1$sᣠ%2$s"
- "%1$sᣠ%2$sᣠ%3$s"
- "ወደ ላዠá‹á‹³áˆµáˆ±"
- "ተጨማሪ አማራጮች"
- "ተከናá‹áŠ—áˆ"
- "áˆáˆ‰áŠ•áˆ á‹áˆ˜áˆáŠ¨á‰±"
- "መተáŒá‰ ሪያ á‹áˆáˆ¨áŒ¡"
- "ጠáቷáˆ"
- "በáˆá‰·áˆ"
- "áˆáˆáŒâ€¦"
- "መጠá‹á‰… አጽዳ"
- "የáለጋ ጥያቄ"
- "áለጋ"
- "መጠá‹á‰… ያስረáŠá‰¡"
- "የድáˆá… áለጋ"
- "ከሚከተለዠጋሠያጋሩ"
- "ከ%s ጋሠያጋሩ"
- "ሰብስብ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml
deleted file mode 100644
index ef26d85..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "التنقل إلى الشاشة الرئيسية"
- "%1$s، %2$s"
- "%1$s، %2$s، %3$s"
- "التنقل إلى أعلى"
- "خيارات إضاÙية"
- "تم"
- "عرض الكل"
- "اختيار تطبيق"
- "إيقاÙ"
- "تشغيل"
- "بØث…"
- "Ù…ØÙˆ طلب البØØ«"
- "طلب البØØ«"
- "بØØ«"
- "إرسال طلب البØØ«"
- "البØØ« الصوتي"
- "مشاركة مع"
- "â€Ù…شاركة مع %s"
- "تصغير"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml
deleted file mode 100644
index 15769e1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- "EvÉ™ get"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Yuxarı get"
- "Daha çox seçim"
- "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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml
deleted file mode 100644
index 05f19e4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Придвижване към „Ðачало“"
- "„%1$s“ – %2$s"
- "„%1$s“, „%2$s“ – %3$s"
- "Придвижване нагоре"
- "Още опции"
- "Готово"
- "Вижте вÑички"
- "Изберете приложение"
- "ИЗКЛ."
- "ВКЛ."
- "ТърÑете…"
- "ИзчиÑтване на заÑвката"
- "ЗаÑвка за Ñ‚ÑŠÑ€Ñене"
- "ТърÑене"
- "Изпращане на заÑвката"
- "ГлаÑово Ñ‚ÑŠÑ€Ñене"
- "СподелÑне ÑÑŠÑ:"
- "СподелÑне ÑÑŠÑ: %s"
- "Свиване"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml
deleted file mode 100644
index db63cf3..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "হোম ঠনেà¦à¦¿à¦—েট করà§à¦¨"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "উপরের দিকে নেà¦à¦¿à¦—েট করà§à¦¨"
- "আরো বিকলà§à¦ª"
- "সমà§à¦ªà¦¨à§à¦¨ হয়েছে"
- "সবগà§à¦²à§‹ দেখà§à¦¨"
- "à¦à¦•à¦Ÿà¦¿ অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•à§‡à¦¶à¦¾à¦¨ চয়ন করà§à¦¨"
- "বনà§à¦§"
- "চালà§"
- "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨..."
- "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ সাফ করà§à¦¨"
- "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨"
- "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨"
- "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ জমা দিন"
- "à¦à¦¯à¦¼à§‡à¦¸ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨"
- "à¦à¦° সাথে à¦à¦¾à¦— করà§à¦¨"
- "%s à¦à¦° সাথে à¦à¦¾à¦— করà§à¦¨"
- "সঙà§à¦•à§à¦šà¦¿à¦¤ করà§à¦¨"
- "৯৯৯+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml
deleted file mode 100644
index 0aa3366..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml
+++ /dev/null
@@ -1,23 +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"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml
deleted file mode 100644
index 9eb7ef4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml
deleted file mode 100644
index e44f583..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml
deleted file mode 100644
index f834cec..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml
deleted file mode 100644
index 403b9c4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Πλοήγηση στην αÏχική σελίδα"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Πλοήγηση Ï€Ïος τα επάνω"
- "ΠεÏισσότεÏες επιλογÎÏ‚"
- "ΤÎλος"
- "Î Ïοβολή όλων"
- "ΕπιλÎξτε κάποια εφαÏμογή"
- "ΑΠΕÎΕΡΓΟΠΟΙΗΣΗ"
- "ΕÎΕΡΓΟΠΟΙΗΣΗ"
- "Αναζήτηση…"
- "ΔιαγÏαφή εÏωτήματος"
- "ΕÏώτημα αναζήτησης"
- "Αναζήτηση"
- "Υποβολή εÏωτήματος"
- "Φωνητική αναζήτηση"
- "Κοινή χÏήση με"
- "Κοινή χÏήση με %s"
- "ΣÏμπτυξη"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml
deleted file mode 100644
index 6a703b6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml
deleted file mode 100644
index 6a703b6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml
deleted file mode 100644
index 6a703b6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml
deleted file mode 100644
index 843ce16..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml
+++ /dev/null
@@ -1,23 +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."
- "DESACTIVAR"
- "ACTIVAR"
- "Buscar…"
- "Eliminar la consulta"
- "Consulta de búsqueda"
- "Búsqueda"
- "Enviar consulta"
- "Búsqueda por voz"
- "Compartir con"
- "Compartir con %s"
- "Contraer"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml
deleted file mode 100644
index fd8b2ea..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml
+++ /dev/null
@@ -1,23 +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"
- "NO"
- "SÃ"
- "Buscar…"
- "Borrar consulta"
- "Consulta"
- "Buscar"
- "Enviar consulta"
- "Búsqueda por voz"
- "Compartir con"
- "Compartir con %s"
- "Contraer"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml
deleted file mode 100644
index fa9bc45..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml
deleted file mode 100644
index 66d5f97..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml
deleted file mode 100644
index 87ade66..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "پیمایش به صÙØÙ‡ اصلی"
- "â€%1$sâ€ØŒ %2$s"
- "â€%1$sâ€ØŒ %2$sâ€ØŒ %3$s"
- "پیمایش به بالا"
- "گزینه‌های بیشتر"
- "تمام"
- "مشاهده همه"
- "انتخاب برنامه"
- "خاموش"
- "روشن"
- "جستجو…"
- "پاک کردن عبارت جستجو"
- "عبارت جستجو"
- "جستجو"
- "ارسال عبارت جستجو"
- "جستجوی Ø´Ùاهی"
- "اشتراک‌گذاری با"
- "â€Ø§Ø´ØªØ±Ø§Ú©â€ŒÚ¯Ø°Ø§Ø±ÛŒ با %s"
- "کوچک کردن"
- "Û¹Û¹Û¹+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml
deleted file mode 100644
index 4c43f00..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml
deleted file mode 100644
index a47b18e..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml
+++ /dev/null
@@ -1,23 +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"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml
deleted file mode 100644
index 1938434..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml
+++ /dev/null
@@ -1,23 +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"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml
deleted file mode 100644
index 1ca55a9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml
+++ /dev/null
@@ -1,23 +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 de voz"
- "Compartir con"
- "Compartir con %s"
- "Contraer"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml
deleted file mode 100644
index ed6f52c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "હોમ પર નેવિગેટ કરો"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ઉપર નેવિગેટ કરો"
- "વધૠવિકલà«àªªà«‹"
- "થઈ ગયà«àª‚"
- "બધà«àª‚ જà«àª“"
- "àªàª• àªàªªà«àª²àª¿àª•à«‡àª¶àª¨ પસંદ કરો"
- "બંધ"
- "ચાલà«"
- "શોધો…"
- "કà«àªµà«‡àª°à«€ સાફ કરો"
- "શોધ કà«àªµà«‡àª°à«€"
- "શોધો"
- "કà«àªµà«‡àª°à«€ સબમિટ કરો"
- "વૉઇસ શોધ"
- "આની સાથે શેર કરો"
- "%s સાથે શેર કરો"
- "સંકà«àªšàª¿àª¤ કરો"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml
deleted file mode 100644
index 2a6b31c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- true
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml
deleted file mode 100644
index e38bb90..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 54dip
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml
deleted file mode 100644
index d5a138e..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml
deleted file mode 100644
index 630e22c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "मà¥à¤–à¥à¤¯à¤ªà¥ƒà¤·à¥à¤ पर नेविगेट करें"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ऊपर नेविगेट करें"
- "अधिक विकलà¥à¤ª"
- "पूरà¥à¤£"
- "सà¤à¥€ देखें"
- "कोई à¤à¤ªà¥â€à¤²à¤¿à¤•à¥‡à¤¶à¤¨ चà¥à¤¨à¥‡à¤‚"
- "बंद"
- "चालू"
- "खोजा जा रहा है…"
- "कà¥â€à¤µà¥‡à¤°à¥€ साफ़ करें"
- "खोज कà¥à¤µà¥‡à¤°à¥€"
- "खोजें"
- "कà¥à¤µà¥‡à¤°à¥€ सबमिट करें"
- "धà¥à¤µà¤¨à¤¿ खोज"
- "इसके दà¥à¤µà¤¾à¤°à¤¾ साà¤à¤¾ करें"
- "%s के साथ साà¤à¤¾ करें"
- "संकà¥à¤·à¤¿à¤ªà¥à¤¤ करें"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml
deleted file mode 100644
index 496e87d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml
deleted file mode 100644
index 4d629bf..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml
deleted file mode 100644
index 302b221..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¿Õ¸Ö‚Õ¶"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"
- "Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€"
- "Ô¿Õ¡Õ¿Õ¡Ö€Õ¾Õ¡Õ® Õ§"
- "ÕÕ¥Õ½Õ¶Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨"
- "Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ®Ö€Õ¡Õ£Õ«Ö€"
- "Ô±Õ†Õ‹Ô±ÕÕŽÔ±Ô¾"
- "Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾"
- "ÕˆÖ€Õ¸Õ¶Õ¸Ö‚Õ´..."
- "Õ„Õ¡Ö„Ö€Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"
- "ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´"
- "ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"
- "ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"
- "ÕÕ¡ÕµÕ¶Õ¡ÕµÕ«Õ¶ Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´"
- "ÕÕ¡Ö€Õ¡Õ®Õ¥Õ¬"
- "ÕÕ¡Ö€Õ¡Õ®Õ¥Õ¬ Õ¨Õ½Õ¿ %s"
- "Ô¹Õ¡Ö„ÖÕ¶Õ¥Õ¬"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml
deleted file mode 100644
index 1aa14c5..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml
deleted file mode 100644
index 51ffbca..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml
deleted file mode 100644
index 8aed798..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml
+++ /dev/null
@@ -1,23 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml
deleted file mode 100644
index d73f472..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "× ×•×•×˜ לדף הבית"
- "â€%1$sâ€, %2$s"
- "â€%1$sâ€, %2$sâ€, %3$s"
- "× ×•×•×˜ למעלה"
- "עוד ×פשרויות"
- "בוצע"
- "ר××” הכל"
- "בחר ×פליקציה"
- "כבוי"
- "פועל"
- "חפש…"
- "מחק ש×ילתה"
- "ש×ילתת חיפוש"
- "חפש"
- "שלח ש×ילתה"
- "חיפוש קולי"
- "שתף ×¢×"
- "â€×©×ª×£ ×¢× %s"
- "כווץ"
- "‎999+‎"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml
deleted file mode 100644
index 438ab13..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml
+++ /dev/null
@@ -1,23 +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/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml
deleted file mode 100644
index a76c00f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "მთáƒáƒ•áƒáƒ ზე ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ზემáƒáƒ— ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ"
- "მეტი ვáƒáƒ იáƒáƒœáƒ¢áƒ”ბი"
- "დáƒáƒ¡áƒ ულდáƒ"
- "ყველáƒáƒ¡ ნáƒáƒ®áƒ•áƒ"
- "áƒáƒžáƒ˜áƒ¡ áƒáƒ ჩევáƒ"
- "გáƒáƒ›áƒáƒ თულიáƒ"
- "ჩáƒáƒ თულიáƒ"
- "ძიებáƒ..."
- "მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•áƒ”ბáƒ"
- "ძიების მáƒáƒ—ხáƒáƒ•áƒœáƒ"
- "ძიებáƒ"
- "მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ“áƒáƒ’ზáƒáƒ•áƒœáƒ"
- "ხმáƒáƒ•áƒáƒœáƒ˜ ძიებáƒ"
- "გáƒáƒ–იáƒáƒ ებáƒ:"
- "%s-თáƒáƒœ გáƒáƒ–იáƒáƒ ებáƒ"
- "áƒáƒ™áƒ”ცვáƒ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml
deleted file mode 100644
index f95ae29..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Ðегізгі бетте қозғалу"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Жоғары қозғалу"
- "БаÑқа опциÑлар"
- "Дайын"
- "Барлығын көру"
- "Қолданбаны таңдау"
- "ӨШІРУЛІ"
- "ҚОСУЛЫ"
- "Іздеу…"
- "Сұрақты жою"
- "Сұрақты іздеу"
- "Іздеу"
- "Сұрақты жіберу"
- "Ð”Ð°ÑƒÑ‹Ñ Ð°Ñ€Ò›Ñ‹Ð»Ñ‹ іздеу"
- "БөліÑу"
- "%s бөліÑу"
- "ТаÑалау"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml
deleted file mode 100644
index c3fee76..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "រកមើល​ទៅ​ដើម"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "រកមើល​ឡើងលើ"
- "ជម្រើស​ច្រើន​ទៀáž"
- "រួចរាល់"
- "មើល​ទាំងអស់"
- "ជ្រើស​កម្មវិធី​​"
- "បិទ"
- "បើក"
- "ស្វែងរក…"
- "សម្អាážâ€‹ážŸáŸ†ážŽáž½ážš"
- "ស្វែងរក​សំណួរ"
- "ស្វែងរក"
- "ដាក់​​​ស្នើ​សំណួរ"
- "ការស្វែងរក​សំឡáŸáž„"
- "ចែករំលែក​ជាមួយ"
- "ចែករំលែក​ជាមួយ %s"
- "បង្រួម"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml
deleted file mode 100644
index cb0acab..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ಮà³à²–ಪà³à²Ÿà²µà²¨à³à²¨à³ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ಮೇಲಕà³à²•à³† ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"
- "ಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•à³†à²—ಳà³"
- "ಮà³à²—ಿದಿದೆ"
- "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ನೋಡಿ"
- "ಒಂದೠಅಪà³à²²à²¿à²•à³‡à²¶à²¨à³ ಆಯà³à²•à³†à²®à²¾à²¡à²¿"
- "ಆಫà³"
- "ಆನà³"
- "ಹà³à²¡à³à²•à²¿â€¦"
- "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ತೆರವà³à²—ೊಳಿಸà³"
- "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಹà³à²¡à³à²•à²¿"
- "ಹà³à²¡à³à²•à³"
- "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಸಲà³à²²à²¿à²¸à³"
- "ಧà³à²µà²¨à²¿ ಹà³à²¡à³à²•à²¾à²Ÿ"
- "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"
- "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"
- "ಸಂಕà³à²šà²¿à²¸à³"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml
deleted file mode 100644
index be42209..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "홈 íƒìƒ‰"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "위로 íƒìƒ‰"
- "옵션 ë”보기"
- "완료"
- "ì „ì²´ 보기"
- "앱 ì„ íƒ"
- "사용 안함"
- "사용"
- "검색..."
- "검색어 ì‚ì œ"
- "검색어"
- "검색"
- "검색어 보내기"
- "ìŒì„± 검색"
- "ê³µìœ ëŒ€ìƒ"
- "%s와(ê³¼) ê³µìœ "
- "ì ‘ê¸°"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml
deleted file mode 100644
index 0b8150f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Үйгө багыттоо"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Жогору"
- "Көбүрөөк мүмкүнчүлүктөр"
- "ДаÑÑ€"
- "Бардыгын көрүү"
- "Колдонмо тандоо"
- "ӨЧҮК"
- "КҮЙҮК"
- "Издөө…"
- "Талаптарды тазалоо"
- "Издөө талаптары"
- "Издөө"
- "Талап жөнөтүү"
- "Үн аркылуу издөө"
- "Бөлүшүү"
- "%s аркылуу бөлүшүү"
- "Жыйнап коюу"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml
deleted file mode 100644
index c0686a4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- true
- true
- 48dp
- 32dp
- 12dp
- 14dp
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml
deleted file mode 100644
index 7c97842..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- true
- true
- 440dp
- - 60%
- - 90%
- - 60%
- - 90%
- - 55%
- - 80%
- 192dip
- 4
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml
deleted file mode 100644
index 1bdd835..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml
deleted file mode 100644
index 1250161..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "àºàº±àºšà»„ປໜ້າຫຼັàº"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ຂຶ້ນເທິງ"
- "ໂຕເລືàºàºàºàº·à»ˆàº™"
- "à»àº¥à»‰àº§à»†"
- "ເບິ່ງທັງຫມົດ"
- "ເລືàºàºà»àºàº±àºšàº¯"
- "ປິດ"
- "ເປີດ"
- "ຊàºàºàº«àº²"
- "ລຶບຂà»à»‰àº„ວາມຊàºàºàº«àº²"
- "ຊàºàºàº«àº²"
- "ຊàºàºàº«àº²"
- "ສົ່ງàºàº²àº™àºŠàºàºàº«àº²"
- "ຊàºàºàº«àº²àº”້ວàºàºªàº½àº‡"
- "à»àºšà»ˆàº‡àº›àº±àº™àºàº±àºš"
- "à»àºšà»ˆàº‡â€‹àº›àº±àº™â€‹àºàº±àºšâ€‹ %s"
- "ຫàºà»à»‰"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml
deleted file mode 100644
index 17a7c53..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Eiti į pagrindinį puslapį"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Eiti į viršų"
- "Daugiau parinkÄių"
- "Atlikta"
- "Peržiūrėti viską"
- "Pasirinkti programÄ…"
- "IÅ JUNGTI"
- "ĮJUNGTI"
- "Ieškoti..."
- "Išvalyti užklausą"
- "Paieškos užklausa"
- "Paieška"
- "Pateikti užklausą"
- "Paieška balsu"
- "Bendrinti naudojant"
- "Bendrinti naudojant „%s“"
- "Sutraukti"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml
deleted file mode 100644
index df0fd73..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "PÄrvietoties uz sÄkuma ekrÄnu"
- "%1$s: %2$s"
- "%1$s, %2$s: %3$s"
- "PÄrvietoties augÅ¡up"
- "VairÄk opciju"
- "Gatavs"
- "Skatīt visu"
- "Izvēlieties lietotni"
- "IZSLÄ’GTS"
- "IESLÄ’GTS"
- "Meklējiet…"
- "NotÄ«rÄ«t vaicÄjumu"
- "MeklÄ“Å¡anas vaicÄjums"
- "Meklēt"
- "Iesniegt vaicÄjumu"
- "Meklēšana ar balsi"
- "Kopīgot ar:"
- "Kopīgot ar %s"
- "Sakļaut"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml
deleted file mode 100644
index 09742b9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
- "Движи Ñе кон дома"
- "%1$s, %2$s, %3$s"
- "Движи Ñе нагоре"
- "Повеќе опции"
- "Готово"
- "Види ги Ñите"
- "Избери апликација"
- "ИСКЛУЧЕÐО"
- "ВКЛУЧЕÐО"
- "Пребарување…"
- "ИÑчиÑти барање"
- "Пребарај барање"
- "Пребарај"
- "ПоднеÑи барање"
- "ГлаÑовно пребарување"
- "Сподели Ñо"
- "Собери"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml
deleted file mode 100644
index 49ecfc8..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ഹോമിലേകàµà´•àµ നാവിഗേറàµà´±àµà´šàµ†à´¯àµà´¯àµà´•"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "à´®àµà´•à´³à´¿à´²àµ‡à´•àµà´•àµ നാവിഗേറàµà´±àµà´šàµ†à´¯àµà´¯àµà´•"
- "കൂടàµà´¤à´²àµâ€ à´“à´ªàµâ€Œà´·à´¨àµà´•à´³àµâ€"
- "പൂർതàµà´¤à´¿à´¯à´¾à´•àµà´•à´¿"
- "à´Žà´²àµà´²à´¾à´‚ കാണàµà´•"
- "ഒരൠഅപàµà´²à´¿à´•àµà´•àµ‡à´·àµ» തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•"
- "à´“à´«àµ"
- "ഓൺ"
- "തിരയàµà´•â€¦"
- "à´…à´¨àµà´µàµ‡à´·à´£à´‚ മായàµâ€Œà´•àµà´•àµà´•"
- "തിരയൽ à´…à´¨àµà´µàµ‡à´·à´£à´‚"
- "തിരയൽ"
- "à´…à´¨àµà´µàµ‡à´·à´£à´‚ സമർപàµà´ªà´¿à´•àµà´•àµà´•"
- "ശബàµà´¦ തിരയൽ"
- "ഇവരàµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"
- "%s à´Žà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"
- "à´šàµà´°àµà´•àµà´•àµà´•"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml
deleted file mode 100644
index 997e79b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Ðүүр Ñ…ÑƒÑƒÐ´Ð°Ñ Ñ€ÑƒÑƒ шилжих"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ДÑÑш шилжих"
- "ÐÑмÑлт Ñонголтууд"
- "ДууÑÑан"
- "Бүгдийг харах"
- "Ðпп Ñонгох"
- "ИДÐВХГҮЙ"
- "ИДÐВХТÐЙ"
- "Хайх..."
- "ÐÑуулгыг цÑвÑрлÑÑ…"
- "Хайх аÑуулга"
- "Хайх"
- "ÐÑуулгыг илгÑÑÑ…"
- "Дуут хайлт"
- "Хуваалцах"
- "%s-тай хуваалцах"
- "Хумих"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml
deleted file mode 100644
index 7c3fe36..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "मà¥à¤–à¥â€à¤¯à¤ªà¥ƒà¤·à¥â€à¤ नेवà¥â€à¤¹à¤¿à¤—ेट करा"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "वर नेवà¥â€à¤¹à¤¿à¤—ेट करा"
- "अधिक परà¥à¤¯à¤¾à¤¯"
- "पूरà¥à¤£ à¤à¤¾à¤²à¥‡"
- "सरà¥à¤µ पहा"
- "à¤à¤• अâ€à¥…प निवडा"
- "बंद"
- "चालू"
- "शोधा…"
- "कà¥â€à¤µà¥‡à¤°à¥€ सà¥â€à¤ªà¤·à¥â€à¤Ÿ करा"
- "शोध कà¥à¤µà¥‡à¤°à¥€"
- "शोध"
- "कà¥à¤µà¥‡à¤°à¥€ सबमिट करा"
- "वà¥à¤¹à¥‰à¤‡à¤¸ शोध"
- "यांचà¥à¤¯à¤¾à¤¸à¤¹ सामायिक करा"
- "%s सह सामायिक करा"
- "संकà¥à¤·à¤¿à¤ªà¥à¤¤ करा"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml
deleted file mode 100644
index 5a84cf4..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Navigasi skrin utama"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navigasi ke atas"
- "Lagi pilihan"
- "Selesai"
- "Lihat semua"
- "Pilih apl"
- "MATI"
- "HIDUP"
- "Cari…"
- "Kosongkan pertanyaan"
- "Pertanyaan carian"
- "Cari"
- "Serah pertanyaan"
- "Carian suara"
- "Kongsi dengan"
- "Kongsi dengan %s"
- "Runtuhkan"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml
deleted file mode 100644
index c05fc18..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "မူလနေရာကá€á€¯ သွားရန်"
- "%1$sአ%2$s"
- "%1$s አ%2$s አ%3$s"
- "အပေါ်သá€á€¯á€·á€žá€½á€¬á€¸á€›á€”်"
- "ပá€á€¯á€™á€á€¯á€›á€½á€±á€¸á€á€»á€šá€ºá€…ရာများ"
- "ပြီးဆုံးပါပြီ"
- "အားလုံးကá€á€¯ ကြည့်ရန်"
- "အပလီကေးရှင်း á€á€…်á€á€¯á€á€¯á€€á€á€¯ ရွေးá€á€»á€šá€ºá€•á€«"
- "ပá€á€á€º"
- "ဖွင့်"
- "ရှာဖွေပါ..."
- "ရှာစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€™á€»á€¬á€¸ ရှင်းလင်းရန်"
- "ရှာစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€”ေရာ"
- "ရှာဖွေရန်"
- "ရှာဖွေစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯ အá€á€Šá€ºá€•á€¼á€¯á€›á€”်"
- "အသံဖြင့် ရှာဖွေá€á€¼á€„်း"
- "မျှá€á€±á€–á€á€¯á€· ရွေးပါ"
- "%s ကá€á€¯ မျှá€á€±á€•á€«á€›á€”်"
- "á€á€±á€«á€€á€ºá€›á€”်"
- "á‰á‰á‰+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml
deleted file mode 100644
index e0c4288..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "GÃ¥ til startsiden"
- "%1$s – %2$s"
- "%1$s – %2$s – %3$s"
- "GÃ¥ opp"
- "Flere alternativer"
- "Ferdig"
- "Se alle"
- "Velg en app"
- "AV"
- "PÃ…"
- "Søk …"
- "Slett søket"
- "Søkeord"
- "Søk"
- "Utfør søket"
- "Talesøk"
- "Del med"
- "Del med %s"
- "Skjul"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml
deleted file mode 100644
index a134235..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "गृह खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "माथि खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "थप विकलà¥à¤ªà¤¹à¤°à¥‚"
- "समà¥à¤ªà¤¨à¥à¤¨ à¤à¤¯à¥‹"
- "सबै हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "à¤à¤‰à¤Ÿà¤¾ अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— छानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "निषà¥à¤•à¥à¤°à¤¿à¤¯ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "सकà¥à¤°à¤¿à¤¯ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥..."
- "पà¥à¤°à¤¶à¥â€à¤¨ हटाउनà¥à¤¹à¥‹à¤¸à¥"
- "जिजà¥à¤žà¤¾à¤¸à¤¾à¤•à¥‹ खोज गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "जिजà¥à¤žà¤¾à¤¸à¤¾ पेस गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "à¤à¥à¤µà¤¾à¤‡à¤¸ खोजी"
- "साà¤à¥‡à¤¦à¤¾à¤°à¥€ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥..."
- "%s सà¤à¤— साà¤à¥‡à¤¦à¤¾à¤°à¥€ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "संकà¥à¤·à¤¿à¤ªà¥à¤¤ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "९९९+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml
deleted file mode 100644
index 17a2110..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml
deleted file mode 100644
index 1c70697..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Navigeren naar startpositie"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Omhoog navigeren"
- "Meer opties"
- "Gereed"
- "Alles weergeven"
- "Een app selecteren"
- "UIT"
- "AAN"
- "Zoeken…"
- "Zoekopdracht wissen"
- "Zoekopdracht"
- "Zoeken"
- "Zoekopdracht verzenden"
- "Gesproken zoekopdracht"
- "Delen met"
- "Delen met %s"
- "Samenvouwen"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml
deleted file mode 100644
index c768d54..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
- "ਹੋਰ ਚੋਣਾਂ"
- "ਹੋ ਗਿਆ"
- "ਸਠਦੇਖੋ"
- "ਇੱਕ à¨à¨ª ਚà©à¨£à©‹"
- "ਬੰਦ"
- "ਤੇ"
- "ਖੋਜ…"
- "ਸਵਾਲ ਹਟਾਓ"
- "ਸਵਾਲ ਖੋਜੋ"
- "ਖੋਜੋ"
- "ਸਵਾਲ ਪà©à¨°à¨¸à¨¤à©à¨¤ ਕਰੋ"
- "ਵੌਇਸ ਖੋਜ"
- "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
- "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
- "ਨਸ਼ਟ ਕਰੋ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml
deleted file mode 100644
index 7a51803..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Przejdź do strony głównej"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Przejdź wyżej"
- "Więcej opcji"
- "Gotowe"
- "Zobacz wszystkie"
- "Wybierz aplikacjÄ™"
- "WYÅ."
- "WÅ."
- "Szukaj…"
- "Wyczyść zapytanie"
- "Wyszukiwane hasło"
- "Szukaj"
- "Wyślij zapytanie"
- "Wyszukiwanie głosowe"
- "Udostępnij dla"
- "Udostępnij dla %s"
- "Zwiń"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml
deleted file mode 100644
index 7a925dc..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- false
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml
deleted file mode 100644
index 61bd5a5..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Navegar para a página inicial"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navegar para cima"
- "Mais opções"
- "ConcluÃdo"
- "Ver tudo"
- "Selecione um app"
- "DESATIVAR"
- "ATIVAR"
- "Pesquisar..."
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Compartilhar com"
- "Compartilhar com %s"
- "Recolher"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml
deleted file mode 100644
index 93fcac3..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Navegar para a página inicial"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navegar para cima"
- "Mais opções"
- "ConcluÃdo"
- "Ver tudo"
- "Escolher uma aplicação"
- "DESATIVADO"
- "ATIVADO"
- "Pesquisar..."
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Partilhar com"
- "Partilhar com %s"
- "Reduzir"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml
deleted file mode 100644
index 61bd5a5..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Navegar para a página inicial"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navegar para cima"
- "Mais opções"
- "ConcluÃdo"
- "Ver tudo"
- "Selecione um app"
- "DESATIVAR"
- "ATIVAR"
- "Pesquisar..."
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Compartilhar com"
- "Compartilhar com %s"
- "Recolher"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml
deleted file mode 100644
index d7b3380..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "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"
- "ACTIVAÈšI"
- "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"
- "˃999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml
deleted file mode 100644
index b09e759..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Перейти на главный Ñкран"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Перейти вверх"
- "Другие параметры"
- "Готово"
- "Показать вÑе"
- "Выбрать приложение"
- "ОТКЛ."
- "ВКЛ."
- "ПоиÑк"
- "Удалить запроÑ"
- "ПоиÑковый запроÑ"
- "ПоиÑк"
- "Отправить запроÑ"
- "ГолоÑовой поиÑк"
- "Открыть доÑтуп"
- "Открыть доÑтуп пользователю %s"
- "Свернуть"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml
deleted file mode 100644
index 38729f9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ගෙදරට සංචà·à¶½à¶±à¶º කරන්න"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ඉහලට සංචà·à¶½à¶±à¶º කරන්න"
- "à¶à·€à¶à·Š විකල්ප"
- "අවසà·à¶± වූ"
- "සියල්ල බලන්න"
- "යෙදුමක් à¶à·à¶»à¶±à·Šà¶±"
- "ක්â€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’"
- "ක්â€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’"
- "සොයන්න..."
- "විමසුම හිස් කරන්න"
- "සෙවුම් විමසුම"
- "සෙවීම"
- "විමසුම යොමු කරන්න"
- "හඬ සෙවීම"
- "සමඟ බෙදà·à¶œà¶±à·Šà¶±"
- "%s සමඟ බෙදà·à¶œà¶±à·Šà¶±"
- "හකුළන්න"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml
deleted file mode 100644
index a0e5aa0..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Prejsť na plochu"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Prejsť hore"
- "Ďalšie možnosti"
- "Hotovo"
- "Zobraziť všetko"
- "Zvoľte aplikáciu"
- "VYP."
- "ZAP."
- "Vyhľadať…"
- "Vymazať dopyt"
- "Vyhľadávacà dopyt"
- "Hľadať"
- "Odoslať dopyt"
- "Hlasové vyhľadávanie"
- "Zdieľať pomocou"
- "Zdieľať pomocou %s"
- "Zbaliť"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml
deleted file mode 100644
index 19eb9b7..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Krmarjenje domov"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Krmarjenje navzgor"
- "VeÄ možnosti"
- "KonÄano"
- "Pokaži vse"
- "Izbira aplikacije"
- "IZKLOPLJENO"
- "VKLOPLJENO"
- "Iskanje …"
- "Izbris poizvedbe"
- "Iskalna poizvedba"
- "Iskanje"
- "Pošiljanje poizvedbe"
- "Glasovno iskanje"
- "Deljenje z"
- "Deljenje z:"
- "Strni"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml
deleted file mode 100644
index 38cfb1a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Orientohu për në shtëpi"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Ngjitu lart"
- "Opsione të tjera"
- "U krye!"
- "Shikoji të gjitha"
- "Zgjidh një aplikacion"
- "JOAKTIV"
- "AKTIV"
- "Kërko..."
- "Pastro pyetjen"
- "Kërko pyetjen"
- "Kërko"
- "Dërgo pyetjen"
- "Kërkim me zë"
- "Shpërnda publikisht me"
- "Shpërnda publikisht me %s"
- "Shpalos"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml
deleted file mode 100644
index c674e1f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Одлазак на Почетну"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Кретање нагоре"
- "Још опција"
- "Готово"
- "Прикажи Ñве"
- "Избор апликације"
- "ИСКЉУЧИ"
- "УКЉУЧИ"
- "Претражите..."
- "БриÑање упита"
- "Упит за претрагу"
- "Претрага"
- "Слање упита"
- "ГлаÑовна претрага"
- "Дели Ñа"
- "Дели Ñа апликацијом %s"
- "Скупи"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml
deleted file mode 100644
index 05aae9d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Visa startsidan"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navigera uppåt"
- "Fler alternativ"
- "Klart"
- "Visa alla"
- "Välj en app"
- "AV"
- "PÃ…"
- "Sök …"
- "Ta bort frågan"
- "Sökfråga"
- "Sök"
- "Skicka fråga"
- "Röstsökning"
- "Dela med"
- "Dela med %s"
- "Komprimera"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml
deleted file mode 100644
index b80b09a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Nenda mwanzo"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Nenda juu"
- "Chaguo zaidi"
- "Nimemaliza"
- "Angalia zote"
- "Chagua programu"
- "IMEZIMWA"
- "IMEWASHWA"
- "Tafuta…"
- "Futa hoja"
- "Hoja ya utafutaji"
- "Tafuta"
- "Wasilisha hoja"
- "Tafuta kwa kutamka"
- "Shiriki na:"
- "Shiriki na %s"
- "Kunja"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
deleted file mode 100644
index c777059..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
- 24dp
- 64dp
- 8dp
- 8dp
- 580dp
- 16dp
- 20dp
- 5
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml
deleted file mode 100644
index 0b33d7c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "à®®à¯à®•à®ªà¯à®ªà®¿à®±à¯à®•à¯ வழிசெலà¯à®¤à¯à®¤à¯"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "மேலே வழிசெலà¯à®¤à¯à®¤à¯"
- "மேலà¯à®®à¯ விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯"
- "à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯"
- "எலà¯à®²à®¾à®®à¯ காடà¯à®Ÿà¯"
- "பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®•"
- "à®®à¯à®Ÿà®•à¯à®•à¯"
- "இயகà¯à®•à¯"
- "தேடà¯..."
- "வினவலை அழி"
- "தேடல௠வினவலà¯"
- "தேடà¯"
- "வினவலைச௠சமரà¯à®ªà¯à®ªà®¿"
- "கà¯à®°à®²à¯ தேடலà¯"
- "இதனà¯à®Ÿà®©à¯ பகிரà¯"
- "%s உடன௠பகிரà¯"
- "சà¯à®°à¯à®•à¯à®•à¯"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml
deleted file mode 100644
index e0f4a9e..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "హోమà±â€Œà°•à± నావిగేటౠచేయండి"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "పైకి నావిగేటౠచేయండి"
- "మరినà±à°¨à°¿ ఎంపికలà±"
- "పూరà±à°¤à°¯à°¿à°‚ది"
- "à°…à°¨à±à°¨à±€ చూడండి"
- "à°…à°¨à±à°µà°°à±à°¤à°¨à°¾à°¨à±à°¨à°¿ à°Žà°‚à°šà±à°•à±‹à°‚à°¡à°¿"
- "ఆఫౠచేయి"
- "ఆనౠచేయి"
- "శోధించà±..."
- "à°ªà±à°°à°¶à±à°¨à°¨à± à°•à±à°²à°¿à°¯à°°à± చేయి"
- "à°ªà±à°°à°¶à±à°¨ శోధించండి"
- "శోధించà±"
- "à°ªà±à°°à°¶à±à°¨à°¨à°¿ సమరà±à°ªà°¿à°‚à°šà±"
- "వాయిసౠశోధన"
- "వీరితో à°à°¾à°—à°¸à±à°µà°¾à°®à±à°¯à°‚ చేయి"
- "%sతో à°à°¾à°—à°¸à±à°µà°¾à°®à±à°¯à°‚ చేయి"
- "à°•à±à°¦à°¿à°‚à°šà°‚à°¡à°¿"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml
deleted file mode 100644
index cfd81ed..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "นำทางไปหน้าà¹à¸£à¸"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "นำทางขึ้น"
- "ตัวเลืà¸à¸à¸à¸·à¹ˆà¸™"
- "เสร็จสิ้น"
- "ดูทั้งหมด"
- "เลืà¸à¸à¹à¸à¸›"
- "ปิด"
- "เปิด"
- "ค้นหา…"
- "ล้างข้à¸à¸„วามค้นหา"
- "ข้à¸à¸„วามค้นหา"
- "ค้นหา"
- "ส่งข้à¸à¸„วามค้นหา"
- "ค้นหาด้วยเสียง"
- "à¹à¸Šà¸£à¹Œà¸à¸±à¸š"
- "à¹à¸Šà¸£à¹Œà¸à¸±à¸š %s"
- "ยุบ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml
deleted file mode 100644
index 870d8ce..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Mag-navigate patungo sa home"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Mag-navigate pataas"
- "Higit pang mga opsyon"
- "Tapos na"
- "Tingnan lahat"
- "Pumili ng isang app"
- "I-OFF"
- "I-ON"
- "Maghanap…"
- "I-clear ang query"
- "Query sa paghahanap"
- "Maghanap"
- "Isumite ang query"
- "Paghahanap gamit ang boses"
- "Ibahagi sa/kay"
- "Ibahagi sa/kay %s"
- "I-collapse"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml
deleted file mode 100644
index f74ffb2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Ana ekrana git"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Yukarı git"
- "Diğer seçenekler"
- "Tamamlandı"
- "Tümünü göster"
- "Bir uygulama seçin"
- "KAPAT"
- "AÇ"
- "Ara…"
- "Sorguyu temizle"
- "Arama sorgusu"
- "Ara"
- "Sorguyu gönder"
- "Sesli arama"
- "Åžununla paylaÅŸ"
- "%s ile paylaÅŸ"
- "Daralt"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml
deleted file mode 100644
index 409e11b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Перейти на головний"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Перейти вгору"
- "Інші опції"
- "Готово"
- "ПереглÑнути вÑÑ–"
- "Вибрати програму"
- "ВИМК."
- "УВІМК."
- "Пошук…"
- "ОчиÑтити запит"
- "Пошуковий запит"
- "Пошук"
- "ÐадіÑлати запит"
- "ГолоÑовий пошук"
- "ÐадіÑлати через"
- "ÐадіÑлати через %s"
- "Згорнути"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml
deleted file mode 100644
index 0d597a0..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Ûوم پر نیویگیٹ کریں"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "اوپر نیویگیٹ کریں"
- "مزید اختیارات"
- "ÛÙˆ گیا"
- "سبھی دیکھیں"
- "ایک ایپ منتخب کریں"
- "Ø¢Ù"
- "آن"
- "تلاش کریں…"
- "استÙسار صا٠کریں"
- "استÙسار تلاش کریں"
- "تلاش کریں"
- "استÙسار جمع کرائیں"
- "صوتی تلاش"
- "اشتراک کریں مع"
- "â€%s Ú©Û’ ساتھ اشتراک کریں"
- "سکیڑیں"
- "‎999+‎"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml
deleted file mode 100644
index 22c32f9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- "Boshiga o‘tish"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Yuqoriga o‘tish"
- "Qo‘shimcha sozlamalar"
- "Tayyor"
- "Barchasini ko‘rish"
- "Dastur tanlang"
- "O‘CHIQ"
- "YONIQ"
- "Qidirish…"
- "So‘rovni tozalash"
- "So‘rovni izlash"
- "Qidirish"
- "So‘rov yaratish"
- "Ovozli qidiruv"
- "Bo‘lishish:"
- "Yig‘ish"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml
deleted file mode 100644
index d074ce9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml
deleted file mode 100644
index 85e2416..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml
deleted file mode 100644
index 74d1408..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- false
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml
deleted file mode 100644
index 7239a2c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml
deleted file mode 100644
index f9f23d1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml
deleted file mode 100644
index 7dad77f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 0px
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml
deleted file mode 100644
index 5eedefd..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml
deleted file mode 100644
index d4a514a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml
deleted file mode 100644
index 7a225c9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml
deleted file mode 100644
index d02406b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Äiá»u hÆ°á»›ng vá» trang chủ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Äiá»u hÆ°á»›ng lên trên"
- "Thêm tùy chá»n"
- "Xong"
- "Xem tất cả"
- "Chá»n má»™t ứng dụng"
- "TẮT"
- "BẬT"
- "Tìm kiếm…"
- "Xóa truy vấn"
- "Tìm kiếm truy vấn"
- "Tìm kiếm"
- "Gá»i truy vấn"
- "Tìm kiếm bằng giá»ng nói"
- "Chia sẻ với"
- "Chia sẻ với %s"
- "Thu gá»n"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml
deleted file mode 100644
index fd9dac9..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 3
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml
deleted file mode 100644
index 5b7dcf6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- true
- true
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml
deleted file mode 100644
index dcd19ee..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 4
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml
deleted file mode 100644
index 4c058c2..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- 192dip
- 5
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml
deleted file mode 100644
index 966aafb..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- false
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml
deleted file mode 100644
index 98b3f8c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 256dip
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml
deleted file mode 100644
index 3dcad8b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- false
- - 60%
- - 90%
- - 50%
- - 70%
- - 45%
- - 72%
- 192dip
- 5
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml
deleted file mode 100644
index 6159893..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "转到主å±å¹•"
- "%1$s:%2$s"
- "%1$s - %2$s:%3$s"
- "转到上一层级"
- "更多选项"
- "完æˆ"
- "查看全部"
- "选择应用"
- "å…³é—"
- "å¼€å¯"
- "æœç´¢â€¦"
- "清除查询"
- "æœç´¢æŸ¥è¯¢"
- "æœç´¢"
- "æ交查询"
- "è¯éŸ³æœç´¢"
- "分享方å¼"
- "通过%s分享"
- "收起"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml
deleted file mode 100644
index 74717bd..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ç€è¦½ä¸»é "
- "%1$s:%2$s"
- "%1$s (%2$s):%3$s"
- "å‘上ç€è¦½"
- "更多é¸é …"
- "完æˆ"
- "顯示全部"
- "é¸æ“‡æ‡‰ç”¨ç¨‹å¼"
- "關閉"
- "é–‹å•Ÿ"
- "æœå°‹â€¦"
- "清除查詢"
- "æœå°‹æŸ¥è©¢"
- "æœå°‹"
- "æ交查詢"
- "語音æœå°‹"
- "分享å°è±¡"
- "與「%sã€åˆ†äº«"
- "收åˆ"
- "999 +"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml
deleted file mode 100644
index 2cbb3ad..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "ç€è¦½é¦–é "
- "%1$s:%2$s"
- "%1$s - %2$s:%3$s"
- "å‘上ç€è¦½"
- "更多é¸é …"
- "完æˆ"
- "查看全部"
- "é¸æ“‡æ‡‰ç”¨ç¨‹å¼"
- "關閉"
- "é–‹å•Ÿ"
- "æœå°‹â€¦"
- "清除查詢"
- "æœå°‹æŸ¥è©¢"
- "æœå°‹"
- "æ交查詢"
- "語音æœå°‹"
- "é¸æ“‡åˆ†äº«å°è±¡"
- "與「%sã€åˆ†äº«"
- "收åˆ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml
deleted file mode 100644
index d17fcf1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- "Zulazulela ekhaya"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Zulazulela phezulu"
- "Izinketho eziningi"
- "Kwenziwe"
- "Buka konke"
- "Khetha uhlelo lokusebenza"
- "VALIWE"
- "VULIWE"
- "Iyasesha..."
- "Sula inkinga"
- "Umbuzo wosesho"
- "Sesha"
- "Hambisa umbuzo"
- "Ukusesha ngezwi"
- "Yabelana no-"
- "Yabelana no-%s"
- "Goqa"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml
deleted file mode 100644
index 77e1519..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml
+++ /dev/null
@@ -1,1511 +0,0 @@
-
-
-
-
-
-
- true
- false
- true
- true
- true
- false
- true
- false
- @android:color/black
- #7fa87f
- @android:color/black
- @android:color/black
- @color/material_deep_teal_200
- @color/material_deep_teal_500
- @color/material_grey_800
- @android:color/white
- @color/material_grey_850
- @color/material_grey_50
- #80ffffff
- #80000000
- @color/bright_foreground_material_light
- @color/bright_foreground_material_dark
- @android:color/white
- @android:color/black
- #ff5a595b
- #ffd6d7d7
- #80bebebe
- #80323232
- #ffbebebe
- #ff323232
- @android:color/white
- @android:color/black
- #6680cbc4
- #66009688
- @color/bright_foreground_disabled_material_dark
- @color/bright_foreground_disabled_material_light
- #ff37474f
- #ff263238
- #ff21272b
- #ff80cbc4
- #ff009688
- #fff5f5f5
- #ffe0e0e0
- #fffafafa
- #ff757575
- #ff424242
- #ff303030
- #ff212121
- @android:color/black
- @color/material_grey_600
- @color/material_grey_900
- @color/material_grey_100
- #ffffffff
- #de000000
- #4Dffffff
- #39000000
- #33ffffff
- #1f000000
- #b3ffffff
- #8a000000
- #36ffffff
- #24000000
- #ff616161
- #ffbdbdbd
- #ffbdbdbd
- #fff1f1f1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 16dp
- 56dp
- 0dp
- 0dp
- 16dp
- 10dp
- 6dp
- 40dp
- 48dp
- 180dp
- 5dp
- -3dp
- 48dp
- 48dp
- 36dp
- 48dp
- @dimen/abc_control_inset_material
- 6dp
- 8dp
- @dimen/abc_control_padding_material
- 320dp
- 2dp
- 4dp
- 4dp
- - 80%
- - 100%
- - 320dp
- - 320dp
- 8dp
- - 65%
- - 95%
- 24dp
- 18dp
- - 0.30
- - 0.26
- 32dip
- 8dip
- 8dip
- 7dp
- 4dp
- 10dp
- 16dp
- @dimen/abc_action_bar_content_inset_material
- 296dp
- 320dip
- 160dip
- 2dp
- 2dp
- 20dp
- 3dp
- 14sp
- 14sp
- 14sp
- 12sp
- 34sp
- 45sp
- 56sp
- 112sp
- 24sp
- 22sp
- 18sp
- 16sp
- 14sp
- 16sp
- 16dp
- 20sp
- 20dp
- - 0.30
- - 0.26
- - 0.26
- - 0.20
- - 0.12
- 64dp
- 64dp
- 12dp
- #3333B5E5
-
-
-
-
-
-
-
-
-
- 220
- 150
- 2
- 127
- 999
- 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
- 999+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/AndroidManifest.xml
deleted file mode 100644
index 6c078ef..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/R.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/R.txt
deleted file mode 100644
index 2d8b3e1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/R.txt
+++ /dev/null
@@ -1,1558 +0,0 @@
-int anim abc_fade_in 0x7f040000
-int anim abc_fade_out 0x7f040001
-int anim abc_grow_fade_in_from_bottom 0x7f040002
-int anim abc_popup_enter 0x7f040003
-int anim abc_popup_exit 0x7f040004
-int anim abc_shrink_fade_out_from_bottom 0x7f040005
-int anim abc_slide_in_bottom 0x7f040006
-int anim abc_slide_in_top 0x7f040007
-int anim abc_slide_out_bottom 0x7f040008
-int anim abc_slide_out_top 0x7f040009
-int anim design_bottom_sheet_slide_in 0x7f04000a
-int anim design_bottom_sheet_slide_out 0x7f04000b
-int anim design_fab_in 0x7f04000c
-int anim design_fab_out 0x7f04000d
-int anim design_snackbar_in 0x7f04000e
-int anim design_snackbar_out 0x7f04000f
-int attr actionBarDivider 0x7f01003e
-int attr actionBarItemBackground 0x7f01003f
-int attr actionBarPopupTheme 0x7f010038
-int attr actionBarSize 0x7f01003d
-int attr actionBarSplitStyle 0x7f01003a
-int attr actionBarStyle 0x7f010039
-int attr actionBarTabBarStyle 0x7f010034
-int attr actionBarTabStyle 0x7f010033
-int attr actionBarTabTextStyle 0x7f010035
-int attr actionBarTheme 0x7f01003b
-int attr actionBarWidgetTheme 0x7f01003c
-int attr actionButtonStyle 0x7f010058
-int attr actionDropDownStyle 0x7f010054
-int attr actionLayout 0x7f0100c6
-int attr actionMenuTextAppearance 0x7f010040
-int attr actionMenuTextColor 0x7f010041
-int attr actionModeBackground 0x7f010044
-int attr actionModeCloseButtonStyle 0x7f010043
-int attr actionModeCloseDrawable 0x7f010046
-int attr actionModeCopyDrawable 0x7f010048
-int attr actionModeCutDrawable 0x7f010047
-int attr actionModeFindDrawable 0x7f01004c
-int attr actionModePasteDrawable 0x7f010049
-int attr actionModePopupWindowStyle 0x7f01004e
-int attr actionModeSelectAllDrawable 0x7f01004a
-int attr actionModeShareDrawable 0x7f01004b
-int attr actionModeSplitBackground 0x7f010045
-int attr actionModeStyle 0x7f010042
-int attr actionModeWebSearchDrawable 0x7f01004d
-int attr actionOverflowButtonStyle 0x7f010036
-int attr actionOverflowMenuStyle 0x7f010037
-int attr actionProviderClass 0x7f0100c8
-int attr actionViewClass 0x7f0100c7
-int attr activityChooserViewStyle 0x7f010060
-int attr alertDialogButtonGroupStyle 0x7f010083
-int attr alertDialogCenterButtons 0x7f010084
-int attr alertDialogStyle 0x7f010082
-int attr alertDialogTheme 0x7f010085
-int attr allowStacking 0x7f010099
-int attr arrowHeadLength 0x7f0100b8
-int attr arrowShaftLength 0x7f0100b9
-int attr autoCompleteTextViewStyle 0x7f01008a
-int attr background 0x7f01000c
-int attr backgroundSplit 0x7f01000e
-int attr backgroundStacked 0x7f01000d
-int attr backgroundTint 0x7f010118
-int attr backgroundTintMode 0x7f010119
-int attr barLength 0x7f0100ba
-int attr behavior_hideable 0x7f010098
-int attr behavior_overlapTop 0x7f0100d7
-int attr behavior_peekHeight 0x7f010097
-int attr borderWidth 0x7f0100bf
-int attr borderlessButtonStyle 0x7f01005d
-int attr bottomSheetDialogTheme 0x7f0100b1
-int attr bottomSheetStyle 0x7f0100b2
-int attr buttonBarButtonStyle 0x7f01005a
-int attr buttonBarNegativeButtonStyle 0x7f010088
-int attr buttonBarNeutralButtonStyle 0x7f010089
-int attr buttonBarPositiveButtonStyle 0x7f010087
-int attr buttonBarStyle 0x7f010059
-int attr buttonPanelSideLayout 0x7f01001f
-int attr buttonStyle 0x7f01008b
-int attr buttonStyleSmall 0x7f01008c
-int attr buttonTint 0x7f0100a9
-int attr buttonTintMode 0x7f0100aa
-int attr checkboxStyle 0x7f01008d
-int attr checkedTextViewStyle 0x7f01008e
-int attr closeIcon 0x7f0100dc
-int attr closeItemLayout 0x7f01001c
-int attr collapseContentDescription 0x7f01010f
-int attr collapseIcon 0x7f01010e
-int attr collapsedTitleGravity 0x7f0100a6
-int attr collapsedTitleTextAppearance 0x7f0100a2
-int attr color 0x7f0100b4
-int attr colorAccent 0x7f01007b
-int attr colorButtonNormal 0x7f01007f
-int attr colorControlActivated 0x7f01007d
-int attr colorControlHighlight 0x7f01007e
-int attr colorControlNormal 0x7f01007c
-int attr colorPrimary 0x7f010079
-int attr colorPrimaryDark 0x7f01007a
-int attr colorSwitchThumbNormal 0x7f010080
-int attr commitIcon 0x7f0100e1
-int attr contentInsetEnd 0x7f010017
-int attr contentInsetLeft 0x7f010018
-int attr contentInsetRight 0x7f010019
-int attr contentInsetStart 0x7f010016
-int attr contentScrim 0x7f0100a3
-int attr controlBackground 0x7f010081
-int attr counterEnabled 0x7f010101
-int attr counterMaxLength 0x7f010102
-int attr counterOverflowTextAppearance 0x7f010104
-int attr counterTextAppearance 0x7f010103
-int attr customNavigationLayout 0x7f01000f
-int attr defaultQueryHint 0x7f0100db
-int attr dialogPreferredPadding 0x7f010052
-int attr dialogTheme 0x7f010051
-int attr displayOptions 0x7f010005
-int attr divider 0x7f01000b
-int attr dividerHorizontal 0x7f01005f
-int attr dividerPadding 0x7f0100c4
-int attr dividerVertical 0x7f01005e
-int attr drawableSize 0x7f0100b6
-int attr drawerArrowStyle 0x7f010000
-int attr dropDownListViewStyle 0x7f010071
-int attr dropdownListPreferredItemHeight 0x7f010055
-int attr editTextBackground 0x7f010066
-int attr editTextColor 0x7f010065
-int attr editTextStyle 0x7f01008f
-int attr elevation 0x7f01001a
-int attr errorEnabled 0x7f0100ff
-int attr errorTextAppearance 0x7f010100
-int attr expandActivityOverflowButtonDrawable 0x7f01001e
-int attr expanded 0x7f010024
-int attr expandedTitleGravity 0x7f0100a7
-int attr expandedTitleMargin 0x7f01009c
-int attr expandedTitleMarginBottom 0x7f0100a0
-int attr expandedTitleMarginEnd 0x7f01009f
-int attr expandedTitleMarginStart 0x7f01009d
-int attr expandedTitleMarginTop 0x7f01009e
-int attr expandedTitleTextAppearance 0x7f0100a1
-int attr fabSize 0x7f0100bd
-int attr foregroundInsidePadding 0x7f0100c1
-int attr gapBetweenBars 0x7f0100b7
-int attr goIcon 0x7f0100dd
-int attr headerLayout 0x7f0100cf
-int attr height 0x7f010001
-int attr hideOnContentScroll 0x7f010015
-int attr hintAnimationEnabled 0x7f010105
-int attr hintEnabled 0x7f0100fe
-int attr hintTextAppearance 0x7f0100fd
-int attr homeAsUpIndicator 0x7f010057
-int attr homeLayout 0x7f010010
-int attr icon 0x7f010009
-int attr iconifiedByDefault 0x7f0100d9
-int attr imageButtonStyle 0x7f010067
-int attr indeterminateProgressStyle 0x7f010012
-int attr initialActivityCount 0x7f01001d
-int attr insetForeground 0x7f0100d6
-int attr isLightTheme 0x7f010002
-int attr itemBackground 0x7f0100cd
-int attr itemIconTint 0x7f0100cb
-int attr itemPadding 0x7f010014
-int attr itemTextAppearance 0x7f0100ce
-int attr itemTextColor 0x7f0100cc
-int attr keylines 0x7f0100ab
-int attr layout 0x7f0100d8
-int attr layoutManager 0x7f0100d2
-int attr layout_anchor 0x7f0100ae
-int attr layout_anchorGravity 0x7f0100b0
-int attr layout_behavior 0x7f0100ad
-int attr layout_collapseMode 0x7f01009a
-int attr layout_collapseParallaxMultiplier 0x7f01009b
-int attr layout_keyline 0x7f0100af
-int attr layout_scrollFlags 0x7f010025
-int attr layout_scrollInterpolator 0x7f010026
-int attr listChoiceBackgroundIndicator 0x7f010078
-int attr listDividerAlertDialog 0x7f010053
-int attr listItemLayout 0x7f010023
-int attr listLayout 0x7f010020
-int attr listPopupWindowStyle 0x7f010072
-int attr listPreferredItemHeight 0x7f01006c
-int attr listPreferredItemHeightLarge 0x7f01006e
-int attr listPreferredItemHeightSmall 0x7f01006d
-int attr listPreferredItemPaddingLeft 0x7f01006f
-int attr listPreferredItemPaddingRight 0x7f010070
-int attr logo 0x7f01000a
-int attr logoDescription 0x7f010112
-int attr maxActionInlineWidth 0x7f0100e5
-int attr maxButtonHeight 0x7f01010d
-int attr measureWithLargestChild 0x7f0100c2
-int attr menu 0x7f0100ca
-int attr multiChoiceItemLayout 0x7f010021
-int attr navigationContentDescription 0x7f010111
-int attr navigationIcon 0x7f010110
-int attr navigationMode 0x7f010004
-int attr overlapAnchor 0x7f0100d0
-int attr paddingEnd 0x7f010116
-int attr paddingStart 0x7f010115
-int attr panelBackground 0x7f010075
-int attr panelMenuListTheme 0x7f010077
-int attr panelMenuListWidth 0x7f010076
-int attr popupMenuStyle 0x7f010063
-int attr popupTheme 0x7f01001b
-int attr popupWindowStyle 0x7f010064
-int attr preserveIconSpacing 0x7f0100c9
-int attr pressedTranslationZ 0x7f0100be
-int attr progressBarPadding 0x7f010013
-int attr progressBarStyle 0x7f010011
-int attr queryBackground 0x7f0100e3
-int attr queryHint 0x7f0100da
-int attr radioButtonStyle 0x7f010090
-int attr ratingBarStyle 0x7f010091
-int attr ratingBarStyleIndicator 0x7f010092
-int attr ratingBarStyleSmall 0x7f010093
-int attr reverseLayout 0x7f0100d4
-int attr rippleColor 0x7f0100bc
-int attr searchHintIcon 0x7f0100df
-int attr searchIcon 0x7f0100de
-int attr searchViewStyle 0x7f01006b
-int attr seekBarStyle 0x7f010094
-int attr selectableItemBackground 0x7f01005b
-int attr selectableItemBackgroundBorderless 0x7f01005c
-int attr showAsAction 0x7f0100c5
-int attr showDividers 0x7f0100c3
-int attr showText 0x7f0100ec
-int attr singleChoiceItemLayout 0x7f010022
-int attr spanCount 0x7f0100d3
-int attr spinBars 0x7f0100b5
-int attr spinnerDropDownItemStyle 0x7f010056
-int attr spinnerStyle 0x7f010095
-int attr splitTrack 0x7f0100eb
-int attr srcCompat 0x7f010027
-int attr stackFromEnd 0x7f0100d5
-int attr state_above_anchor 0x7f0100d1
-int attr statusBarBackground 0x7f0100ac
-int attr statusBarScrim 0x7f0100a4
-int attr submitBackground 0x7f0100e4
-int attr subtitle 0x7f010006
-int attr subtitleTextAppearance 0x7f010107
-int attr subtitleTextColor 0x7f010114
-int attr subtitleTextStyle 0x7f010008
-int attr suggestionRowLayout 0x7f0100e2
-int attr switchMinWidth 0x7f0100e9
-int attr switchPadding 0x7f0100ea
-int attr switchStyle 0x7f010096
-int attr switchTextAppearance 0x7f0100e8
-int attr tabBackground 0x7f0100f0
-int attr tabContentStart 0x7f0100ef
-int attr tabGravity 0x7f0100f2
-int attr tabIndicatorColor 0x7f0100ed
-int attr tabIndicatorHeight 0x7f0100ee
-int attr tabMaxWidth 0x7f0100f4
-int attr tabMinWidth 0x7f0100f3
-int attr tabMode 0x7f0100f1
-int attr tabPadding 0x7f0100fc
-int attr tabPaddingBottom 0x7f0100fb
-int attr tabPaddingEnd 0x7f0100fa
-int attr tabPaddingStart 0x7f0100f8
-int attr tabPaddingTop 0x7f0100f9
-int attr tabSelectedTextColor 0x7f0100f7
-int attr tabTextAppearance 0x7f0100f5
-int attr tabTextColor 0x7f0100f6
-int attr textAllCaps 0x7f010028
-int attr textAppearanceLargePopupMenu 0x7f01004f
-int attr textAppearanceListItem 0x7f010073
-int attr textAppearanceListItemSmall 0x7f010074
-int attr textAppearanceSearchResultSubtitle 0x7f010069
-int attr textAppearanceSearchResultTitle 0x7f010068
-int attr textAppearanceSmallPopupMenu 0x7f010050
-int attr textColorAlertDialogListItem 0x7f010086
-int attr textColorError 0x7f0100b3
-int attr textColorSearchUrl 0x7f01006a
-int attr theme 0x7f010117
-int attr thickness 0x7f0100bb
-int attr thumbTextPadding 0x7f0100e7
-int attr title 0x7f010003
-int attr titleEnabled 0x7f0100a8
-int attr titleMarginBottom 0x7f01010c
-int attr titleMarginEnd 0x7f01010a
-int attr titleMarginStart 0x7f010109
-int attr titleMarginTop 0x7f01010b
-int attr titleMargins 0x7f010108
-int attr titleTextAppearance 0x7f010106
-int attr titleTextColor 0x7f010113
-int attr titleTextStyle 0x7f010007
-int attr toolbarId 0x7f0100a5
-int attr toolbarNavigationButtonStyle 0x7f010062
-int attr toolbarStyle 0x7f010061
-int attr track 0x7f0100e6
-int attr useCompatPadding 0x7f0100c0
-int attr voiceIcon 0x7f0100e0
-int attr windowActionBar 0x7f010029
-int attr windowActionBarOverlay 0x7f01002b
-int attr windowActionModeOverlay 0x7f01002c
-int attr windowFixedHeightMajor 0x7f010030
-int attr windowFixedHeightMinor 0x7f01002e
-int attr windowFixedWidthMajor 0x7f01002d
-int attr windowFixedWidthMinor 0x7f01002f
-int attr windowMinWidthMajor 0x7f010031
-int attr windowMinWidthMinor 0x7f010032
-int attr windowNoTitle 0x7f01002a
-int bool abc_action_bar_embed_tabs 0x7f060003
-int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
-int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004
-int bool abc_allow_stacked_button_bar 0x7f060000
-int bool abc_config_actionMenuItemAllCaps 0x7f060005
-int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002
-int bool abc_config_closeDialogWhenTouchOutside 0x7f060006
-int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007
-int color abc_background_cache_hint_selector_material_dark 0x7f0a0044
-int color abc_background_cache_hint_selector_material_light 0x7f0a0045
-int color abc_color_highlight_material 0x7f0a0046
-int color abc_input_method_navigation_guard 0x7f0a0000
-int color abc_primary_text_disable_only_material_dark 0x7f0a0047
-int color abc_primary_text_disable_only_material_light 0x7f0a0048
-int color abc_primary_text_material_dark 0x7f0a0049
-int color abc_primary_text_material_light 0x7f0a004a
-int color abc_search_url_text 0x7f0a004b
-int color abc_search_url_text_normal 0x7f0a0001
-int color abc_search_url_text_pressed 0x7f0a0002
-int color abc_search_url_text_selected 0x7f0a0003
-int color abc_secondary_text_material_dark 0x7f0a004c
-int color abc_secondary_text_material_light 0x7f0a004d
-int color accent_material_dark 0x7f0a0004
-int color accent_material_light 0x7f0a0005
-int color background_floating_material_dark 0x7f0a0006
-int color background_floating_material_light 0x7f0a0007
-int color background_material_dark 0x7f0a0008
-int color background_material_light 0x7f0a0009
-int color bright_foreground_disabled_material_dark 0x7f0a000a
-int color bright_foreground_disabled_material_light 0x7f0a000b
-int color bright_foreground_inverse_material_dark 0x7f0a000c
-int color bright_foreground_inverse_material_light 0x7f0a000d
-int color bright_foreground_material_dark 0x7f0a000e
-int color bright_foreground_material_light 0x7f0a000f
-int color button_material_dark 0x7f0a0010
-int color button_material_light 0x7f0a0011
-int color design_fab_shadow_end_color 0x7f0a0012
-int color design_fab_shadow_mid_color 0x7f0a0013
-int color design_fab_shadow_start_color 0x7f0a0014
-int color design_fab_stroke_end_inner_color 0x7f0a0015
-int color design_fab_stroke_end_outer_color 0x7f0a0016
-int color design_fab_stroke_top_inner_color 0x7f0a0017
-int color design_fab_stroke_top_outer_color 0x7f0a0018
-int color design_snackbar_background_color 0x7f0a0019
-int color design_textinput_error_color_dark 0x7f0a001a
-int color design_textinput_error_color_light 0x7f0a001b
-int color dim_foreground_disabled_material_dark 0x7f0a001c
-int color dim_foreground_disabled_material_light 0x7f0a001d
-int color dim_foreground_material_dark 0x7f0a001e
-int color dim_foreground_material_light 0x7f0a001f
-int color foreground_material_dark 0x7f0a0020
-int color foreground_material_light 0x7f0a0021
-int color highlighted_text_material_dark 0x7f0a0022
-int color highlighted_text_material_light 0x7f0a0023
-int color hint_foreground_material_dark 0x7f0a0024
-int color hint_foreground_material_light 0x7f0a0025
-int color material_blue_grey_800 0x7f0a0026
-int color material_blue_grey_900 0x7f0a0027
-int color material_blue_grey_950 0x7f0a0028
-int color material_deep_teal_200 0x7f0a0029
-int color material_deep_teal_500 0x7f0a002a
-int color material_grey_100 0x7f0a002b
-int color material_grey_300 0x7f0a002c
-int color material_grey_50 0x7f0a002d
-int color material_grey_600 0x7f0a002e
-int color material_grey_800 0x7f0a002f
-int color material_grey_850 0x7f0a0030
-int color material_grey_900 0x7f0a0031
-int color primary_dark_material_dark 0x7f0a0032
-int color primary_dark_material_light 0x7f0a0033
-int color primary_material_dark 0x7f0a0034
-int color primary_material_light 0x7f0a0035
-int color primary_text_default_material_dark 0x7f0a0036
-int color primary_text_default_material_light 0x7f0a0037
-int color primary_text_disabled_material_dark 0x7f0a0038
-int color primary_text_disabled_material_light 0x7f0a0039
-int color ripple_material_dark 0x7f0a003a
-int color ripple_material_light 0x7f0a003b
-int color secondary_text_default_material_dark 0x7f0a003c
-int color secondary_text_default_material_light 0x7f0a003d
-int color secondary_text_disabled_material_dark 0x7f0a003e
-int color secondary_text_disabled_material_light 0x7f0a003f
-int color switch_thumb_disabled_material_dark 0x7f0a0040
-int color switch_thumb_disabled_material_light 0x7f0a0041
-int color switch_thumb_material_dark 0x7f0a004e
-int color switch_thumb_material_light 0x7f0a004f
-int color switch_thumb_normal_material_dark 0x7f0a0042
-int color switch_thumb_normal_material_light 0x7f0a0043
-int dimen abc_action_bar_content_inset_material 0x7f07000d
-int dimen abc_action_bar_default_height_material 0x7f070001
-int dimen abc_action_bar_default_padding_end_material 0x7f07000e
-int dimen abc_action_bar_default_padding_start_material 0x7f07000f
-int dimen abc_action_bar_icon_vertical_padding_material 0x7f070019
-int dimen abc_action_bar_overflow_padding_end_material 0x7f07001a
-int dimen abc_action_bar_overflow_padding_start_material 0x7f07001b
-int dimen abc_action_bar_progress_bar_size 0x7f070002
-int dimen abc_action_bar_stacked_max_height 0x7f07001c
-int dimen abc_action_bar_stacked_tab_max_width 0x7f07001d
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07001e
-int dimen abc_action_bar_subtitle_top_margin_material 0x7f07001f
-int dimen abc_action_button_min_height_material 0x7f070020
-int dimen abc_action_button_min_width_material 0x7f070021
-int dimen abc_action_button_min_width_overflow_material 0x7f070022
-int dimen abc_alert_dialog_button_bar_height 0x7f070000
-int dimen abc_button_inset_horizontal_material 0x7f070023
-int dimen abc_button_inset_vertical_material 0x7f070024
-int dimen abc_button_padding_horizontal_material 0x7f070025
-int dimen abc_button_padding_vertical_material 0x7f070026
-int dimen abc_config_prefDialogWidth 0x7f070005
-int dimen abc_control_corner_material 0x7f070027
-int dimen abc_control_inset_material 0x7f070028
-int dimen abc_control_padding_material 0x7f070029
-int dimen abc_dialog_fixed_height_major 0x7f070006
-int dimen abc_dialog_fixed_height_minor 0x7f070007
-int dimen abc_dialog_fixed_width_major 0x7f070008
-int dimen abc_dialog_fixed_width_minor 0x7f070009
-int dimen abc_dialog_list_padding_vertical_material 0x7f07002a
-int dimen abc_dialog_min_width_major 0x7f07000a
-int dimen abc_dialog_min_width_minor 0x7f07000b
-int dimen abc_dialog_padding_material 0x7f07002b
-int dimen abc_dialog_padding_top_material 0x7f07002c
-int dimen abc_disabled_alpha_material_dark 0x7f07002d
-int dimen abc_disabled_alpha_material_light 0x7f07002e
-int dimen abc_dropdownitem_icon_width 0x7f07002f
-int dimen abc_dropdownitem_text_padding_left 0x7f070030
-int dimen abc_dropdownitem_text_padding_right 0x7f070031
-int dimen abc_edit_text_inset_bottom_material 0x7f070032
-int dimen abc_edit_text_inset_horizontal_material 0x7f070033
-int dimen abc_edit_text_inset_top_material 0x7f070034
-int dimen abc_floating_window_z 0x7f070035
-int dimen abc_list_item_padding_horizontal_material 0x7f070036
-int dimen abc_panel_menu_list_width 0x7f070037
-int dimen abc_search_view_preferred_width 0x7f070038
-int dimen abc_search_view_text_min_width 0x7f07000c
-int dimen abc_seekbar_track_background_height_material 0x7f070039
-int dimen abc_seekbar_track_progress_height_material 0x7f07003a
-int dimen abc_select_dialog_padding_start_material 0x7f07003b
-int dimen abc_switch_padding 0x7f070018
-int dimen abc_text_size_body_1_material 0x7f07003c
-int dimen abc_text_size_body_2_material 0x7f07003d
-int dimen abc_text_size_button_material 0x7f07003e
-int dimen abc_text_size_caption_material 0x7f07003f
-int dimen abc_text_size_display_1_material 0x7f070040
-int dimen abc_text_size_display_2_material 0x7f070041
-int dimen abc_text_size_display_3_material 0x7f070042
-int dimen abc_text_size_display_4_material 0x7f070043
-int dimen abc_text_size_headline_material 0x7f070044
-int dimen abc_text_size_large_material 0x7f070045
-int dimen abc_text_size_medium_material 0x7f070046
-int dimen abc_text_size_menu_material 0x7f070047
-int dimen abc_text_size_small_material 0x7f070048
-int dimen abc_text_size_subhead_material 0x7f070049
-int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
-int dimen abc_text_size_title_material 0x7f07004a
-int dimen abc_text_size_title_material_toolbar 0x7f070004
-int dimen design_appbar_elevation 0x7f07004b
-int dimen design_bottom_sheet_modal_elevation 0x7f07004c
-int dimen design_bottom_sheet_modal_peek_height 0x7f07004d
-int dimen design_fab_border_width 0x7f07004e
-int dimen design_fab_elevation 0x7f07004f
-int dimen design_fab_image_size 0x7f070050
-int dimen design_fab_size_mini 0x7f070051
-int dimen design_fab_size_normal 0x7f070052
-int dimen design_fab_translation_z_pressed 0x7f070053
-int dimen design_navigation_elevation 0x7f070054
-int dimen design_navigation_icon_padding 0x7f070055
-int dimen design_navigation_icon_size 0x7f070056
-int dimen design_navigation_max_width 0x7f070010
-int dimen design_navigation_padding_bottom 0x7f070057
-int dimen design_navigation_separator_vertical_padding 0x7f070058
-int dimen design_snackbar_action_inline_max_width 0x7f070011
-int dimen design_snackbar_background_corner_radius 0x7f070012
-int dimen design_snackbar_elevation 0x7f070059
-int dimen design_snackbar_extra_spacing_horizontal 0x7f070013
-int dimen design_snackbar_max_width 0x7f070014
-int dimen design_snackbar_min_width 0x7f070015
-int dimen design_snackbar_padding_horizontal 0x7f07005a
-int dimen design_snackbar_padding_vertical 0x7f07005b
-int dimen design_snackbar_padding_vertical_2lines 0x7f070016
-int dimen design_snackbar_text_size 0x7f07005c
-int dimen design_tab_max_width 0x7f07005d
-int dimen design_tab_scrollable_min_width 0x7f070017
-int dimen design_tab_text_size 0x7f07005e
-int dimen design_tab_text_size_2line 0x7f07005f
-int dimen disabled_alpha_material_dark 0x7f070060
-int dimen disabled_alpha_material_light 0x7f070061
-int dimen highlight_alpha_material_colored 0x7f070062
-int dimen highlight_alpha_material_dark 0x7f070063
-int dimen highlight_alpha_material_light 0x7f070064
-int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070065
-int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070066
-int dimen item_touch_helper_swipe_escape_velocity 0x7f070067
-int dimen notification_large_icon_height 0x7f070068
-int dimen notification_large_icon_width 0x7f070069
-int dimen notification_subtext_size 0x7f07006a
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
-int drawable abc_action_bar_item_background_material 0x7f020001
-int drawable abc_btn_borderless_material 0x7f020002
-int drawable abc_btn_check_material 0x7f020003
-int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
-int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
-int drawable abc_btn_colored_material 0x7f020006
-int drawable abc_btn_default_mtrl_shape 0x7f020007
-int drawable abc_btn_radio_material 0x7f020008
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
-int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
-int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
-int drawable abc_cab_background_internal_bg 0x7f02000f
-int drawable abc_cab_background_top_material 0x7f020010
-int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
-int drawable abc_control_background_material 0x7f020012
-int drawable abc_dialog_material_background_dark 0x7f020013
-int drawable abc_dialog_material_background_light 0x7f020014
-int drawable abc_edit_text_material 0x7f020015
-int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
-int drawable abc_ic_clear_mtrl_alpha 0x7f020017
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
-int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
-int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
-int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
-int drawable abc_ic_star_black_16dp 0x7f020021
-int drawable abc_ic_star_black_36dp 0x7f020022
-int drawable abc_ic_star_half_black_16dp 0x7f020023
-int drawable abc_ic_star_half_black_36dp 0x7f020024
-int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
-int drawable abc_item_background_holo_dark 0x7f020026
-int drawable abc_item_background_holo_light 0x7f020027
-int drawable abc_list_divider_mtrl_alpha 0x7f020028
-int drawable abc_list_focused_holo 0x7f020029
-int drawable abc_list_longpressed_holo 0x7f02002a
-int drawable abc_list_pressed_holo_dark 0x7f02002b
-int drawable abc_list_pressed_holo_light 0x7f02002c
-int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
-int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
-int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
-int drawable abc_list_selector_disabled_holo_light 0x7f020030
-int drawable abc_list_selector_holo_dark 0x7f020031
-int drawable abc_list_selector_holo_light 0x7f020032
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
-int drawable abc_popup_background_mtrl_mult 0x7f020034
-int drawable abc_ratingbar_full_material 0x7f020035
-int drawable abc_ratingbar_indicator_material 0x7f020036
-int drawable abc_ratingbar_small_material 0x7f020037
-int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
-int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
-int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
-int drawable abc_seekbar_thumb_material 0x7f02003d
-int drawable abc_seekbar_track_material 0x7f02003e
-int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
-int drawable abc_spinner_textfield_background_material 0x7f020040
-int drawable abc_switch_thumb_material 0x7f020041
-int drawable abc_switch_track_mtrl_alpha 0x7f020042
-int drawable abc_tab_indicator_material 0x7f020043
-int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
-int drawable abc_text_cursor_material 0x7f020045
-int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
-int drawable abc_textfield_default_mtrl_alpha 0x7f020047
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
-int drawable abc_textfield_search_material 0x7f02004a
-int drawable design_fab_background 0x7f02004b
-int drawable design_snackbar_background 0x7f02004c
-int drawable notification_template_icon_bg 0x7f02004d
-int id action0 0x7f0b0072
-int id action_bar 0x7f0b005a
-int id action_bar_activity_content 0x7f0b0000
-int id action_bar_container 0x7f0b0059
-int id action_bar_root 0x7f0b0055
-int id action_bar_spinner 0x7f0b0001
-int id action_bar_subtitle 0x7f0b003b
-int id action_bar_title 0x7f0b003a
-int id action_context_bar 0x7f0b005b
-int id action_divider 0x7f0b0076
-int id action_menu_divider 0x7f0b0002
-int id action_menu_presenter 0x7f0b0003
-int id action_mode_bar 0x7f0b0057
-int id action_mode_bar_stub 0x7f0b0056
-int id action_mode_close_button 0x7f0b003c
-int id activity_chooser_view_content 0x7f0b003d
-int id alertTitle 0x7f0b0049
-int id always 0x7f0b0033
-int id beginning 0x7f0b0031
-int id bottom 0x7f0b001d
-int id buttonPanel 0x7f0b0044
-int id cancel_action 0x7f0b0073
-int id center 0x7f0b001e
-int id center_horizontal 0x7f0b001f
-int id center_vertical 0x7f0b0020
-int id checkbox 0x7f0b0052
-int id chronometer 0x7f0b0079
-int id clip_horizontal 0x7f0b002c
-int id clip_vertical 0x7f0b002d
-int id collapseActionView 0x7f0b0034
-int id contentPanel 0x7f0b004a
-int id custom 0x7f0b0050
-int id customPanel 0x7f0b004f
-int id decor_content_parent 0x7f0b0058
-int id default_activity_button 0x7f0b0040
-int id design_bottom_sheet 0x7f0b006a
-int id design_menu_item_action_area 0x7f0b0071
-int id design_menu_item_action_area_stub 0x7f0b0070
-int id design_menu_item_text 0x7f0b006f
-int id design_navigation_view 0x7f0b006e
-int id disableHome 0x7f0b000e
-int id edit_query 0x7f0b005c
-int id end 0x7f0b0021
-int id end_padder 0x7f0b007e
-int id enterAlways 0x7f0b0015
-int id enterAlwaysCollapsed 0x7f0b0016
-int id exitUntilCollapsed 0x7f0b0017
-int id expand_activities_button 0x7f0b003e
-int id expanded_menu 0x7f0b0051
-int id fill 0x7f0b002e
-int id fill_horizontal 0x7f0b002f
-int id fill_vertical 0x7f0b0022
-int id fixed 0x7f0b0038
-int id home 0x7f0b0004
-int id homeAsUp 0x7f0b000f
-int id icon 0x7f0b0042
-int id ifRoom 0x7f0b0035
-int id image 0x7f0b003f
-int id info 0x7f0b007d
-int id item_touch_helper_previous_elevation 0x7f0b0005
-int id left 0x7f0b0023
-int id line1 0x7f0b0077
-int id line3 0x7f0b007b
-int id listMode 0x7f0b000b
-int id list_item 0x7f0b0041
-int id media_actions 0x7f0b0075
-int id middle 0x7f0b0032
-int id mini 0x7f0b0030
-int id multiply 0x7f0b0027
-int id navigation_header_container 0x7f0b006d
-int id never 0x7f0b0036
-int id none 0x7f0b0010
-int id normal 0x7f0b000c
-int id parallax 0x7f0b001b
-int id parentPanel 0x7f0b0046
-int id pin 0x7f0b001c
-int id progress_circular 0x7f0b0006
-int id progress_horizontal 0x7f0b0007
-int id radio 0x7f0b0054
-int id right 0x7f0b0024
-int id screen 0x7f0b0028
-int id scroll 0x7f0b0018
-int id scrollIndicatorDown 0x7f0b004e
-int id scrollIndicatorUp 0x7f0b004b
-int id scrollView 0x7f0b004c
-int id scrollable 0x7f0b0039
-int id search_badge 0x7f0b005e
-int id search_bar 0x7f0b005d
-int id search_button 0x7f0b005f
-int id search_close_btn 0x7f0b0064
-int id search_edit_frame 0x7f0b0060
-int id search_go_btn 0x7f0b0066
-int id search_mag_icon 0x7f0b0061
-int id search_plate 0x7f0b0062
-int id search_src_text 0x7f0b0063
-int id search_voice_btn 0x7f0b0067
-int id select_dialog_listview 0x7f0b0068
-int id shortcut 0x7f0b0053
-int id showCustom 0x7f0b0011
-int id showHome 0x7f0b0012
-int id showTitle 0x7f0b0013
-int id snackbar_action 0x7f0b006c
-int id snackbar_text 0x7f0b006b
-int id snap 0x7f0b0019
-int id spacer 0x7f0b0045
-int id split_action_bar 0x7f0b0008
-int id src_atop 0x7f0b0029
-int id src_in 0x7f0b002a
-int id src_over 0x7f0b002b
-int id start 0x7f0b0025
-int id status_bar_latest_event_content 0x7f0b0074
-int id submit_area 0x7f0b0065
-int id tabMode 0x7f0b000d
-int id text 0x7f0b007c
-int id text2 0x7f0b007a
-int id textSpacerNoButtons 0x7f0b004d
-int id time 0x7f0b0078
-int id title 0x7f0b0043
-int id title_template 0x7f0b0048
-int id top 0x7f0b0026
-int id topPanel 0x7f0b0047
-int id touch_outside 0x7f0b0069
-int id up 0x7f0b0009
-int id useLogo 0x7f0b0014
-int id view_offset_helper 0x7f0b000a
-int id withText 0x7f0b0037
-int id wrap_content 0x7f0b001a
-int integer abc_config_activityDefaultDur 0x7f090002
-int integer abc_config_activityShortDur 0x7f090003
-int integer abc_max_action_buttons 0x7f090000
-int integer bottom_sheet_slide_duration 0x7f090004
-int integer cancel_button_image_alpha 0x7f090005
-int integer design_snackbar_text_max_lines 0x7f090001
-int integer status_bar_notification_info_maxnum 0x7f090006
-int layout abc_action_bar_title_item 0x7f030000
-int layout abc_action_bar_up_container 0x7f030001
-int layout abc_action_bar_view_list_nav_layout 0x7f030002
-int layout abc_action_menu_item_layout 0x7f030003
-int layout abc_action_menu_layout 0x7f030004
-int layout abc_action_mode_bar 0x7f030005
-int layout abc_action_mode_close_item_material 0x7f030006
-int layout abc_activity_chooser_view 0x7f030007
-int layout abc_activity_chooser_view_list_item 0x7f030008
-int layout abc_alert_dialog_button_bar_material 0x7f030009
-int layout abc_alert_dialog_material 0x7f03000a
-int layout abc_dialog_title_material 0x7f03000b
-int layout abc_expanded_menu_layout 0x7f03000c
-int layout abc_list_menu_item_checkbox 0x7f03000d
-int layout abc_list_menu_item_icon 0x7f03000e
-int layout abc_list_menu_item_layout 0x7f03000f
-int layout abc_list_menu_item_radio 0x7f030010
-int layout abc_popup_menu_item_layout 0x7f030011
-int layout abc_screen_content_include 0x7f030012
-int layout abc_screen_simple 0x7f030013
-int layout abc_screen_simple_overlay_action_mode 0x7f030014
-int layout abc_screen_toolbar 0x7f030015
-int layout abc_search_dropdown_item_icons_2line 0x7f030016
-int layout abc_search_view 0x7f030017
-int layout abc_select_dialog_material 0x7f030018
-int layout design_bottom_sheet_dialog 0x7f030019
-int layout design_layout_snackbar 0x7f03001a
-int layout design_layout_snackbar_include 0x7f03001b
-int layout design_layout_tab_icon 0x7f03001c
-int layout design_layout_tab_text 0x7f03001d
-int layout design_menu_item_action_area 0x7f03001e
-int layout design_navigation_item 0x7f03001f
-int layout design_navigation_item_header 0x7f030020
-int layout design_navigation_item_separator 0x7f030021
-int layout design_navigation_item_subheader 0x7f030022
-int layout design_navigation_menu 0x7f030023
-int layout design_navigation_menu_item 0x7f030024
-int layout notification_media_action 0x7f030025
-int layout notification_media_cancel_action 0x7f030026
-int layout notification_template_big_media 0x7f030027
-int layout notification_template_big_media_narrow 0x7f030028
-int layout notification_template_lines 0x7f030029
-int layout notification_template_media 0x7f03002a
-int layout notification_template_part_chronometer 0x7f03002b
-int layout notification_template_part_time 0x7f03002c
-int layout select_dialog_item_material 0x7f03002d
-int layout select_dialog_multichoice_material 0x7f03002e
-int layout select_dialog_singlechoice_material 0x7f03002f
-int layout support_simple_spinner_dropdown_item 0x7f030030
-int string abc_action_bar_home_description 0x7f050000
-int string abc_action_bar_home_description_format 0x7f050001
-int string abc_action_bar_home_subtitle_description_format 0x7f050002
-int string abc_action_bar_up_description 0x7f050003
-int string abc_action_menu_overflow_description 0x7f050004
-int string abc_action_mode_done 0x7f050005
-int string abc_activity_chooser_view_see_all 0x7f050006
-int string abc_activitychooserview_choose_application 0x7f050007
-int string abc_capital_off 0x7f050008
-int string abc_capital_on 0x7f050009
-int string abc_search_hint 0x7f05000a
-int string abc_searchview_description_clear 0x7f05000b
-int string abc_searchview_description_query 0x7f05000c
-int string abc_searchview_description_search 0x7f05000d
-int string abc_searchview_description_submit 0x7f05000e
-int string abc_searchview_description_voice 0x7f05000f
-int string abc_shareactionprovider_share_with 0x7f050010
-int string abc_shareactionprovider_share_with_application 0x7f050011
-int string abc_toolbar_collapse_description 0x7f050012
-int string appbar_scrolling_view_behavior 0x7f050014
-int string bottom_sheet_behavior 0x7f050015
-int string character_counter_pattern 0x7f050016
-int string status_bar_notification_info_overflow 0x7f050013
-int style AlertDialog_AppCompat 0x7f080087
-int style AlertDialog_AppCompat_Light 0x7f080088
-int style Animation_AppCompat_Dialog 0x7f080089
-int style Animation_AppCompat_DropDownUp 0x7f08008a
-int style Animation_Design_BottomSheetDialog 0x7f08008b
-int style Base_AlertDialog_AppCompat 0x7f08008c
-int style Base_AlertDialog_AppCompat_Light 0x7f08008d
-int style Base_Animation_AppCompat_Dialog 0x7f08008e
-int style Base_Animation_AppCompat_DropDownUp 0x7f08008f
-int style Base_DialogWindowTitle_AppCompat 0x7f080090
-int style Base_DialogWindowTitleBackground_AppCompat 0x7f080091
-int style Base_TextAppearance_AppCompat 0x7f080037
-int style Base_TextAppearance_AppCompat_Body1 0x7f080038
-int style Base_TextAppearance_AppCompat_Body2 0x7f080039
-int style Base_TextAppearance_AppCompat_Button 0x7f080021
-int style Base_TextAppearance_AppCompat_Caption 0x7f08003a
-int style Base_TextAppearance_AppCompat_Display1 0x7f08003b
-int style Base_TextAppearance_AppCompat_Display2 0x7f08003c
-int style Base_TextAppearance_AppCompat_Display3 0x7f08003d
-int style Base_TextAppearance_AppCompat_Display4 0x7f08003e
-int style Base_TextAppearance_AppCompat_Headline 0x7f08003f
-int style Base_TextAppearance_AppCompat_Inverse 0x7f08000c
-int style Base_TextAppearance_AppCompat_Large 0x7f080040
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f08000d
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080041
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080042
-int style Base_TextAppearance_AppCompat_Medium 0x7f080043
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f08000e
-int style Base_TextAppearance_AppCompat_Menu 0x7f080044
-int style Base_TextAppearance_AppCompat_SearchResult 0x7f080092
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080045
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080046
-int style Base_TextAppearance_AppCompat_Small 0x7f080047
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f08000f
-int style Base_TextAppearance_AppCompat_Subhead 0x7f080048
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080010
-int style Base_TextAppearance_AppCompat_Title 0x7f080049
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080011
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080080
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f08004a
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08004b
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08004c
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08004d
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08004e
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08004f
-int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080050
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080081
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080093
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080051
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080052
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080053
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080054
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080094
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080055
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080056
-int style Base_Theme_AppCompat 0x7f080057
-int style Base_Theme_AppCompat_CompactMenu 0x7f080095
-int style Base_Theme_AppCompat_Dialog 0x7f080012
-int style Base_Theme_AppCompat_Dialog_Alert 0x7f080096
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f080097
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f080098
-int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080002
-int style Base_Theme_AppCompat_Light 0x7f080058
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f080099
-int style Base_Theme_AppCompat_Light_Dialog 0x7f080013
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08009a
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08009b
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08009c
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080003
-int style Base_ThemeOverlay_AppCompat 0x7f08009d
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f08009e
-int style Base_ThemeOverlay_AppCompat_Dark 0x7f08009f
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800a0
-int style Base_ThemeOverlay_AppCompat_Light 0x7f0800a1
-int style Base_V11_Theme_AppCompat_Dialog 0x7f080014
-int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f080015
-int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f08001d
-int style Base_V12_Widget_AppCompat_EditText 0x7f08001e
-int style Base_V21_Theme_AppCompat 0x7f080059
-int style Base_V21_Theme_AppCompat_Dialog 0x7f08005a
-int style Base_V21_Theme_AppCompat_Light 0x7f08005b
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08005c
-int style Base_V22_Theme_AppCompat 0x7f08007e
-int style Base_V22_Theme_AppCompat_Light 0x7f08007f
-int style Base_V23_Theme_AppCompat 0x7f080082
-int style Base_V23_Theme_AppCompat_Light 0x7f080083
-int style Base_V7_Theme_AppCompat 0x7f0800a2
-int style Base_V7_Theme_AppCompat_Dialog 0x7f0800a3
-int style Base_V7_Theme_AppCompat_Light 0x7f0800a4
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0800a5
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0800a6
-int style Base_V7_Widget_AppCompat_EditText 0x7f0800a7
-int style Base_Widget_AppCompat_ActionBar 0x7f0800a8
-int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0800a9
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0800aa
-int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08005d
-int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08005e
-int style Base_Widget_AppCompat_ActionButton 0x7f08005f
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080060
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080061
-int style Base_Widget_AppCompat_ActionMode 0x7f0800ab
-int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800ac
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f08001f
-int style Base_Widget_AppCompat_Button 0x7f080062
-int style Base_Widget_AppCompat_Button_Borderless 0x7f080063
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080064
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800ad
-int style Base_Widget_AppCompat_Button_Colored 0x7f080084
-int style Base_Widget_AppCompat_Button_Small 0x7f080065
-int style Base_Widget_AppCompat_ButtonBar 0x7f080066
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800ae
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080067
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080068
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800af
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800b0
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080069
-int style Base_Widget_AppCompat_EditText 0x7f080020
-int style Base_Widget_AppCompat_ImageButton 0x7f08006a
-int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800b1
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800b2
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800b3
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f08006b
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08006c
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08006d
-int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08006e
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08006f
-int style Base_Widget_AppCompat_ListPopupWindow 0x7f080070
-int style Base_Widget_AppCompat_ListView 0x7f080071
-int style Base_Widget_AppCompat_ListView_DropDown 0x7f080072
-int style Base_Widget_AppCompat_ListView_Menu 0x7f080073
-int style Base_Widget_AppCompat_PopupMenu 0x7f080074
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080075
-int style Base_Widget_AppCompat_PopupWindow 0x7f0800b4
-int style Base_Widget_AppCompat_ProgressBar 0x7f080016
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f080017
-int style Base_Widget_AppCompat_RatingBar 0x7f080076
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f080085
-int style Base_Widget_AppCompat_RatingBar_Small 0x7f080086
-int style Base_Widget_AppCompat_SearchView 0x7f0800b5
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800b6
-int style Base_Widget_AppCompat_SeekBar 0x7f080077
-int style Base_Widget_AppCompat_Spinner 0x7f080078
-int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080004
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080079
-int style Base_Widget_AppCompat_Toolbar 0x7f0800b7
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f08007a
-int style Base_Widget_Design_TabLayout 0x7f0800b8
-int style Platform_AppCompat 0x7f080018
-int style Platform_AppCompat_Light 0x7f080019
-int style Platform_ThemeOverlay_AppCompat 0x7f08007b
-int style Platform_ThemeOverlay_AppCompat_Dark 0x7f08007c
-int style Platform_ThemeOverlay_AppCompat_Light 0x7f08007d
-int style Platform_V11_AppCompat 0x7f08001a
-int style Platform_V11_AppCompat_Light 0x7f08001b
-int style Platform_V14_AppCompat 0x7f080022
-int style Platform_V14_AppCompat_Light 0x7f080023
-int style Platform_Widget_AppCompat_Spinner 0x7f08001c
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080029
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f08002a
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f08002b
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08002c
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08002d
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08002e
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08002f
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080030
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080031
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080032
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080033
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080034
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f080035
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f080036
-int style TextAppearance_AppCompat 0x7f0800b9
-int style TextAppearance_AppCompat_Body1 0x7f0800ba
-int style TextAppearance_AppCompat_Body2 0x7f0800bb
-int style TextAppearance_AppCompat_Button 0x7f0800bc
-int style TextAppearance_AppCompat_Caption 0x7f0800bd
-int style TextAppearance_AppCompat_Display1 0x7f0800be
-int style TextAppearance_AppCompat_Display2 0x7f0800bf
-int style TextAppearance_AppCompat_Display3 0x7f0800c0
-int style TextAppearance_AppCompat_Display4 0x7f0800c1
-int style TextAppearance_AppCompat_Headline 0x7f0800c2
-int style TextAppearance_AppCompat_Inverse 0x7f0800c3
-int style TextAppearance_AppCompat_Large 0x7f0800c4
-int style TextAppearance_AppCompat_Large_Inverse 0x7f0800c5
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800c6
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800c7
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800c8
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800c9
-int style TextAppearance_AppCompat_Medium 0x7f0800ca
-int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800cb
-int style TextAppearance_AppCompat_Menu 0x7f0800cc
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800cd
-int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800ce
-int style TextAppearance_AppCompat_Small 0x7f0800cf
-int style TextAppearance_AppCompat_Small_Inverse 0x7f0800d0
-int style TextAppearance_AppCompat_Subhead 0x7f0800d1
-int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800d2
-int style TextAppearance_AppCompat_Title 0x7f0800d3
-int style TextAppearance_AppCompat_Title_Inverse 0x7f0800d4
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800d5
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800d6
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800d7
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800d8
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800d9
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800da
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800db
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800dc
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800dd
-int style TextAppearance_AppCompat_Widget_Button 0x7f0800de
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800df
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800e0
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800e1
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800e2
-int style TextAppearance_AppCompat_Widget_Switch 0x7f0800e3
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800e4
-int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0800e5
-int style TextAppearance_Design_Counter 0x7f0800e6
-int style TextAppearance_Design_Counter_Overflow 0x7f0800e7
-int style TextAppearance_Design_Error 0x7f0800e8
-int style TextAppearance_Design_Hint 0x7f0800e9
-int style TextAppearance_Design_Snackbar_Message 0x7f0800ea
-int style TextAppearance_Design_Tab 0x7f0800eb
-int style TextAppearance_StatusBar_EventContent 0x7f080024
-int style TextAppearance_StatusBar_EventContent_Info 0x7f080025
-int style TextAppearance_StatusBar_EventContent_Line2 0x7f080026
-int style TextAppearance_StatusBar_EventContent_Time 0x7f080027
-int style TextAppearance_StatusBar_EventContent_Title 0x7f080028
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800ec
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800ed
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800ee
-int style Theme_AppCompat 0x7f0800ef
-int style Theme_AppCompat_CompactMenu 0x7f0800f0
-int style Theme_AppCompat_DayNight 0x7f080005
-int style Theme_AppCompat_DayNight_DarkActionBar 0x7f080006
-int style Theme_AppCompat_DayNight_Dialog 0x7f080007
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f080008
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f080009
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f08000a
-int style Theme_AppCompat_DayNight_NoActionBar 0x7f08000b
-int style Theme_AppCompat_Dialog 0x7f0800f1
-int style Theme_AppCompat_Dialog_Alert 0x7f0800f2
-int style Theme_AppCompat_Dialog_MinWidth 0x7f0800f3
-int style Theme_AppCompat_DialogWhenLarge 0x7f0800f4
-int style Theme_AppCompat_Light 0x7f0800f5
-int style Theme_AppCompat_Light_DarkActionBar 0x7f0800f6
-int style Theme_AppCompat_Light_Dialog 0x7f0800f7
-int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800f8
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800f9
-int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800fa
-int style Theme_AppCompat_Light_NoActionBar 0x7f0800fb
-int style Theme_AppCompat_NoActionBar 0x7f0800fc
-int style Theme_Design 0x7f0800fd
-int style Theme_Design_BottomSheetDialog 0x7f0800fe
-int style Theme_Design_Light 0x7f0800ff
-int style Theme_Design_Light_BottomSheetDialog 0x7f080100
-int style Theme_Design_Light_NoActionBar 0x7f080101
-int style Theme_Design_NoActionBar 0x7f080102
-int style ThemeOverlay_AppCompat 0x7f080103
-int style ThemeOverlay_AppCompat_ActionBar 0x7f080104
-int style ThemeOverlay_AppCompat_Dark 0x7f080105
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080106
-int style ThemeOverlay_AppCompat_Light 0x7f080107
-int style Widget_AppCompat_ActionBar 0x7f080108
-int style Widget_AppCompat_ActionBar_Solid 0x7f080109
-int style Widget_AppCompat_ActionBar_TabBar 0x7f08010a
-int style Widget_AppCompat_ActionBar_TabText 0x7f08010b
-int style Widget_AppCompat_ActionBar_TabView 0x7f08010c
-int style Widget_AppCompat_ActionButton 0x7f08010d
-int style Widget_AppCompat_ActionButton_CloseMode 0x7f08010e
-int style Widget_AppCompat_ActionButton_Overflow 0x7f08010f
-int style Widget_AppCompat_ActionMode 0x7f080110
-int style Widget_AppCompat_ActivityChooserView 0x7f080111
-int style Widget_AppCompat_AutoCompleteTextView 0x7f080112
-int style Widget_AppCompat_Button 0x7f080113
-int style Widget_AppCompat_Button_Borderless 0x7f080114
-int style Widget_AppCompat_Button_Borderless_Colored 0x7f080115
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080116
-int style Widget_AppCompat_Button_Colored 0x7f080117
-int style Widget_AppCompat_Button_Small 0x7f080118
-int style Widget_AppCompat_ButtonBar 0x7f080119
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f08011a
-int style Widget_AppCompat_CompoundButton_CheckBox 0x7f08011b
-int style Widget_AppCompat_CompoundButton_RadioButton 0x7f08011c
-int style Widget_AppCompat_CompoundButton_Switch 0x7f08011d
-int style Widget_AppCompat_DrawerArrowToggle 0x7f08011e
-int style Widget_AppCompat_DropDownItem_Spinner 0x7f08011f
-int style Widget_AppCompat_EditText 0x7f080120
-int style Widget_AppCompat_ImageButton 0x7f080121
-int style Widget_AppCompat_Light_ActionBar 0x7f080122
-int style Widget_AppCompat_Light_ActionBar_Solid 0x7f080123
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f080124
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f080125
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080126
-int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080127
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080128
-int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080129
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f08012a
-int style Widget_AppCompat_Light_ActionButton 0x7f08012b
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f08012c
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f08012d
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f08012e
-int style Widget_AppCompat_Light_ActivityChooserView 0x7f08012f
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080130
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080131
-int style Widget_AppCompat_Light_ListPopupWindow 0x7f080132
-int style Widget_AppCompat_Light_ListView_DropDown 0x7f080133
-int style Widget_AppCompat_Light_PopupMenu 0x7f080134
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080135
-int style Widget_AppCompat_Light_SearchView 0x7f080136
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080137
-int style Widget_AppCompat_ListPopupWindow 0x7f080138
-int style Widget_AppCompat_ListView 0x7f080139
-int style Widget_AppCompat_ListView_DropDown 0x7f08013a
-int style Widget_AppCompat_ListView_Menu 0x7f08013b
-int style Widget_AppCompat_PopupMenu 0x7f08013c
-int style Widget_AppCompat_PopupMenu_Overflow 0x7f08013d
-int style Widget_AppCompat_PopupWindow 0x7f08013e
-int style Widget_AppCompat_ProgressBar 0x7f08013f
-int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080140
-int style Widget_AppCompat_RatingBar 0x7f080141
-int style Widget_AppCompat_RatingBar_Indicator 0x7f080142
-int style Widget_AppCompat_RatingBar_Small 0x7f080143
-int style Widget_AppCompat_SearchView 0x7f080144
-int style Widget_AppCompat_SearchView_ActionBar 0x7f080145
-int style Widget_AppCompat_SeekBar 0x7f080146
-int style Widget_AppCompat_Spinner 0x7f080147
-int style Widget_AppCompat_Spinner_DropDown 0x7f080148
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080149
-int style Widget_AppCompat_Spinner_Underlined 0x7f08014a
-int style Widget_AppCompat_TextView_SpinnerItem 0x7f08014b
-int style Widget_AppCompat_Toolbar 0x7f08014c
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f08014d
-int style Widget_Design_AppBarLayout 0x7f08014e
-int style Widget_Design_BottomSheet_Modal 0x7f08014f
-int style Widget_Design_CollapsingToolbar 0x7f080150
-int style Widget_Design_CoordinatorLayout 0x7f080151
-int style Widget_Design_FloatingActionButton 0x7f080152
-int style Widget_Design_NavigationView 0x7f080153
-int style Widget_Design_ScrimInsetsFrameLayout 0x7f080154
-int style Widget_Design_Snackbar 0x7f080155
-int style Widget_Design_TabLayout 0x7f080001
-int style Widget_Design_TextInputLayout 0x7f080156
-int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 }
-int styleable ActionBar_background 10
-int styleable ActionBar_backgroundSplit 12
-int styleable ActionBar_backgroundStacked 11
-int styleable ActionBar_contentInsetEnd 21
-int styleable ActionBar_contentInsetLeft 22
-int styleable ActionBar_contentInsetRight 23
-int styleable ActionBar_contentInsetStart 20
-int styleable ActionBar_customNavigationLayout 13
-int styleable ActionBar_displayOptions 3
-int styleable ActionBar_divider 9
-int styleable ActionBar_elevation 24
-int styleable ActionBar_height 0
-int styleable ActionBar_hideOnContentScroll 19
-int styleable ActionBar_homeAsUpIndicator 26
-int styleable ActionBar_homeLayout 14
-int styleable ActionBar_icon 7
-int styleable ActionBar_indeterminateProgressStyle 16
-int styleable ActionBar_itemPadding 18
-int styleable ActionBar_logo 8
-int styleable ActionBar_navigationMode 2
-int styleable ActionBar_popupTheme 25
-int styleable ActionBar_progressBarPadding 17
-int styleable ActionBar_progressBarStyle 15
-int styleable ActionBar_subtitle 4
-int styleable ActionBar_subtitleTextStyle 6
-int styleable ActionBar_title 1
-int styleable ActionBar_titleTextStyle 5
-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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
-int styleable ActionMode_background 3
-int styleable ActionMode_backgroundSplit 4
-int styleable ActionMode_closeItemLayout 5
-int styleable ActionMode_height 0
-int styleable ActionMode_subtitleTextStyle 2
-int styleable ActionMode_titleTextStyle 1
-int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
-int styleable ActivityChooserView_initialActivityCount 0
-int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonPanelSideLayout 1
-int styleable AlertDialog_listItemLayout 5
-int styleable AlertDialog_listLayout 2
-int styleable AlertDialog_multiChoiceItemLayout 3
-int styleable AlertDialog_singleChoiceItemLayout 4
-int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 }
-int styleable AppBarLayout_android_background 0
-int styleable AppBarLayout_elevation 1
-int styleable AppBarLayout_expanded 2
-int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 }
-int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0
-int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1
-int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int[] styleable AppCompatTextView { 0x01010034, 0x7f010028 }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_textAllCaps 1
-int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }
-int styleable AppCompatTheme_actionBarDivider 23
-int styleable AppCompatTheme_actionBarItemBackground 24
-int styleable AppCompatTheme_actionBarPopupTheme 17
-int styleable AppCompatTheme_actionBarSize 22
-int styleable AppCompatTheme_actionBarSplitStyle 19
-int styleable AppCompatTheme_actionBarStyle 18
-int styleable AppCompatTheme_actionBarTabBarStyle 13
-int styleable AppCompatTheme_actionBarTabStyle 12
-int styleable AppCompatTheme_actionBarTabTextStyle 14
-int styleable AppCompatTheme_actionBarTheme 20
-int styleable AppCompatTheme_actionBarWidgetTheme 21
-int styleable AppCompatTheme_actionButtonStyle 49
-int styleable AppCompatTheme_actionDropDownStyle 45
-int styleable AppCompatTheme_actionMenuTextAppearance 25
-int styleable AppCompatTheme_actionMenuTextColor 26
-int styleable AppCompatTheme_actionModeBackground 29
-int styleable AppCompatTheme_actionModeCloseButtonStyle 28
-int styleable AppCompatTheme_actionModeCloseDrawable 31
-int styleable AppCompatTheme_actionModeCopyDrawable 33
-int styleable AppCompatTheme_actionModeCutDrawable 32
-int styleable AppCompatTheme_actionModeFindDrawable 37
-int styleable AppCompatTheme_actionModePasteDrawable 34
-int styleable AppCompatTheme_actionModePopupWindowStyle 39
-int styleable AppCompatTheme_actionModeSelectAllDrawable 35
-int styleable AppCompatTheme_actionModeShareDrawable 36
-int styleable AppCompatTheme_actionModeSplitBackground 30
-int styleable AppCompatTheme_actionModeStyle 27
-int styleable AppCompatTheme_actionModeWebSearchDrawable 38
-int styleable AppCompatTheme_actionOverflowButtonStyle 15
-int styleable AppCompatTheme_actionOverflowMenuStyle 16
-int styleable AppCompatTheme_activityChooserViewStyle 57
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
-int styleable AppCompatTheme_alertDialogCenterButtons 93
-int styleable AppCompatTheme_alertDialogStyle 91
-int styleable AppCompatTheme_alertDialogTheme 94
-int styleable AppCompatTheme_android_windowAnimationStyle 1
-int styleable AppCompatTheme_android_windowIsFloating 0
-int styleable AppCompatTheme_autoCompleteTextViewStyle 99
-int styleable AppCompatTheme_borderlessButtonStyle 54
-int styleable AppCompatTheme_buttonBarButtonStyle 51
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
-int styleable AppCompatTheme_buttonBarStyle 50
-int styleable AppCompatTheme_buttonStyle 100
-int styleable AppCompatTheme_buttonStyleSmall 101
-int styleable AppCompatTheme_checkboxStyle 102
-int styleable AppCompatTheme_checkedTextViewStyle 103
-int styleable AppCompatTheme_colorAccent 84
-int styleable AppCompatTheme_colorButtonNormal 88
-int styleable AppCompatTheme_colorControlActivated 86
-int styleable AppCompatTheme_colorControlHighlight 87
-int styleable AppCompatTheme_colorControlNormal 85
-int styleable AppCompatTheme_colorPrimary 82
-int styleable AppCompatTheme_colorPrimaryDark 83
-int styleable AppCompatTheme_colorSwitchThumbNormal 89
-int styleable AppCompatTheme_controlBackground 90
-int styleable AppCompatTheme_dialogPreferredPadding 43
-int styleable AppCompatTheme_dialogTheme 42
-int styleable AppCompatTheme_dividerHorizontal 56
-int styleable AppCompatTheme_dividerVertical 55
-int styleable AppCompatTheme_dropDownListViewStyle 74
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
-int styleable AppCompatTheme_editTextBackground 63
-int styleable AppCompatTheme_editTextColor 62
-int styleable AppCompatTheme_editTextStyle 104
-int styleable AppCompatTheme_homeAsUpIndicator 48
-int styleable AppCompatTheme_imageButtonStyle 64
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
-int styleable AppCompatTheme_listDividerAlertDialog 44
-int styleable AppCompatTheme_listPopupWindowStyle 75
-int styleable AppCompatTheme_listPreferredItemHeight 69
-int styleable AppCompatTheme_listPreferredItemHeightLarge 71
-int styleable AppCompatTheme_listPreferredItemHeightSmall 70
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
-int styleable AppCompatTheme_listPreferredItemPaddingRight 73
-int styleable AppCompatTheme_panelBackground 78
-int styleable AppCompatTheme_panelMenuListTheme 80
-int styleable AppCompatTheme_panelMenuListWidth 79
-int styleable AppCompatTheme_popupMenuStyle 60
-int styleable AppCompatTheme_popupWindowStyle 61
-int styleable AppCompatTheme_radioButtonStyle 105
-int styleable AppCompatTheme_ratingBarStyle 106
-int styleable AppCompatTheme_ratingBarStyleIndicator 107
-int styleable AppCompatTheme_ratingBarStyleSmall 108
-int styleable AppCompatTheme_searchViewStyle 68
-int styleable AppCompatTheme_seekBarStyle 109
-int styleable AppCompatTheme_selectableItemBackground 52
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
-int styleable AppCompatTheme_spinnerDropDownItemStyle 47
-int styleable AppCompatTheme_spinnerStyle 110
-int styleable AppCompatTheme_switchStyle 111
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
-int styleable AppCompatTheme_textAppearanceListItem 76
-int styleable AppCompatTheme_textAppearanceListItemSmall 77
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
-int styleable AppCompatTheme_textColorAlertDialogListItem 95
-int styleable AppCompatTheme_textColorSearchUrl 67
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
-int styleable AppCompatTheme_toolbarStyle 58
-int styleable AppCompatTheme_windowActionBar 2
-int styleable AppCompatTheme_windowActionBarOverlay 4
-int styleable AppCompatTheme_windowActionModeOverlay 5
-int styleable AppCompatTheme_windowFixedHeightMajor 9
-int styleable AppCompatTheme_windowFixedHeightMinor 7
-int styleable AppCompatTheme_windowFixedWidthMajor 6
-int styleable AppCompatTheme_windowFixedWidthMinor 8
-int styleable AppCompatTheme_windowMinWidthMajor 10
-int styleable AppCompatTheme_windowMinWidthMinor 11
-int styleable AppCompatTheme_windowNoTitle 3
-int[] styleable BottomSheetBehavior_Params { 0x7f010097, 0x7f010098 }
-int styleable BottomSheetBehavior_Params_behavior_hideable 1
-int styleable BottomSheetBehavior_Params_behavior_peekHeight 0
-int[] styleable ButtonBarLayout { 0x7f010099 }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f01009a, 0x7f01009b }
-int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0
-int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1
-int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }
-int styleable CollapsingToolbarLayout_collapsedTitleGravity 11
-int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7
-int styleable CollapsingToolbarLayout_contentScrim 8
-int styleable CollapsingToolbarLayout_expandedTitleGravity 12
-int styleable CollapsingToolbarLayout_expandedTitleMargin 1
-int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
-int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4
-int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2
-int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3
-int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6
-int styleable CollapsingToolbarLayout_statusBarScrim 9
-int styleable CollapsingToolbarLayout_title 0
-int styleable CollapsingToolbarLayout_titleEnabled 13
-int styleable CollapsingToolbarLayout_toolbarId 10
-int[] styleable CompoundButton { 0x01010107, 0x7f0100a9, 0x7f0100aa }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonTint 1
-int styleable CompoundButton_buttonTintMode 2
-int[] styleable CoordinatorLayout { 0x7f0100ab, 0x7f0100ac }
-int styleable CoordinatorLayout_keylines 0
-int styleable CoordinatorLayout_statusBarBackground 1
-int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0 }
-int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0
-int styleable CoordinatorLayout_LayoutParams_layout_anchor 2
-int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4
-int styleable CoordinatorLayout_LayoutParams_layout_behavior 1
-int styleable CoordinatorLayout_LayoutParams_layout_keyline 3
-int[] styleable DesignTheme { 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 }
-int styleable DesignTheme_bottomSheetDialogTheme 0
-int styleable DesignTheme_bottomSheetStyle 1
-int styleable DesignTheme_textColorError 2
-int[] styleable DrawerArrowToggle { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb }
-int styleable DrawerArrowToggle_arrowHeadLength 4
-int styleable DrawerArrowToggle_arrowShaftLength 5
-int styleable DrawerArrowToggle_barLength 6
-int styleable DrawerArrowToggle_color 0
-int styleable DrawerArrowToggle_drawableSize 2
-int styleable DrawerArrowToggle_gapBetweenBars 3
-int styleable DrawerArrowToggle_spinBars 1
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable FloatingActionButton { 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119 }
-int styleable FloatingActionButton_backgroundTint 6
-int styleable FloatingActionButton_backgroundTintMode 7
-int styleable FloatingActionButton_borderWidth 4
-int styleable FloatingActionButton_elevation 0
-int styleable FloatingActionButton_fabSize 2
-int styleable FloatingActionButton_pressedTranslationZ 3
-int styleable FloatingActionButton_rippleColor 1
-int styleable FloatingActionButton_useCompatPadding 5
-int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0100c1 }
-int styleable ForegroundLinearLayout_android_foreground 0
-int styleable ForegroundLinearLayout_android_foregroundGravity 1
-int styleable ForegroundLinearLayout_foregroundInsidePadding 2
-int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }
-int styleable LinearLayoutCompat_android_baselineAligned 2
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
-int styleable LinearLayoutCompat_android_gravity 0
-int styleable LinearLayoutCompat_android_orientation 1
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 8
-int styleable LinearLayoutCompat_measureWithLargestChild 6
-int styleable LinearLayoutCompat_showDividers 7
-int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_height 2
-int styleable LinearLayoutCompat_Layout_android_layout_weight 3
-int styleable LinearLayoutCompat_Layout_android_layout_width 1
-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_checkableBehavior 5
-int styleable MenuGroup_android_enabled 0
-int styleable MenuGroup_android_id 1
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_visible 2
-int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
-int styleable MenuItem_actionLayout 14
-int styleable MenuItem_actionProviderClass 16
-int styleable MenuItem_actionViewClass 15
-int styleable MenuItem_android_alphabeticShortcut 9
-int styleable MenuItem_android_checkable 11
-int styleable MenuItem_android_checked 3
-int styleable MenuItem_android_enabled 1
-int styleable MenuItem_android_icon 0
-int styleable MenuItem_android_id 2
-int styleable MenuItem_android_menuCategory 5
-int styleable MenuItem_android_numericShortcut 10
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_android_orderInCategory 6
-int styleable MenuItem_android_title 7
-int styleable MenuItem_android_titleCondensed 8
-int styleable MenuItem_android_visible 4
-int styleable MenuItem_showAsAction 13
-int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9 }
-int styleable MenuView_android_headerBackground 4
-int styleable MenuView_android_horizontalDivider 2
-int styleable MenuView_android_itemBackground 5
-int styleable MenuView_android_itemIconDisabledAlpha 6
-int styleable MenuView_android_itemTextAppearance 1
-int styleable MenuView_android_verticalDivider 3
-int styleable MenuView_android_windowAnimationStyle 0
-int styleable MenuView_preserveIconSpacing 7
-int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf }
-int styleable NavigationView_android_background 0
-int styleable NavigationView_android_fitsSystemWindows 1
-int styleable NavigationView_android_maxWidth 2
-int styleable NavigationView_elevation 3
-int styleable NavigationView_headerLayout 9
-int styleable NavigationView_itemBackground 7
-int styleable NavigationView_itemIconTint 5
-int styleable NavigationView_itemTextAppearance 8
-int styleable NavigationView_itemTextColor 6
-int styleable NavigationView_menu 4
-int[] styleable PopupWindow { 0x01010176, 0x7f0100d0 }
-int styleable PopupWindow_android_popupBackground 0
-int styleable PopupWindow_overlapAnchor 1
-int[] styleable PopupWindowBackgroundState { 0x7f0100d1 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable RecyclerView { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 }
-int styleable RecyclerView_android_orientation 0
-int styleable RecyclerView_layoutManager 1
-int styleable RecyclerView_reverseLayout 3
-int styleable RecyclerView_spanCount 2
-int styleable RecyclerView_stackFromEnd 4
-int[] styleable ScrimInsetsFrameLayout { 0x7f0100d6 }
-int styleable ScrimInsetsFrameLayout_insetForeground 0
-int[] styleable ScrollingViewBehavior_Params { 0x7f0100d7 }
-int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0
-int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_imeOptions 3
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_maxWidth 1
-int styleable SearchView_closeIcon 8
-int styleable SearchView_commitIcon 13
-int styleable SearchView_defaultQueryHint 7
-int styleable SearchView_goIcon 9
-int styleable SearchView_iconifiedByDefault 5
-int styleable SearchView_layout 4
-int styleable SearchView_queryBackground 15
-int styleable SearchView_queryHint 6
-int styleable SearchView_searchHintIcon 11
-int styleable SearchView_searchIcon 10
-int styleable SearchView_submitBackground 16
-int styleable SearchView_suggestionRowLayout 14
-int styleable SearchView_voiceIcon 12
-int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f0100e5 }
-int styleable SnackbarLayout_android_maxWidth 0
-int styleable SnackbarLayout_elevation 1
-int styleable SnackbarLayout_maxActionInlineWidth 2
-int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
-int styleable Spinner_android_dropDownWidth 3
-int styleable Spinner_android_entries 0
-int styleable Spinner_android_popupBackground 1
-int styleable Spinner_android_prompt 2
-int styleable Spinner_popupTheme 4
-int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec }
-int styleable SwitchCompat_android_textOff 1
-int styleable SwitchCompat_android_textOn 0
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 9
-int styleable SwitchCompat_splitTrack 8
-int styleable SwitchCompat_switchMinWidth 6
-int styleable SwitchCompat_switchPadding 7
-int styleable SwitchCompat_switchTextAppearance 5
-int styleable SwitchCompat_thumbTextPadding 4
-int styleable SwitchCompat_track 3
-int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f }
-int styleable TabItem_android_icon 0
-int styleable TabItem_android_layout 1
-int styleable TabItem_android_text 2
-int[] styleable TabLayout { 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }
-int styleable TabLayout_tabBackground 3
-int styleable TabLayout_tabContentStart 2
-int styleable TabLayout_tabGravity 5
-int styleable TabLayout_tabIndicatorColor 0
-int styleable TabLayout_tabIndicatorHeight 1
-int styleable TabLayout_tabMaxWidth 7
-int styleable TabLayout_tabMinWidth 6
-int styleable TabLayout_tabMode 4
-int styleable TabLayout_tabPadding 15
-int styleable TabLayout_tabPaddingBottom 14
-int styleable TabLayout_tabPaddingEnd 13
-int styleable TabLayout_tabPaddingStart 11
-int styleable TabLayout_tabPaddingTop 12
-int styleable TabLayout_tabSelectedTextColor 10
-int styleable TabLayout_tabTextAppearance 8
-int styleable TabLayout_tabTextColor 9
-int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 }
-int styleable TextAppearance_android_shadowColor 4
-int styleable TextAppearance_android_shadowDx 5
-int styleable TextAppearance_android_shadowDy 6
-int styleable TextAppearance_android_shadowRadius 7
-int styleable TextAppearance_android_textColor 3
-int styleable TextAppearance_android_textSize 0
-int styleable TextAppearance_android_textStyle 2
-int styleable TextAppearance_android_typeface 1
-int styleable TextAppearance_textAllCaps 8
-int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105 }
-int styleable TextInputLayout_android_hint 1
-int styleable TextInputLayout_android_textColorHint 0
-int styleable TextInputLayout_counterEnabled 6
-int styleable TextInputLayout_counterMaxLength 7
-int styleable TextInputLayout_counterOverflowTextAppearance 9
-int styleable TextInputLayout_counterTextAppearance 8
-int styleable TextInputLayout_errorEnabled 4
-int styleable TextInputLayout_errorTextAppearance 5
-int styleable TextInputLayout_hintAnimationEnabled 10
-int styleable TextInputLayout_hintEnabled 3
-int styleable TextInputLayout_hintTextAppearance 2
-int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_collapseContentDescription 19
-int styleable Toolbar_collapseIcon 18
-int styleable Toolbar_contentInsetEnd 6
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 5
-int styleable Toolbar_logo 4
-int styleable Toolbar_logoDescription 22
-int styleable Toolbar_maxButtonHeight 17
-int styleable Toolbar_navigationContentDescription 21
-int styleable Toolbar_navigationIcon 20
-int styleable Toolbar_popupTheme 9
-int styleable Toolbar_subtitle 3
-int styleable Toolbar_subtitleTextAppearance 11
-int styleable Toolbar_subtitleTextColor 24
-int styleable Toolbar_title 2
-int styleable Toolbar_titleMarginBottom 16
-int styleable Toolbar_titleMarginEnd 14
-int styleable Toolbar_titleMarginStart 13
-int styleable Toolbar_titleMarginTop 15
-int styleable Toolbar_titleMargins 12
-int styleable Toolbar_titleTextAppearance 10
-int styleable Toolbar_titleTextColor 23
-int[] styleable View { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 }
-int styleable View_android_focusable 1
-int styleable View_android_theme 0
-int styleable View_paddingEnd 3
-int styleable View_paddingStart 2
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010118, 0x7f010119 }
-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_inflatedId 2
-int styleable ViewStubCompat_android_layout 1
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/aapt/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/aapt/AndroidManifest.xml
deleted file mode 100644
index 6c078ef..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/annotations.zip b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/annotations.zip
deleted file mode 100644
index abdb63b..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/annotations.zip and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/jars/classes.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/jars/classes.jar
deleted file mode 100644
index 5d65531..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/jars/classes.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/proguard.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/proguard.txt
deleted file mode 100644
index 96e2ee0..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/proguard.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright (C) 2015 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# CoordinatorLayout resolves the behaviors of its child components with reflection.
--keep public class * extends android.support.design.widget.CoordinatorLayout$Behavior {
- public (android.content.Context, android.util.AttributeSet);
- public ();
-}
-
-# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior
--keepattributes *Annotation*
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/public.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/public.txt
deleted file mode 100644
index 9cfb311..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/public.txt
+++ /dev/null
@@ -1,94 +0,0 @@
-style TextAppearance.Design.CollapsingToolbar.Expanded
-style TextAppearance.Design.Counter
-style TextAppearance.Design.Counter.Overflow
-style TextAppearance.Design.Error
-style TextAppearance.Design.Hint
-style TextAppearance.Design.Snackbar.Message
-style TextAppearance.Design.Tab
-style Theme.Design
-style Theme.Design.BottomSheetDialog
-style Theme.Design.Light
-style Theme.Design.Light.BottomSheetDialog
-style Theme.Design.Light.NoActionBar
-style Theme.Design.NoActionBar
-style Widget.Design.AppBarLayout
-style Widget.Design.BottomSheet.Modal
-style Widget.Design.CollapsingToolbar
-style Widget.Design.CoordinatorLayout
-style Widget.Design.FloatingActionButton
-style Widget.Design.NavigationView
-style Widget.Design.Snackbar
-style Widget.Design.TabLayout
-style Widget.Design.TextInputLayout
-string appbar_scrolling_view_behavior
-attr backgroundTint
-attr backgroundTintMode
-attr behavior_hideable
-attr behavior_overlapTop
-attr behavior_peekHeight
-attr borderWidth
-attr bottomSheetDialogTheme
-attr bottomSheetStyle
-string bottom_sheet_behavior
-attr collapsedTitleGravity
-attr collapsedTitleTextAppearance
-attr contentScrim
-attr counterEnabled
-attr counterMaxLength
-attr counterOverflowTextAppearance
-attr counterTextAppearance
-attr elevation
-attr errorEnabled
-attr errorTextAppearance
-attr expanded
-attr expandedTitleGravity
-attr expandedTitleMargin
-attr expandedTitleMarginBottom
-attr expandedTitleMarginEnd
-attr expandedTitleMarginStart
-attr expandedTitleMarginTop
-attr expandedTitleTextAppearance
-attr fabSize
-attr headerLayout
-attr hintAnimationEnabled
-attr hintEnabled
-attr hintTextAppearance
-attr itemBackground
-attr itemIconTint
-attr itemTextAppearance
-attr itemTextColor
-attr keylines
-attr layout_anchor
-attr layout_anchorGravity
-attr layout_behavior
-attr layout_collapseMode
-attr layout_collapseParallaxMultiplier
-attr layout_keyline
-attr layout_scrollFlags
-attr layout_scrollInterpolator
-attr menu
-attr pressedTranslationZ
-attr rippleColor
-attr statusBarBackground
-attr statusBarScrim
-attr tabBackground
-attr tabContentStart
-attr tabGravity
-attr tabIndicatorColor
-attr tabIndicatorHeight
-attr tabMaxWidth
-attr tabMinWidth
-attr tabMode
-attr tabPadding
-attr tabPaddingBottom
-attr tabPaddingEnd
-attr tabPaddingStart
-attr tabPaddingTop
-attr tabSelectedTextColor
-attr tabTextAppearance
-attr tabTextColor
-attr textColorError
-attr title
-attr titleEnabled
-attr toolbarId
-attr useCompatPadding
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml
deleted file mode 100644
index b5960a3..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_in.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml
deleted file mode 100644
index d680abe..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim-v21/design_bottom_sheet_slide_out.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml
deleted file mode 100644
index 7cbae08..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_in.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml
deleted file mode 100644
index 2e30963..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_bottom_sheet_slide_out.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml
deleted file mode 100644
index 294050f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_in.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml
deleted file mode 100644
index 0f80a9a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_fab_out.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml
deleted file mode 100644
index a40524c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_in.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml
deleted file mode 100644
index eb55cc0..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/anim/design_snackbar_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml
deleted file mode 100644
index 43afd5c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_fab_background.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml
deleted file mode 100644
index e82441c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/drawable/design_snackbar_background.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml
deleted file mode 100644
index b68395a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout-sw600dp-v13/design_layout_snackbar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml
deleted file mode 100644
index 27bb806..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_bottom_sheet_dialog.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml
deleted file mode 100644
index 604aafc..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml
deleted file mode 100644
index 1aab24b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_snackbar_include.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml
deleted file mode 100644
index 5dcfa11..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_icon.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml
deleted file mode 100644
index a83bb3d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_layout_tab_text.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml
deleted file mode 100644
index ba8141d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_menu_item_action_area.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml
deleted file mode 100644
index ccd42de..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml
deleted file mode 100644
index 8d03f69..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_header.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml
deleted file mode 100644
index 938a3fb..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_separator.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml
deleted file mode 100644
index 707ec6a..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_item_subheader.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml
deleted file mode 100644
index b6a0ad5..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml
deleted file mode 100644
index 91104bb..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/layout/design_navigation_menu_item.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-land/values-land.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-land/values-land.xml
deleted file mode 100644
index afcdbc8..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-land/values-land.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
deleted file mode 100644
index 4ea1010..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- 320dp
- 0dp
- 2dp
- 24dp
- 576dp
- 320dp
- @dimen/design_snackbar_padding_vertical
- 160dp
- 1
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values/values.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values/values.xml
deleted file mode 100644
index ce50cbd..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/design/23.4.0/res/values/values.xml
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
- @android:color/transparent
- #14000000
- #44000000
- #0A000000
- #0F000000
- #1AFFFFFF
- #2EFFFFFF
- #323232
- #FFFF6E6E
- #FFD50000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4dp
- 16dp
- 256dp
- 0.5dp
- 6dp
- 24dp
- 40dp
- 56dp
- 6dp
- 16dp
- 32dp
- 24dp
- 280dp
- 8dp
- 8dp
- 128dp
- 0dp
- 6dp
- 0dp
- -1px
- -1px
- 12dp
- 14dp
- 24dp
- 14sp
- 264dp
- 72dp
- 14sp
- 12sp
-
- 150
- 2
- android.support.design.widget.AppBarLayout$ScrollingViewBehavior
- android.support.design.widget.BottomSheetBehavior
- %1$d / %2$d
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/AndroidManifest.xml
deleted file mode 100644
index f191b9b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/AndroidManifest.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/R.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/R.txt
deleted file mode 100644
index ae973d1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/R.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-int attr layoutManager 0x7f010000
-int attr reverseLayout 0x7f010002
-int attr spanCount 0x7f010001
-int attr stackFromEnd 0x7f010003
-int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f020000
-int dimen item_touch_helper_swipe_escape_max_velocity 0x7f020001
-int dimen item_touch_helper_swipe_escape_velocity 0x7f020002
-int id item_touch_helper_previous_elevation 0x7f030000
-int[] styleable RecyclerView { 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003 }
-int styleable RecyclerView_android_orientation 0
-int styleable RecyclerView_layoutManager 1
-int styleable RecyclerView_reverseLayout 3
-int styleable RecyclerView_spanCount 2
-int styleable RecyclerView_stackFromEnd 4
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/aapt/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/aapt/AndroidManifest.xml
deleted file mode 100644
index f191b9b..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/annotations.zip b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/annotations.zip
deleted file mode 100644
index 713e998..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/annotations.zip and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/jars/classes.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/jars/classes.jar
deleted file mode 100644
index c91b258..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/jars/classes.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/proguard.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/proguard.txt
deleted file mode 100644
index 113d94d..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/proguard.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright (C) 2015 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# When layoutManager xml attribute is used, RecyclerView inflates
-#LayoutManagers' constructors using reflection.
--keep public class * extends android.support.v7.widget.RecyclerView$LayoutManager {
- public (...);
-}
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/public.txt b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/public.txt
deleted file mode 100644
index 040ac5f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/public.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-attr layoutManager
-attr reverseLayout
-attr spanCount
-attr stackFromEnd
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml
deleted file mode 100644
index 7db8b96..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- 20dp
- 800dp
- 120dp
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/AndroidManifest.xml
deleted file mode 100644
index f273269..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aapt/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aapt/AndroidManifest.xml
deleted file mode 100644
index f273269..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
deleted file mode 100644
index 6d36b97..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media;
-
-parcelable MediaMetadataCompat;
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/RatingCompat.aidl b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/RatingCompat.aidl
deleted file mode 100644
index 223fd5c..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/RatingCompat.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media;
-
-parcelable RatingCompat;
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
deleted file mode 100644
index d0c2f6f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media.session;
-
-parcelable MediaSessionCompat.Token;
-parcelable MediaSessionCompat.QueueItem;
-parcelable MediaSessionCompat.ResultReceiverWrapper;
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
deleted file mode 100644
index 2e77c4f..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media.session;
-
-parcelable ParcelableVolumeInfo;
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
deleted file mode 100644
index 3d4ef59..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media.session;
-
-parcelable PlaybackStateCompat;
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/os/ResultReceiver.aidl b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/os/ResultReceiver.aidl
deleted file mode 100644
index 81c81f6..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/aidl/android/support/v4/os/ResultReceiver.aidl
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-** Copyright 2015, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.os;
-
-parcelable ResultReceiver;
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip
deleted file mode 100644
index 128e4e1..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar
deleted file mode 100644
index 227b9d8..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/libs/internal_impl-23.4.0.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/libs/internal_impl-23.4.0.jar
deleted file mode 100644
index f9ea7ad..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/libs/internal_impl-23.4.0.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/AndroidManifest.xml
deleted file mode 100644
index f643cc1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/AndroidManifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/aapt/AndroidManifest.xml b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/aapt/AndroidManifest.xml
deleted file mode 100644
index f643cc1..0000000
--- a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/jars/classes.jar b/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/jars/classes.jar
deleted file mode 100644
index f4ff625..0000000
Binary files a/2p-android/trunk/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/23.4.0/jars/classes.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/incremental/aidl/androidTest/debug/dependency.store b/2p-android/trunk/build/intermediates/incremental/aidl/androidTest/debug/dependency.store
deleted file mode 100644
index 8b8400d..0000000
Binary files a/2p-android/trunk/build/intermediates/incremental/aidl/androidTest/debug/dependency.store and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/incremental/aidl/debug/dependency.store b/2p-android/trunk/build/intermediates/incremental/aidl/debug/dependency.store
deleted file mode 100644
index 8b8400d..0000000
Binary files a/2p-android/trunk/build/intermediates/incremental/aidl/debug/dependency.store and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml b/2p-android/trunk/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml
deleted file mode 100644
index f6fc4ca..0000000
--- a/2p-android/trunk/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/incremental/mergeAssets/debug/merger.xml b/2p-android/trunk/build/intermediates/incremental/mergeAssets/debug/merger.xml
deleted file mode 100644
index 586ce5d..0000000
--- a/2p-android/trunk/build/intermediates/incremental/mergeAssets/debug/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml b/2p-android/trunk/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml
deleted file mode 100644
index f209e3a..0000000
--- a/2p-android/trunk/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/incremental/mergeResourcesdebug/merger.xml b/2p-android/trunk/build/intermediates/incremental/mergeResourcesdebug/merger.xml
deleted file mode 100644
index ad652a0..0000000
--- a/2p-android/trunk/build/intermediates/incremental/mergeResourcesdebug/merger.xml
+++ /dev/null
@@ -1,1510 +0,0 @@
-
-20dp 14sp true 56dp @android:color/black 8dp #ff263238 2dp 16dp See all 8dp #8a000000 Share with %s 48dp #1f000000 Choose an app 999 #36ffffff #fff5f5f5 #6680cbc4 - 320dp
#ff5a595b false @dimen/abc_control_padding_material true @android:color/black #80ffffff false @android:color/white 10dp Done #ffffffff #ffe0e0e0 0dp 4dp 2 8dip Search #ff616161 #39000000 64dp @android:color/white 7dp 64dp - 0.26
#66009688 #de000000 12sp @color/material_deep_teal_200 48dp #ff80cbc4 36dp Submit query 320dip 14sp @color/bright_foreground_disabled_material_light - 0.20
@color/material_grey_50 48dp 2dp 20dp @android:color/black 56sp 14sp - 95%
- 100%
16sp 999+ Collapse #ffd6d7d7 -3dp %1$s, %2$s, %3$s 8dip #fffafafa - 0.30
4dp #7fa87f - 0.12
@color/material_grey_850 5dp @android:color/black true #33ffffff 296dp @color/bright_foreground_material_light #24000000 #80bebebe 180dp 10dp @android:color/white 127 14sp @dimen/abc_action_bar_content_inset_material 40dp @color/material_grey_900 @android:color/black @color/material_grey_100 22sp - 320dp
34sp 16sp 24sp 12dp Search query #ff009688 #3333B5E5 2dp 6dp Navigate up 3dp - 0.26
#80323232 #ffbdbdbd More options OFF 220 320dp 20sp 150 24dp #4Dffffff @color/bright_foreground_material_dark 32dip Navigate home - 0.30
112sp 16dp - 0.26
16dp #ff323232 160dip #fff1f1f1 #ff303030 0dp #b3ffffff #ff757575 4dp #ff21272b 16dp Share with @color/material_deep_teal_500 %1$s, %2$s 45sp @android:color/black #ffbebebe @color/material_grey_600 #ff212121 Voice search false #80000000 18sp 18dp @color/material_grey_800 48dp - 65%
Clear query true #ffbdbdbd #ff424242 @dimen/abc_control_inset_material #ff37474f ON 6dp - 80%
true Search… @color/bright_foreground_disabled_material_dark "Soeknavraag" "Sien alles" "%1$s, %2$s" "Deel met" "Kies \'n program" "AF" "Soek …" "Soek" "999+" "Stemsoektog" "Deel met %s" "Navigeer tuis" "%1$s, %2$s, %3$s" "Nog opsies" "Vou in" "Vee navraag uit" "Klaar" "AAN" "Dien navraag in" "Navigeer op" "መጠá‹á‰… ያስረáŠá‰¡" "የድáˆá… áለጋ" "ከሚከተለዠጋሠያጋሩ" "áˆáˆáŒâ€¦" "ወደ መáŠáˆ» á‹á‹³áˆµáˆ±" "በáˆá‰·áˆ" "መተáŒá‰ ሪያ á‹áˆáˆ¨áŒ¡" "መጠá‹á‰… አጽዳ" "ተጨማሪ አማራጮች" "የáለጋ ጥያቄ" "%1$sᣠ%2$s" "ወደ ላዠá‹á‹³áˆµáˆ±" "ከ%s ጋሠያጋሩ" "ተከናá‹áŠ—áˆ" "999+" "ጠáቷáˆ" "%1$sᣠ%2$sᣠ%3$s" "áለጋ" "ሰብስብ" "áˆáˆ‰áŠ•áˆ á‹áˆ˜áˆáŠ¨á‰±" "Ù…ØÙˆ طلب البØØ«" "خيارات إضاÙية" "إيقاÙ" "تشغيل" "تصغير" "التنقل إلى أعلى" "تم" "إرسال طلب البØØ«" "طلب البØØ«" "%1$sØŒ %2$sØŒ %3$s" "اختيار تطبيق" "بØث…" "التنقل إلى الشاشة الرئيسية" "+999" "â€Ù…شاركة مع %s" "البØØ« الصوتي" "بØØ«" "%1$sØŒ %2$s" "مشاركة مع" "عرض الكل" "%1$s, %2$s" "Bununla paylaşın" "999+" "SorÄŸunu tÉ™mizlÉ™" "Axtarış" "Yuxarı get" "Hamısına baxın" "Axtarış sorÄŸusu" "TÉ™tbiq seçin" "SÉ™sli axtarış" "EvÉ™ get" "%1$s, %2$s, %3$s" "Axtarış..." "Daha çox seçim" "Hazırdır" "DEAKTÄ°V" "Dağıt" "SorÄŸunu göndÉ™rin" "AKTÄ°V" "ТърÑене" "„%1$s“ – %2$s" "ТърÑете…" "Още опции" "ЗаÑвка за Ñ‚ÑŠÑ€Ñене" "ИЗКЛ." "999+" "ИзчиÑтване на заÑвката" "Готово" "СподелÑне ÑÑŠÑ: %s" "Изпращане на заÑвката" "„%1$s“, „%2$s“ – %3$s" "Изберете приложение" "ГлаÑово Ñ‚ÑŠÑ€Ñене" "Придвижване нагоре" "ВКЛ." "Придвижване към „Ðачало“" "Вижте вÑички" "СподелÑне ÑÑŠÑ:" "Свиване" "সঙà§à¦•à§à¦šà¦¿à¦¤ করà§à¦¨" "হোম ঠনেà¦à¦¿à¦—েট করà§à¦¨" "বনà§à¦§" "চালà§" "৯৯৯+" "à¦à¦•à¦Ÿà¦¿ অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•à§‡à¦¶à¦¾à¦¨ চয়ন করà§à¦¨" "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨..." "উপরের দিকে নেà¦à¦¿à¦—েট করà§à¦¨" "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ সাফ করà§à¦¨" "à¦à¦° সাথে à¦à¦¾à¦— করà§à¦¨" "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ জমা দিন" "%s à¦à¦° সাথে à¦à¦¾à¦— করà§à¦¨" "%1$s, %2$s" "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨" "আরো বিকলà§à¦ª" "%1$s, %2$s, %3$s" "সবগà§à¦²à§‹ দেখà§à¦¨" "সমà§à¦ªà¦¨à§à¦¨ হয়েছে" "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨" "à¦à¦¯à¦¼à§‡à¦¸ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨" "Selecciona una aplicació" "Replega" "Esborra la consulta" "Cerca..." "Envia la consulta" "%1$s, %2$s" "Navega cap a dalt" "%1$s, %2$s, %3$s" "Comparteix amb" "Navega a la pà gina d\'inici" "Mostra\'ls tots" "Comparteix amb %s" "Consulta de cerca" "Cerca" "Fet" "Cerca per veu" "+999" "DESACTIVAT" "Més opcions" "ACTIVAT" "%1$s, %2$s – %3$s" "Vyhledat…" "SdÃlet pomocà %s" "Hledat" "Zobrazit vÅ¡e" "Hlasové vyhledávánÃ" "PÅ™ejÃt na plochu" "ZAPNUTO" "Odeslat dotaz" "SdÃlet pomocÃ" "Hotovo" "Sbalit" "VÃce možnostÃ" "VYPNUTO" "%1$s – %2$s" "Smazat dotaz" "PÅ™ejÃt nahoru" "Vyhledávacà dotaz" "Vybrat aplikaci" "999+" "Vælg en app" "%1$s, %2$s" "Indsend forespørgslen" "FRA" "TIL" "Ryd forespørgslen" "Søgeforespørgsel" "Naviger hjem" "Søg…" "%1$s, %2$s, %3$s" "Se alle" "999+" "Søg" "Del med" "Naviger op" "Skjul" "Luk" "Del med %s" "Flere muligheder" "Talesøgning" "Sprachsuche" "%1$s: %2$s" "An" "Weitere Optionen" "Minimieren" "Suchanfrage löschen" "Suchanfrage" "Alle ansehen" "Fertig" "Zur Startseite" "Suchen…" "Freigeben für" "Suchen" "Freigeben für %s" "Nach oben" "Aus" "999+" "App auswählen" "Suchanfrage senden" "%1$s, %2$s: %3$s" "Φωνητική αναζήτηση" "ΑΠΕÎΕΡΓΟΠΟΙΗΣΗ" "Κοινή χÏήση με %s" "%1$s, %2$s, %3$s" "%1$s, %2$s" "Υποβολή εÏωτήματος" "Αναζήτηση…" "Κοινή χÏήση με" "999+" "ΕπιλÎξτε κάποια εφαÏμογή" "ΕÎΕΡΓΟΠΟΙΗΣΗ" "ΔιαγÏαφή εÏωτήματος" "Πλοήγηση Ï€Ïος τα επάνω" "ΣÏμπτυξη" "ΠεÏισσότεÏες επιλογÎÏ‚" "ΤÎλος" "Πλοήγηση στην αÏχική σελίδα" "ΕÏώτημα αναζήτησης" "Î Ïοβολή όλων" "Αναζήτηση" "Submit query" "Voice search" "%1$s, %2$s" "More options" "ON" "Search…" "%1$s, %2$s, %3$s" "Search query" "Share with %s" "OFF" "Collapse" "See all" "Choose an app" "999+" "Done" "Share with" "Search" "Clear query" "Navigate home" "Navigate up" "%1$s, %2$s, %3$s" "Voice search" "OFF" "Submit query" "See all" "Clear query" "Navigate home" "ON" "Done" "More options" "Search" "999+" "%1$s, %2$s" "Search…" "Search query" "Collapse" "Navigate up" "Share with" "Choose an app" "Share with %s" "%1$s, %2$s" "Navigate home" "ON" "Done" "See all" "Voice search" "Search" "Choose an app" "%1$s, %2$s, %3$s" "Clear query" "Navigate up" "OFF" "Share with %s" "Collapse" "More options" "999+" "Search…" "Submit query" "Share with" "Search query" "Buscar…" "Buscar" "NO" "Ver todo" "Consulta" "Borrar consulta" "Seleccionar una aplicación" "Enviar consulta" "SÃ" "Ir a la pantalla de inicio" "+999" "Compartir con %s" "Desplazarse hacia arriba" "%1$s, %2$s, %3$s" "Búsqueda por voz" "Listo" "Contraer" "%1$s, %2$s" "Más opciones" "Compartir con" "Navegar a la página principal" "Elige una aplicación." "Buscar…" "Navegar hacia arriba" "Búsqueda por voz" "ACTIVAR" "999+" "Consulta de búsqueda" "%1$s, %2$s, %3$s" "DESACTIVAR" "Enviar consulta" "Compartir con" "Contraer" "Listo" "Compartir con %s" "Más opciones" "%1$s, %2$s" "Eliminar la consulta" "Ver todo" "Búsqueda" "Päringu tühistamine" "%1$s, %2$s, %3$s" "Navigeerimine avaekraanile" "Valmis" "Jagamine kasutajaga %s" "Ahendamine" "Päringu esitamine" "Jagamine:" "SEES" "Rohkem valikuid" "Otsingupäring" "999+" "Kuva kõik" "Otsige …" "Otsing" "Valige rakendus" "Navigeerimine üles" "Häälotsing" "%1$s, %2$s" "VÄLJAS" "Bilatu" "Tolestu" "Joan orri nagusira" "Garbitu kontsulta" "Bilatu…" "Partekatu hauekin" "Aukera gehiago" "Partekatu %s erabiltzailearekin" "Bilaketa-kontsulta" "DESAKTIBATUTA" "Bidali kontsulta" "%1$s, %2$s, %3$s" "AKTIBATUTA" "Ahots bidezko bilaketa" "%1$s, %2$s" "Joan gora" "Eginda" "Aukeratu aplikazio bat" "Ikusi guztiak" "999+" "اشتراک‌گذاری با" "انتخاب برنامه" "â€%1$sâ€ØŒ %2$s" "â€%1$sâ€ØŒ %2$sâ€ØŒ %3$s" "ارسال عبارت جستجو" "Ú©ÙˆÚ†Ú© کردن" "پیمایش به صÙØÙ‡ اصلی" "گزینه‌های بیشتر" "جستجو" "جستجوی Ø´Ùاهی" "خاموش" "Û¹Û¹Û¹+" "عبارت جستجو" "â€Ø§Ø´ØªØ±Ø§Ú©â€ŒÚ¯Ø°Ø§Ø±ÛŒ با %s" "جستجو…" "پیمایش به بالا" "مشاهده همه" "تمام" "پاک کردن عبارت جستجو" "روشن" "Valmis" "KÄYTÖSSÄ" "Lähetä kysely" "Jakaminen:" "Siirry ylös" "Siirry etusivulle" "Valitse sovellus" "Lisää" "Näytä kaikki" "Haku" "Kutista" "999+" "POIS KÄYTÖSTÄ" "Tyhjennä kysely" "Puhehaku" "%1$s, %2$s, %3$s" "Hakulauseke" "Jakaminen: %s" "%1$s, %2$s" "Haku…" "Tout afficher" "Partager avec" "Rechercher" "Sélectionner une application" "Envoyer la requête" "DÉSACTIVÉ" "Revenir à l\'accueil" "Plus d\'options" "OK" "Requête de recherche" "Revenir en haut de la page" "%1$s, %2$s" "Partager avec %s" "Effacer la requête" "Réduire" ">999" "ACTIVÉ" "%1$s, %2$s, %3$s" "Rechercher…" "Recherche vocale" "ACTIVÉ" "Recherche en cours..." "Revenir à l\'accueil" "Partager avec %s" ">999" "%1$s, %2$s" "Terminé" "%1$s, %2$s, %3$s" "Sélectionnez une application" "Rechercher" "Recherche vocale" "Partager" "Voir toutes les chaînes" "Réduire" "Effacer la requête" "DÉSACTIVÉ" "Envoyer la requête" "Requête de recherche" "Plus d\'options" "Revenir en haut de la page" "Consulta de busca" "Buscar" "Compartir con %s" "Desprazarse cara arriba" "Borrar consulta" "Feito" "DESACTIVAR" "Enviar consulta" "Contraer" "Máis opcións" "Compartir con" "Ver todas" "Buscar…" "ACTIVAR" "Ir á páxina de inicio" "%1$s, %2$s" "Busca de voz" ">999" "%1$s, %2$s, %3$s" "Escoller unha aplicación" "વૉઇસ શોધ" "ઉપર નેવિગેટ કરો" "આની સાથે શેર કરો" "%1$s, %2$s" "થઈ ગયà«àª‚" "બંધ" "સંકà«àªšàª¿àª¤ કરો" "શોધો" "હોમ પર નેવિગેટ કરો" "બધà«àª‚ જà«àª“" "શોધો…" "%s સાથે શેર કરો" "%1$s, %2$s, %3$s" "àªàª• àªàªªà«àª²àª¿àª•à«‡àª¶àª¨ પસંદ કરો" "શોધ કà«àªµà«‡àª°à«€" "કà«àªµà«‡àª°à«€ સાફ કરો" "ચાલà«" "કà«àªµà«‡àª°à«€ સબમિટ કરો" "વધૠવિકલà«àªªà«‹" "999+" true 54dip "पूरà¥à¤£" "%1$s, %2$s, %3$s" "धà¥à¤µà¤¨à¤¿ खोज" "कà¥â€à¤µà¥‡à¤°à¥€ साफ़ करें" "%s के साथ साà¤à¤¾ करें" "संकà¥à¤·à¤¿à¤ªà¥à¤¤ करें" "अधिक विकलà¥à¤ª" "कोई à¤à¤ªà¥â€à¤²à¤¿à¤•à¥‡à¤¶à¤¨ चà¥à¤¨à¥‡à¤‚" "बंद" "सà¤à¥€ देखें" "खोज कà¥à¤µà¥‡à¤°à¥€" "मà¥à¤–à¥à¤¯à¤ªà¥ƒà¤·à¥à¤ पर नेविगेट करें" "खोजें" "999+" "चालू" "इसके दà¥à¤µà¤¾à¤°à¤¾ साà¤à¤¾ करें" "ऊपर नेविगेट करें" "%1$s, %2$s" "खोजा जा रहा है…" "कà¥à¤µà¥‡à¤°à¥€ सबमिट करें" "Gotovo" "Prikaži sve" "Odabir aplikacije" "Idi na poÄetnu" "Pretraživanje" "%1$s, %2$s, %3$s" "Dodatne opcije" "UKLJUÄŒENO" "Sažmi" "ISKLJUÄŒENO" "Glasovno pretraživanje" "Dijeljenje sa: %s" "%1$s, %2$s" "999+" "Pretražite…" "Upit za pretraživanje" "Dijeljenje sa" "PoÅ¡alji upit" "Idi gore" "IzbriÅ¡i upit" "Lekérdezés küldése" "Ugrás a fÅ‘oldalra" "Lekérdezés törlése" "Összecsukás" "Megosztás a következÅ‘vel: %s" "%1$s, %2$s, %3$s" "Hangalapú keresés" "KI" "999+" "Kész" "BE" "További lehetÅ‘ségek" "Megosztás a következÅ‘vel:" "Összes megtekintése" "Felfelé mozgatás" "Keresés…" "%1$s, %2$s" "Válasszon ki egy alkalmazást" "Keresés" "Keresési lekérdezés" "ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨" "ÕÕ¡Ö€Õ¡Õ®Õ¥Õ¬" "999+" "ÕÕ¥Õ½Õ¶Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨" "Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€" "ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¿Õ¸Ö‚Õ¶" "Ô¿Õ¡Õ¿Õ¡Ö€Õ¾Õ¡Õ® Õ§" "Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾" "Ô±Õ†Õ‹Ô±ÕÕŽÔ±Ô¾" "ÕˆÖ€Õ¸Õ¶Õ¥Õ¬" "ÕˆÖ€Õ¸Õ¶Õ¸Ö‚Õ´..." "Õ„Õ¡Ö„Ö€Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨" "ÕÕ¡ÕµÕ¶Õ¡ÕµÕ«Õ¶ Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´" "ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡" "ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´" "Ô¹Õ¡Ö„ÖÕ¶Õ¥Õ¬" "Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ®Ö€Õ¡Õ£Õ«Ö€" "ÕÕ¡Ö€Õ¡Õ®Õ¥Õ¬ Õ¨Õ½Õ¿ %s" "%1$s, %2$s" "%1$s, %2$s, %3$s" "Navigasi ke beranda" "Lihat semua" "Bagikan dengan %s" "Navigasi naik" "Telusuri..." "Ciutkan" "NONAKTIF" "Telusuri" "Bagikan dengan" "Opsi lain" "Pilih aplikasi" "Penelusuran suara" "999+" "%1$s, %2$s" "Selesai" "%1$s, %2$s, %3$s" "Hapus kueri" "Kirim kueri" "AKTIF" "Kueri penelusuran" "999+" "Leita" "Fara heim" "%1$s, %2$s" "Leitarfyrirspurn" "Deila með" "%1$s, %2$s, %3$s" "Leita…" "Raddleit" "Fleiri valkostir" "Hreinsa fyrirspurn" "KVEIKT" "Deila með %s" "Senda fyrirspurn" "SLÖKKT" "Sjá allt" "Minnka" "Lokið" "Fara upp" "Veldu forrit" "Scegli un\'applicazione" "Comprimi" "Ricerca vocale" "Cancella query" "Altre opzioni" "%1$s, %2$s, %3$s" "Fine" "Condividi con %s" "999+" "Visualizza tutte" "OFF" "Vai in alto" "Cerca…" "Cerca" "Invia query" "Condividi con" "Query di ricerca" "%1$s, %2$s" "Vai alla home page" "ON" "â€%1$sâ€, %2$sâ€, %3$s" "פועל" "מחק ש×ילתה" "חפש" "בחר ×פליקציה" "ר××” הכל" "כבוי" "â€×©×ª×£ ×¢× %s" "עוד ×פשרויות" "בוצע" "חפש…" "שלח ש×ילתה" "‎999+‎" "ש×ילתת חיפוש" "× ×•×•×˜ לדף הבית" "â€%1$sâ€, %2$s" "חיפוש קולי" "שתף ×¢×" "× ×•×•×˜ למעלה" "כווץ" "%1$sã€%2$s" "アプリã®é¸æŠž" "検索…" "OFF" "検索ã‚ーワードを削除" "折りãŸãŸã‚€" "共有" "検索ã‚ーワードをé€ä¿¡" "上ã¸ç§»å‹•" "%sã¨å…±æœ‰" "ã™ã¹ã¦è¡¨ç¤º" "ãã®ä»–ã®ã‚ªãƒ—ション" "検索ã‚ーワード" "検索" "ON" "完了" "音声検索" "%1$sã€%2$sã€%3$s" "ホームã¸ç§»å‹•" "999+" "მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ“áƒáƒ’ზáƒáƒ•áƒœáƒ" "ხმáƒáƒ•áƒáƒœáƒ˜ ძიებáƒ" "%1$s, %2$s" "მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•áƒ”ბáƒ" "გáƒáƒ–იáƒáƒ ებáƒ:" "áƒáƒ™áƒ”ცვáƒ" "%1$s, %2$s, %3$s" "მეტი ვáƒáƒ იáƒáƒœáƒ¢áƒ”ბი" "ჩáƒáƒ თულიáƒ" "999+" "%s-თáƒáƒœ გáƒáƒ–იáƒáƒ ებáƒ" "გáƒáƒ›áƒáƒ თულიáƒ" "მთáƒáƒ•áƒáƒ ზე ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ" "დáƒáƒ¡áƒ ულდáƒ" "ძიებáƒ" "ზემáƒáƒ— ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ" "ყველáƒáƒ¡ ნáƒáƒ®áƒ•áƒ" "áƒáƒžáƒ˜áƒ¡ áƒáƒ ჩევáƒ" "ძიებáƒ..." "ძიების მáƒáƒ—ხáƒáƒ•áƒœáƒ" "ӨШІРУЛІ" "ҚОСУЛЫ" "Сұрақты іздеу" "Іздеу" "%1$s, %2$s" "Дайын" "%s бөліÑу" "Ð”Ð°ÑƒÑ‹Ñ Ð°Ñ€Ò›Ñ‹Ð»Ñ‹ іздеу" "%1$s, %2$s, %3$s" "Жоғары қозғалу" "Іздеу…" "ТаÑалау" "999+" "Сұрақты жіберу" "БөліÑу" "Сұрақты жою" "БаÑқа опциÑлар" "Қолданбаны таңдау" "Барлығын көру" "Ðегізгі бетте қозғалу" "ជម្រើស​ច្រើន​ទៀáž" "រួចរាល់" "សម្អាážâ€‹ážŸáŸ†ážŽáž½ážš" "ដាក់​​​ស្នើ​សំណួរ" "ស្វែងរក​សំណួរ" "ចែករំលែក​ជាមួយ %s" "%1$s, %2$s, %3$s" "មើល​ទាំងអស់" "ការស្វែងរក​សំឡáŸáž„" "បើក" "រកមើល​ឡើងលើ" "បិទ" "ចែករំលែក​ជាមួយ" "រកមើល​ទៅ​ដើម" "%1$s, %2$s" "ស្វែងរក" "999+" "បង្រួម" "ជ្រើស​កម្មវិធី​​" "ស្វែងរក…" "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಹà³à²¡à³à²•à²¿" "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿" "ಹà³à²¡à³à²•à³" "ಮà³à²—ಿದಿದೆ" "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ನೋಡಿ" "ಹà³à²¡à³à²•à²¿â€¦" "ಮà³à²–ಪà³à²Ÿà²µà²¨à³à²¨à³ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ" "%1$s, %2$s, %3$s" "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳà³à²³à²¿" "ಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•à³†à²—ಳà³" "ಒಂದೠಅಪà³à²²à²¿à²•à³‡à²¶à²¨à³ ಆಯà³à²•à³†à²®à²¾à²¡à²¿" "%1$s, %2$s" "ಸಂಕà³à²šà²¿à²¸à³" "ಮೇಲಕà³à²•à³† ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ" "ಆನà³" "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಸಲà³à²²à²¿à²¸à³" "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ತೆರವà³à²—ೊಳಿಸà³" "999+" "ಧà³à²µà²¨à²¿ ಹà³à²¡à³à²•à²¾à²Ÿ" "ಆಫà³" "옵션 ë”보기" "검색" "%s와(ê³¼) ê³µìœ " "검색어" "위로 íƒìƒ‰" "검색어 ì‚ì œ" "검색..." "%1$s, %2$s, %3$s" "ìŒì„± 검색" "%1$s, %2$s" "검색어 보내기" "사용 안함" "ì ‘ê¸°" "ê³µìœ ëŒ€ìƒ" "완료" "사용" "홈 íƒìƒ‰" "ì „ì²´ 보기" "앱 ì„ íƒ" "999+" "КҮЙҮК" "Бөлүшүү" "Издөө талаптары" "%s аркылуу бөлүшүү" "%1$s, %2$s, %3$s" "Колдонмо тандоо" "Издөө" "Үйгө багыттоо" "Үн аркылуу издөө" "Бардыгын көрүү" "Жыйнап коюу" "Талаптарды тазалоо" "Издөө…" "ӨЧҮК" "Талап жөнөтүү" "%1$s, %2$s" "ДаÑÑ€" "Көбүрөөк мүмкүнчүлүктөр" "999+" "Жогору" 32dp 14dp true 48dp 12dp true 192dip 440dp true true - 60%
- 90%
- 80%
- 60%
- 90%
- 55%
4 "ສົ່ງàºàº²àº™àºŠàºàºàº«àº²" "ໂຕເລືàºàºàºàº·à»ˆàº™" "à»àºšà»ˆàº‡â€‹àº›àº±àº™â€‹àºàº±àºšâ€‹ %s" "ຫàºà»à»‰" "ປິດ" "ລຶບຂà»à»‰àº„ວາມຊàºàºàº«àº²" "999+" "ຊàºàºàº«àº²àº”້ວàºàºªàº½àº‡" "ຂຶ້ນເທິງ" "ເລືàºàºà»àºàº±àºšàº¯" "ຊàºàºàº«àº²" "%1$s, %2$s, %3$s" "ຊàºàºàº«àº²" "à»àºšà»ˆàº‡àº›àº±àº™àºàº±àºš" "ເປີດ" "àºàº±àºšà»„ປໜ້າຫຼັàº" "%1$s, %2$s" "ເບິ່ງທັງຫມົດ" "à»àº¥à»‰àº§à»†" "ຊàºàºàº«àº²" "IÅ¡valyti užklausÄ…" "Pasirinkti programÄ…" "IÅ JUNGTI" "Pateikti užklausÄ…" "Sutraukti" "Bendrinti naudojant „%s“" "Eiti į viršų" "IeÅ¡koti..." "Bendrinti naudojant" "999+" "%1$s, %2$s" "PaieÅ¡ka balsu" "Atlikta" "PaieÅ¡kos užklausa" "Eiti į pagrindinį puslapį" "PaieÅ¡ka" "%1$s, %2$s, %3$s" "Ä®JUNGTI" "Daugiau parinkÄių" "PeržiÅ«rÄ—ti viskÄ…" "MeklÄ“jiet…" "SkatÄ«t visu" "IzvÄ“lieties lietotni" "PÄrvietoties uz sÄkuma ekrÄnu" "MeklÄ“t" "MeklÄ“Å¡ana ar balsi" "Gatavs" "Sakļaut" "999+" "MeklÄ“Å¡anas vaicÄjums" "KopÄ«got ar:" "%1$s, %2$s: %3$s" "Iesniegt vaicÄjumu" "VairÄk opciju" "IZSLÄ’GTS" "PÄrvietoties augÅ¡up" "IESLÄ’GTS" "NotÄ«rÄ«t vaicÄjumu" "KopÄ«got ar %s" "%1$s: %2$s" "Пребарај барање" "Движи Ñе нагоре" "Избери апликација" "Пребарај" "Сподели Ñо" "Пребарување…" "ГлаÑовно пребарување" "%1$s, %2$s, %3$s" "Собери" "Готово" "Движи Ñе кон дома" "ВКЛУЧЕÐО" "999+" "ИСКЛУЧЕÐО" "ПоднеÑи барање" "Види ги Ñите" "Повеќе опции" "ИÑчиÑти барање" "ഇവരàµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•" "തിരയàµà´•â€¦" "തിരയൽ" "%1$s, %2$s" "ഓൺ" "തിരയൽ à´…à´¨àµà´µàµ‡à´·à´£à´‚" "%s à´Žà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•" "à´®àµà´•à´³à´¿à´²àµ‡à´•àµà´•àµ നാവിഗേറàµà´±àµà´šàµ†à´¯àµà´¯àµà´•" "à´Žà´²àµà´²à´¾à´‚ കാണàµà´•" "ഒരൠഅപàµà´²à´¿à´•àµà´•àµ‡à´·àµ» തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•" "999+" "കൂടàµà´¤à´²àµâ€ à´“à´ªàµâ€Œà´·à´¨àµà´•à´³àµâ€" "പൂർതàµà´¤à´¿à´¯à´¾à´•àµà´•à´¿" "ശബàµà´¦ തിരയൽ" "%1$s, %2$s, %3$s" "à´šàµà´°àµà´•àµà´•àµà´•" "ഹോമിലേകàµà´•àµ നാവിഗേറàµà´±àµà´šàµ†à´¯àµà´¯àµà´•" "à´…à´¨àµà´µàµ‡à´·à´£à´‚ മായàµâ€Œà´•àµà´•àµà´•" "à´“à´«àµ" "à´…à´¨àµà´µàµ‡à´·à´£à´‚ സമർപàµà´ªà´¿à´•àµà´•àµà´•" "Хайх" "Ðүүр Ñ…ÑƒÑƒÐ´Ð°Ñ Ñ€ÑƒÑƒ шилжих" "ÐÑмÑлт Ñонголтууд" "Бүгдийг харах" "Хайх..." "Хайх аÑуулга" "%1$s, %2$s" "Хуваалцах" "ИДÐВХГҮЙ" "%s-тай хуваалцах" "ÐÑуулгыг цÑвÑрлÑÑ…" "%1$s, %2$s, %3$s" "Ðпп Ñонгох" "999+" "ДууÑÑан" "Дуут хайлт" "ИДÐВХТÐЙ" "ДÑÑш шилжих" "ÐÑуулгыг илгÑÑÑ…" "Хумих" "संकà¥à¤·à¤¿à¤ªà¥à¤¤ करा" "कà¥â€à¤µà¥‡à¤°à¥€ सà¥â€à¤ªà¤·à¥â€à¤Ÿ करा" "शोध" "%s सह सामायिक करा" "सरà¥à¤µ पहा" "à¤à¤• अâ€à¥…प निवडा" "%1$s, %2$s, %3$s" "बंद" "वर नेवà¥â€à¤¹à¤¿à¤—ेट करा" "चालू" "शोधा…" "पूरà¥à¤£ à¤à¤¾à¤²à¥‡" "कà¥à¤µà¥‡à¤°à¥€ सबमिट करा" "शोध कà¥à¤µà¥‡à¤°à¥€" "यांचà¥à¤¯à¤¾à¤¸à¤¹ सामायिक करा" "मà¥à¤–à¥â€à¤¯à¤ªà¥ƒà¤·à¥â€à¤ नेवà¥â€à¤¹à¤¿à¤—ेट करा" "वà¥à¤¹à¥‰à¤‡à¤¸ शोध" "%1$s, %2$s" "अधिक परà¥à¤¯à¤¾à¤¯" "999+" "Runtuhkan" "Pilih apl" "Selesai" "%1$s, %2$s" "Lagi pilihan" "Lihat semua" "Carian suara" "Kongsi dengan %s" "Navigasi skrin utama" "Navigasi ke atas" "Cari" "999+" "MATI" "%1$s, %2$s, %3$s" "Kongsi dengan" "Pertanyaan carian" "Serah pertanyaan" "Kosongkan pertanyaan" "HIDUP" "Cari…" "%1$s አ%2$s አ%3$s" "ပြီးဆုံးပါပြီ" "အပလီကေးရှင်း á€á€…်á€á€¯á€á€¯á€€á€á€¯ ရွေးá€á€»á€šá€ºá€•á€«" "ရှာဖွေစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯ အá€á€Šá€ºá€•á€¼á€¯á€›á€”်" "အားလုံးကá€á€¯ ကြည့်ရန်" "ရှာဖွေပါ..." "အပေါ်သá€á€¯á€·á€žá€½á€¬á€¸á€›á€”်" "ရှာစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€™á€»á€¬á€¸ ရှင်းလင်းရန်" "%1$sአ%2$s" "ပá€á€á€º" "%s ကá€á€¯ မျှá€á€±á€•á€«á€›á€”်" "ပá€á€¯á€™á€á€¯á€›á€½á€±á€¸á€á€»á€šá€ºá€…ရာများ" "ရှာစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€”ေရာ" "မျှá€á€±á€–á€á€¯á€· ရွေးပါ" "ရှာဖွေရန်" "အသံဖြင့် ရှာဖွေá€á€¼á€„်း" "á€á€±á€«á€€á€ºá€›á€”်" "မူလနေရာကá€á€¯ သွားရန်" "á‰á‰á‰+" "ဖွင့်" "%1$s – %2$s – %3$s" "Flere alternativer" "Del med %s" "PÃ…" "Del med" "Se alle" "Slett søket" "Søk" "Søkeord" "Velg en app" "GÃ¥ til startsiden" "AV" "Søk …" "Ferdig" "Skjul" "%1$s – %2$s" "999+" "GÃ¥ opp" "Utfør søket" "Talesøk" "à¤à¥à¤µà¤¾à¤‡à¤¸ खोजी" "%1$s, %2$s" "à¤à¤‰à¤Ÿà¤¾ अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— छानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "%1$s, %2$s, %3$s" "जिजà¥à¤žà¤¾à¤¸à¤¾ पेस गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "पà¥à¤°à¤¶à¥â€à¤¨ हटाउनà¥à¤¹à¥‹à¤¸à¥" "जिजà¥à¤žà¤¾à¤¸à¤¾à¤•à¥‹ खोज गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "निषà¥à¤•à¥à¤°à¤¿à¤¯ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "साà¤à¥‡à¤¦à¤¾à¤°à¥€ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥..." "%s सà¤à¤— साà¤à¥‡à¤¦à¤¾à¤°à¥€ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "सबै हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "सकà¥à¤°à¤¿à¤¯ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "समà¥à¤ªà¤¨à¥à¤¨ à¤à¤¯à¥‹" "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥..." "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "गृह खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "९९९+" "माथि खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "संकà¥à¤·à¤¿à¤ªà¥à¤¤ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥" "थप विकलà¥à¤ªà¤¹à¤°à¥‚" "Meer opties" "Gereed" "UIT" "Navigeren naar startpositie" "Alles weergeven" "Gesproken zoekopdracht" "Samenvouwen" "999+" "AAN" "Zoeken" "Een app selecteren" "Delen met %s" "Zoeken…" "Zoekopdracht" "Delen met" "Zoekopdracht wissen" "Zoekopdracht verzenden" "%1$s, %2$s" "Omhoog navigeren" "%1$s, %2$s, %3$s" "ਸਵਾਲ ਖੋਜੋ" "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ" "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ" "ਹੋ ਗਿਆ" "ਬੰਦ" "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ" "%1$s, %2$s, %3$s" "ਸਠਦੇਖੋ" "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ" "ਖੋਜੋ" "ਸਵਾਲ ਪà©à¨°à¨¸à¨¤à©à¨¤ ਕਰੋ" "%1$s, %2$s" "ਇੱਕ à¨à¨ª ਚà©à¨£à©‹" "ਸਵਾਲ ਹਟਾਓ" "ਨਸ਼ਟ ਕਰੋ" "999+" "ਤੇ" "ਹੋਰ ਚੋਣਾਂ" "ਖੋਜ…" "ਵੌਇਸ ਖੋਜ" "UdostÄ™pnij dla %s" "Wyczyść zapytanie" "Wyszukiwanie gÅ‚osowe" "WiÄ™cej opcji" "999+" "UdostÄ™pnij dla" "Gotowe" "Szukaj" "%1$s, %2$s, %3$s" "Przejdź do strony głównej" "%1$s, %2$s" "Wybierz aplikacjÄ™" "WÅ." "Zobacz wszystkie" "WYÅ." "Szukaj…" "Wyszukiwane hasÅ‚o" "WyÅ›lij zapytanie" "ZwiÅ„" "Przejdź wyżej" false "Limpar consulta" "Mais opções" "Compartilhar com %s" "Recolher" "%1$s, %2$s" "ATIVAR" "Enviar consulta" "Navegar para cima" "ConcluÃdo" "Consulta de pesquisa" "%1$s, %2$s, %3$s" "DESATIVAR" "Navegar para a página inicial" "Ver tudo" "Compartilhar com" "999+" "Pesquisar" "Pesquisa por voz" "Selecione um app" "Pesquisar..." "Selecione um app" "Pesquisar" "Navegar para a página inicial" "ConcluÃdo" "Compartilhar com" "Pesquisa por voz" "Recolher" "DESATIVAR" "%1$s, %2$s" "Mais opções" "Consulta de pesquisa" "Enviar consulta" "Ver tudo" "Navegar para cima" "%1$s, %2$s, %3$s" "ATIVAR" "Compartilhar com %s" "Pesquisar..." "Limpar consulta" "999+" "Enviar consulta" "%1$s, %2$s" "Consulta de pesquisa" "Partilhar com %s" "Mais opções" "Partilhar com" "Escolher uma aplicação" "DESATIVADO" "ConcluÃdo" "Navegar para a página inicial" "%1$s, %2$s, %3$s" "Pesquisar" "Reduzir" "Pesquisar..." "Limpar consulta" "Ver tudo" "Pesquisa por voz" "+999" "Navegar para cima" "ATIVADO" "Mai multe opÈ›iuni" "CăutaÈ›i" "AfiÈ™aÈ›i-le pe toate" "Interogare de căutare" "NavigaÈ›i la ecranul de pornire" "AlegeÈ›i o aplicaÈ›ie" "˃999" "ACTIVAÈšI" "Terminat" "RestrângeÈ›i" "ȘtergeÈ›i interogarea" "DEZACTIVAÈšI" "CăutaÈ›i…" "TrimiteÈ›i la" "Căutare vocală" "TrimiteÈ›i interogarea" "TrimiteÈ›i la %s" "%1$s, %2$s" "NavigaÈ›i în sus" "%1$s, %2$s, %3$s" "ПоиÑковый запроÑ" "Отправить запроÑ" "Открыть доÑтуп пользователю %s" "%1$s, %2$s" ">999" "ОТКЛ." "ПоиÑк" "Перейти на главный Ñкран" "ВКЛ." "Показать вÑе" "ГолоÑовой поиÑк" "Открыть доÑтуп" "Выбрать приложение" "ПоиÑк" "%1$s, %2$s, %3$s" "Удалить запроÑ" "Перейти вверх" "Свернуть" "Готово" "Другие параметры" "අවසà·à¶± වූ" "සෙවුම් විමසුම" "999+" "ඉහලට සංචà·à¶½à¶±à¶º කරන්න" "විමසුම යොමු කරන්න" "යෙදුමක් à¶à·à¶»à¶±à·Šà¶±" "%1$s, %2$s" "සොයන්න..." "විමසුම හිස් කරන්න" "සියල්ල බලන්න" "%1$s, %2$s, %3$s" "සමඟ බෙදà·à¶œà¶±à·Šà¶±" "%s සමඟ බෙදà·à¶œà¶±à·Šà¶±" "ගෙදරට සංචà·à¶½à¶±à¶º කරන්න" "ක්â€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’" "සෙවීම" "à¶à·€à¶à·Š විකල්ප" "හඬ සෙවීම" "හකුළන්න" "ක්â€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’" "VymazaÅ¥ dopyt" "HľadaÅ¥" "PrejsÅ¥ na plochu" "ZobraziÅ¥ vÅ¡etko" "ZdieľaÅ¥ pomocou" "ZAP." "Hlasové vyhľadávanie" "ZbaliÅ¥" "Vyhľadať…" "Vyhľadávacà dopyt" "ZdieľaÅ¥ pomocou %s" "%1$s, %2$s" "ÄŽalÅ¡ie možnosti" "PrejsÅ¥ hore" "%1$s, %2$s, %3$s" "VYP." "OdoslaÅ¥ dopyt" "Zvoľte aplikáciu" "Hotovo" "999+" "Krmarjenje navzgor" "Deljenje z:" "Iskanje" "IZKLOPLJENO" "Deljenje z" "Krmarjenje domov" "Glasovno iskanje" "Strni" "Izbira aplikacije" "Iskalna poizvedba" "%1$s, %2$s, %3$s" "KonÄano" "Iskanje …" "PoÅ¡iljanje poizvedbe" "Pokaži vse" "VKLOPLJENO" "%1$s, %2$s" "Izbris poizvedbe" "999+" "VeÄ možnosti" "Orientohu për në shtëpi" "Shpërnda publikisht me %s" "Dërgo pyetjen" "Kërkim me zë" "Shpalos" "U krye!" "Kërko..." "%1$s, %2$s" "%1$s, %2$s, %3$s" "JOAKTIV" "999+" "Zgjidh një aplikacion" "Opsione të tjera" "Kërko pyetjen" "Ngjitu lart" "Shikoji të gjitha" "Pastro pyetjen" "Kërko" "Shpërnda publikisht me" "AKTIV" "Одлазак на Почетну" "%1$s, %2$s, %3$s" "Избор апликације" "Претражите..." "Дели Ñа апликацијом %s" "УКЉУЧИ" "Још опција" "ИСКЉУЧИ" "Слање упита" "%1$s, %2$s" ">999" "ГлаÑовна претрага" "Кретање нагоре" "Скупи" "БриÑање упита" "Претрага" "Готово" "Дели Ñа" "Упит за претрагу" "Прикажи Ñве" "AV" "%1$s, %2$s, %3$s" "Dela med" ">999" "Visa alla" "%1$s, %2$s" "Sök …" "PÃ…" "Sök" "Ta bort frÃ¥gan" "Navigera uppÃ¥t" "Fler alternativ" "Dela med %s" "Klart" "Röstsökning" "SökfrÃ¥ga" "Skicka frÃ¥ga" "Välj en app" "Visa startsidan" "Komprimera" "Tafuta" "%1$s, %2$s" "Shiriki na:" "Shiriki na %s" "Hoja ya utafutaji" "Chagua programu" "999+" "Futa hoja" "Nenda mwanzo" "Tafuta…" "Wasilisha hoja" "Tafuta kwa kutamka" "Nenda juu" "Nimemaliza" "Chaguo zaidi" "Kunja" "Angalia zote" "IMEZIMWA" "%1$s, %2$s, %3$s" "IMEWASHWA" 8dp 580dp 20dp 8dp 64dp 5 24dp 16dp "à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯" "தேடல௠வினவலà¯" "à®®à¯à®Ÿà®•à¯à®•à¯" "மேலே வழிசெலà¯à®¤à¯à®¤à¯" "%s உடன௠பகிரà¯" "இதனà¯à®Ÿà®©à¯ பகிரà¯" "தேடà¯..." "%1$s, %2$s, %3$s" "à®®à¯à®•à®ªà¯à®ªà®¿à®±à¯à®•à¯ வழிசெலà¯à®¤à¯à®¤à¯" "பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®•" "%1$s, %2$s" "மேலà¯à®®à¯ விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯" "வினவலை அழி" "வினவலைச௠சமரà¯à®ªà¯à®ªà®¿" "கà¯à®°à®²à¯ தேடலà¯" "இயகà¯à®•à¯" "தேடà¯" "999+" "எலà¯à®²à®¾à®®à¯ காடà¯à®Ÿà¯" "சà¯à®°à¯à®•à¯à®•à¯" "à°ªà±à°°à°¶à±à°¨à°¨à± à°•à±à°²à°¿à°¯à°°à± చేయి" "ఆఫౠచేయి" "వీరితో à°à°¾à°—à°¸à±à°µà°¾à°®à±à°¯à°‚ చేయి" "పైకి నావిగేటౠచేయండి" "à°…à°¨à±à°µà°°à±à°¤à°¨à°¾à°¨à±à°¨à°¿ à°Žà°‚à°šà±à°•à±‹à°‚à°¡à°¿" "%1$s, %2$s, %3$s" "%1$s, %2$s" "à°•à±à°¦à°¿à°‚à°šà°‚à°¡à°¿" "వాయిసౠశోధన" "శోధించà±" "%sతో à°à°¾à°—à°¸à±à°µà°¾à°®à±à°¯à°‚ చేయి" "999+" "à°…à°¨à±à°¨à±€ చూడండి" "ఆనౠచేయి" "పూరà±à°¤à°¯à°¿à°‚ది" "శోధించà±..." "మరినà±à°¨à°¿ ఎంపికలà±" "హోమà±â€Œà°•à± నావిగేటౠచేయండి" "à°ªà±à°°à°¶à±à°¨à°¨à°¿ సమరà±à°ªà°¿à°‚à°šà±" "à°ªà±à°°à°¶à±à°¨ శోధించండి" "ค้นหาด้วยเสียง" "เสร็จสิ้น" "999+" "นำทางไปหน้าà¹à¸£à¸" "à¹à¸Šà¸£à¹Œà¸à¸±à¸š" "เปิด" "ยุบ" "ปิด" "à¹à¸Šà¸£à¹Œà¸à¸±à¸š %s" "ส่งข้à¸à¸„วามค้นหา" "%1$s, %2$s" "%1$s, %2$s, %3$s" "นำทางขึ้น" "ตัวเลืà¸à¸à¸à¸·à¹ˆà¸™" "ดูทั้งหมด" "ข้à¸à¸„วามค้นหา" "ค้นหา…" "ค้นหา" "เลืà¸à¸à¹à¸à¸›" "ล้างข้à¸à¸„วามค้นหา" "Maghanap…" "I-collapse" "Ibahagi sa/kay %s" "Tapos na" "Mag-navigate patungo sa home" "%1$s, %2$s, %3$s" "I-ON" "Paghahanap gamit ang boses" "Ibahagi sa/kay" "Pumili ng isang app" "Mag-navigate pataas" "Isumite ang query" "%1$s, %2$s" "I-OFF" "Maghanap" "Tingnan lahat" "I-clear ang query" "999+" "Higit pang mga opsyon" "Query sa paghahanap" "Bir uygulama seçin" "Daralt" "Sorguyu temizle" "999+" "Åžununla paylaÅŸ" "AÇ" "Yukarı git" "%1$s, %2$s" "DiÄŸer seçenekler" "%1$s, %2$s, %3$s" "Tamamlandı" "Ara…" "Sorguyu gönder" "%s ile paylaÅŸ" "KAPAT" "Arama sorgusu" "Sesli arama" "Tümünü göster" "Ana ekrana git" "Ara" "Пошуковий запит" "ВИМК." "Вибрати програму" "Пошук" "999+" "ПереглÑнути вÑÑ–" "ГолоÑовий пошук" "ÐадіÑлати через %s" "%1$s, %2$s, %3$s" "Пошук…" "УВІМК." "Перейти на головний" "Інші опції" "%1$s, %2$s" "Згорнути" "ОчиÑтити запит" "Готово" "ÐадіÑлати запит" "ÐадіÑлати через" "Перейти вгору" "سکیڑیں" "استÙسار صا٠کریں" "استÙسار جمع کرائیں" "اشتراک کریں مع" "اوپر نیویگیٹ کریں" "Ûوم پر نیویگیٹ کریں" "Ø¢Ù" "صوتی تلاش" "مزید اختیارات" "â€%s Ú©Û’ ساتھ اشتراک کریں" "تلاش کریں…" "استÙسار تلاش کریں" "ایک ایپ منتخب کریں" "آن" "سبھی دیکھیں" "تلاش کریں" "‎999+‎" "%1$s, %2$s, %3$s" "%1$s, %2$s" "ÛÙˆ گیا" "%1$s, %2$s, %3$s" "Yuqoriga o‘tish" "So‘rovni tozalash" "Tayyor" "Dastur tanlang" "Boshiga o‘tish" "Qidirish" "%1$s, %2$s" "Barchasini ko‘rish" "So‘rovni izlash" "Qidirish…" "O‘CHIQ" "Ovozli qidiruv" "So‘rov yaratish" "Qo‘shimcha sozlamalar" "Yig‘ish" "YONIQ" "999+" "Bo‘lishish:" false 0px "999+" "TẮT" "Gá»i truy vấn" "Xóa truy vấn" "Chá»n má»™t ứng dụng" "Tìm kiếm…" "Chia sẻ vá»›i %s" "Thêm tùy chá»n" "Xong" "Tìm kiếm bằng giá»ng nói" "%1$s, %2$s" "Xem tất cả" "BẬT" "Tìm kiếm" "%1$s, %2$s, %3$s" "Tìm kiếm truy vấn" "Chia sẻ vá»›i" "Äiá»u hÆ°á»›ng lên trên" "Äiá»u hÆ°á»›ng vá» trang chủ" "Thu gá»n" 3 true true 4 5 192dip false 256dip - 50%
- 60%
false 192dip - 70%
- 90%
5 - 45%
- 72%
"å…³é—" "æ交查询" "转到上一层级" "999+" "更多选项" "è¯éŸ³æœç´¢" "收起" "转到主å±å¹•" "%1$s:%2$s" "分享方å¼" "å¼€å¯" "æœç´¢" "选择应用" "查看全部" "%1$s - %2$s:%3$s" "æœç´¢æŸ¥è¯¢" "完æˆ" "清除查询" "通过%s分享" "æœç´¢â€¦" "清除查詢" "999 +" "更多é¸é …" "æ交查詢" "收åˆ" "與「%sã€åˆ†äº«" "å‘上ç€è¦½" "é–‹å•Ÿ" "語音æœå°‹" "顯示全部" "æœå°‹â€¦" "é¸æ“‡æ‡‰ç”¨ç¨‹å¼" "æœå°‹" "%1$s (%2$s):%3$s" "完æˆ" "%1$s:%2$s" "æœå°‹æŸ¥è©¢" "分享å°è±¡" "關閉" "ç€è¦½ä¸»é " "æ交查詢" "%1$s - %2$s:%3$s" "é¸æ“‡åˆ†äº«å°è±¡" "%1$s:%2$s" "查看全部" "é¸æ“‡æ‡‰ç”¨ç¨‹å¼" "清除查詢" "更多é¸é …" "與「%sã€åˆ†äº«" "æœå°‹" "æœå°‹æŸ¥è©¢" "語音æœå°‹" "å‘上ç€è¦½" "關閉" "ç€è¦½é¦–é " "完æˆ" "é–‹å•Ÿ" "999+" "收åˆ" "æœå°‹â€¦" "Iyasesha..." "%1$s, %2$s" "Hambisa umbuzo" "Yabelana no-%s" "%1$s, %2$s, %3$s" "Izinketho eziningi" "Kwenziwe" "Umbuzo wosesho" "Zulazulela phezulu" "Sula inkinga" "Sesha" "VULIWE" "Yabelana no-" "Goqa" "VALIWE" "Ukusesha ngezwi" "Khetha uhlelo lokusebenza" "Zulazulela ekhaya" "Buka konke" "999+" 800dp 120dp 20dp 128dp #44000000 280dp 14sp 0dp %1$d / %2$d 8dp @android:color/transparent 14sp 24dp -1px 264dp 0dp #0F000000 #14000000 56dp 150 #1AFFFFFF 4dp #FFFF6E6E 8dp 32dp #323232 6dp 2 #FFD50000 16dp 12dp 40dp -1px 16dp 24dp android.support.design.widget.AppBarLayout$ScrollingViewBehavior 24dp #0A000000 256dp android.support.design.widget.BottomSheetBehavior 72dp #2EFFFFFF 6dp 12sp 6dp 14dp 0.5dp 0dp @dimen/design_snackbar_padding_vertical 576dp 24dp 320dp 1 2dp 320dp 160dp 0dp 0dp 240dp History TITLE tuPrologMobile New/Edit Theory Import Theory to Database Ready: Settings Delete Theory Action Import Library .. Library fullname Find query/theory BODY Add Remove Edit Export Path Libraries Export Theory Example action Hello blank fragment List Theories Close navigation drawer Find . BaseActivity Add Theory Description Confirm Settings Currently loaded libraries: Home There are no Theories yet.\nCreate or import one to start working. Set a Theory Are you sure you want to delete all the queries from the history? Library Manager TheoryListActivity Share Theory Import Library Description HISTORY Import Theory Edit Theory History Browse Are you sure you want to delete all the theories from the history? About Open navigation drawer Hello World, TesiActivity! OTHER SETTINGS Settings tuProlog Mobile Library file Select Theory Solve a Query BaseActivity2 prova icone Theories Search Web Section 1 Library New Theory Section 3 Section 2 64dp
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/2p-android/trunk/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
deleted file mode 100644
index f6ae4e8..0000000
--- a/2p-android/trunk/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-android/trunk/build/intermediates/manifests/full/debug/AndroidManifest.xml b/2p-android/trunk/build/intermediates/manifests/full/debug/AndroidManifest.xml
deleted file mode 100644
index eea8e95..0000000
--- a/2p-android/trunk/build/intermediates/manifests/full/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-01cd438d4d042ad84050070fe4790df730f6ca55.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-01cd438d4d042ad84050070fe4790df730f6ca55.jar
deleted file mode 100644
index d3f5160..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-01cd438d4d042ad84050070fe4790df730f6ca55.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-1a3e98e94c169f84005457fabff2079887344cc1.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-1a3e98e94c169f84005457fabff2079887344cc1.jar
deleted file mode 100644
index 79774fe..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-1a3e98e94c169f84005457fabff2079887344cc1.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-51a8a0893cc7fc1492d4890632011e7e3dbda6d2.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-51a8a0893cc7fc1492d4890632011e7e3dbda6d2.jar
deleted file mode 100644
index 5a3764b..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-51a8a0893cc7fc1492d4890632011e7e3dbda6d2.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-5acc65b941a830f2d8259cc64b28bfbeb19f0ac0.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-5acc65b941a830f2d8259cc64b28bfbeb19f0ac0.jar
deleted file mode 100644
index 2cd88c3..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-5acc65b941a830f2d8259cc64b28bfbeb19f0ac0.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-92040bde6ddbeb05fc866fea11f9c501f66aa6c0.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-92040bde6ddbeb05fc866fea11f9c501f66aa6c0.jar
deleted file mode 100644
index 52c5325..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-92040bde6ddbeb05fc866fea11f9c501f66aa6c0.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-b981c15a1b7ec8fb806116019aebf00cf14a60a6.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-b981c15a1b7ec8fb806116019aebf00cf14a60a6.jar
deleted file mode 100644
index 82f5414..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/classes-b981c15a1b7ec8fb806116019aebf00cf14a60a6.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/internal_impl-23.4.0-f7ab37ebeaf2f83df00889eedcf1588dbd04dbf0.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/internal_impl-23.4.0-f7ab37ebeaf2f83df00889eedcf1588dbd04dbf0.jar
deleted file mode 100644
index 0c837a7..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/internal_impl-23.4.0-f7ab37ebeaf2f83df00889eedcf1588dbd04dbf0.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/support-annotations-23.4.0-72a0aec618159142d0cbd4693aef4bf965d8e32e.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/support-annotations-23.4.0-72a0aec618159142d0cbd4693aef4bf965d8e32e.jar
deleted file mode 100644
index 46c71f4..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/support-annotations-23.4.0-72a0aec618159142d0cbd4693aef4bf965d8e32e.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/pre-dexed/debug/tuprolog-be914f3071d7c32a62f0eb7557528de5f456fcb8.jar b/2p-android/trunk/build/intermediates/pre-dexed/debug/tuprolog-be914f3071d7c32a62f0eb7557528de5f456fcb8.jar
deleted file mode 100644
index 5a0b924..0000000
Binary files a/2p-android/trunk/build/intermediates/pre-dexed/debug/tuprolog-be914f3071d7c32a62f0eb7557528de5f456fcb8.jar and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml
deleted file mode 100644
index d2e6e37..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_in.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml
deleted file mode 100644
index 80a90a4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim-v21/design_bottom_sheet_slide_out.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_fade_in.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
deleted file mode 100644
index 3cdbcbf..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_fade_out.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
deleted file mode 100644
index 1713965..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
deleted file mode 100644
index 01ee1ea..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
deleted file mode 100644
index 0cda7b6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
deleted file mode 100644
index d091118..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
deleted file mode 100644
index a3fbe15..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
deleted file mode 100644
index 91aea58..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
deleted file mode 100644
index 351d611..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
deleted file mode 100644
index ee02b61..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
deleted file mode 100644
index 5954de6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml
deleted file mode 100644
index fbccf2d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_in.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml
deleted file mode 100644
index aa9cb7b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_bottom_sheet_slide_out.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_fab_in.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_fab_in.xml
deleted file mode 100644
index 7486642..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_fab_in.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_fab_out.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_fab_out.xml
deleted file mode 100644
index 142b371..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_fab_out.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml
deleted file mode 100644
index a02863b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml b/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml
deleted file mode 100644
index ea1d123..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index c5b343f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index ce6e44a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
deleted file mode 100644
index ded2118..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index e68c54b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index 3837926..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
deleted file mode 100644
index b6189f5..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
deleted file mode 100644
index 50e01e9..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
deleted file mode 100644
index c3796d4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
deleted file mode 100644
index c36a191..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_search_url_text.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
deleted file mode 100644
index 0f86d23..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
deleted file mode 100644
index 6846579..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
deleted file mode 100644
index a448852..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
deleted file mode 100644
index 0c48dd8..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
deleted file mode 100644
index a004f63..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index f534f58..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index cbc36f6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index c31cf86..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 90e9c39..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index fb38e86..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 6396605..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 3d30b77..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 38a55f9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 50a350f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 1e0d4c3..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index ddf2de1..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index 6807c28..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 9240aed..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index 1909397..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 79fcbf9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 02c783f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index ef8c2b0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 2bd4fc1..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 3a7e98a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 4e921f0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index 8a38912..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 100039e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 86ef384..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 289ca68..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 9866234..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index 4f175a0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 3becd3a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 7ffeb1d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 658b694..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index c10a7bf..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index d290ccb..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index e66354d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index dc1616c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index e7c999e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 2db7619..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 08293d0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 0d6f404..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 67f977a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index a171b9e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index b937eaa..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index c5ef710..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 1a39963..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 43fd9ee..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 2cb0180..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 21f9b79..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 42e291e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 18dc90c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/drawer_shadow.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/drawer_shadow.9.png
deleted file mode 100644
index fdb7478..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/drawer_shadow.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_drawer.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_drawer.png
deleted file mode 100644
index d9d0d18..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_drawer.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_about.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_about.png
deleted file mode 100644
index ff7a299..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_about.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_compose.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_compose.png
deleted file mode 100644
index f4836f8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_compose.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_compose2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_compose2.png
deleted file mode 100644
index d1d8f95..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_compose2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_delete.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_delete.png
deleted file mode 100644
index 97b8883..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_delete.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_delete2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_delete2.png
deleted file mode 100644
index d3ca2b8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_delete2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_edit.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_edit.png
deleted file mode 100644
index 699b89a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_edit.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_edit2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_edit2.png
deleted file mode 100644
index 350b9c4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_edit2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_import.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_import.png
deleted file mode 100644
index ee01b19..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_import.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_import2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_import2.png
deleted file mode 100644
index 6dc61f4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_import2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_list.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_list.png
deleted file mode 100644
index 987f11b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_list.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png
deleted file mode 100644
index 48d4728..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png
deleted file mode 100644
index 5a17f90..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_save.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_save.png
deleted file mode 100644
index 58ca7d6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_save.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_search.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_search.png
deleted file mode 100644
index eb717be..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_search.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_search2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_search2.png
deleted file mode 100644
index caad34d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_search2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_set_as.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_set_as.png
deleted file mode 100644
index a081ddf..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_set_as.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_set_as2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_set_as2.png
deleted file mode 100644
index b2c2be6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_set_as2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_share.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_share.png
deleted file mode 100644
index 62c4002..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_share.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_share2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_share2.png
deleted file mode 100644
index 5030b59..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/ic_menu_share2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/icon.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/icon.png
deleted file mode 100644
index 750d2d3..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/icon.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/splash.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/splash.png
deleted file mode 100644
index 3cdcedf..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-hdpi/splash.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldpi/freccia_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldpi/freccia_burned.png
deleted file mode 100644
index 65af7b8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldpi/freccia_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldpi/icon.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldpi/icon.png
deleted file mode 100644
index 183f548..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldpi/icon.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index e2414d4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 8e6b11f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 645af27..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 8e188de..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index fba9cdb..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 12210f3..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 03f5115..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 44670d1..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 316b535..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index be4b613..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 514a08c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index eaf546d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 0ff2b9f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 73b8b09..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 6fdd01c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 1a6aa9b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 60d647d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 65258cd..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 241df42..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index b18cdf2..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index b7d0119..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 441869a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 3a6dfe5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index bbd2930..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a0b4fda..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index a0fb0b8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 884d760..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 32cae24..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 8ea96f4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index d81b526..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 1a5a2b6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index 9fa0706..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 94d987c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index 0770f79..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 227ab6c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 0b6e858..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index d7c003e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index e3d41d4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index c33227f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index d9352a2..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index 3c6d829..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 0e01f78..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index b0346f5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 551eb78..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 13b2d5b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index fe13750..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 3becd3a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 0678971..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 9180502..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index f7aa675..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index f16bf97..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index 4a3adf3..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index b2b9f27..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 81256ee..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 4b6a668..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 942352e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 0eaa204..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 53a5efd..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 9ef8a4e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index e129e3e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index a354a15..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 7a4c525..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index d9b3186..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index be107a9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 2311405..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index b9ce196..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 0cb1ce8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/barra_switch.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/barra_switch.png
deleted file mode 100644
index 0241f48..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/barra_switch.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/drawer_shadow.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/drawer_shadow.9.png
deleted file mode 100644
index dbafea9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/drawer_shadow.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/freccia2_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/freccia2_burned.png
deleted file mode 100644
index ab29812..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/freccia2_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_drawer.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_drawer.png
deleted file mode 100644
index de1a748..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_drawer.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_about.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_about.png
deleted file mode 100644
index 04b01e6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_about.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_compose.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_compose.png
deleted file mode 100644
index c55be27..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_compose.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_edit.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_edit.png
deleted file mode 100644
index eb6b183..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_edit.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_import.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_import.png
deleted file mode 100644
index a7dd13c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_import.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_list.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_list.png
deleted file mode 100644
index 49af50c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_list.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_list2.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_list2.png
deleted file mode 100644
index 49af50c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_list2.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_save.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_save.png
deleted file mode 100644
index 97fab1e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/ic_menu_save.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/icon.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/icon.png
deleted file mode 100644
index f5e437e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/icon.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_exit.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_exit.png
deleted file mode 100644
index 2579bf1..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_exit.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_history.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_history.png
deleted file mode 100644
index 5a64291..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_history.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_history_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_history_burned.png
deleted file mode 100644
index 6ef4c92..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_history_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_historyp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_historyp.png
deleted file mode 100644
index 391720a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_historyp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_historyp_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_historyp_burned.png
deleted file mode 100644
index 2d18804..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_historyp_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_home.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_home.png
deleted file mode 100644
index 8ed6c89..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_home.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_home_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_home_burned.png
deleted file mode 100644
index 65cfdb4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_home_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_homep_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_homep_burned.png
deleted file mode 100644
index fb87e2d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_homep_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_library.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_library.png
deleted file mode 100644
index fcfdc5f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_library.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_library_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_library_burned.png
deleted file mode 100644
index 32fe13d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_library_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_libraryp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_libraryp.png
deleted file mode 100644
index e7cf2a5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_libraryp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_libraryp_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_libraryp_burned.png
deleted file mode 100644
index a6cbe9f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_libraryp_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_query.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_query.png
deleted file mode 100644
index ae43eeb..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_query.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settings.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settings.png
deleted file mode 100644
index 3ce18f7..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settings.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settings_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settings_burned.png
deleted file mode 100644
index a1d5f14..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settings_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settingsp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settingsp.png
deleted file mode 100644
index da61d46..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settingsp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settingsp_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settingsp_burned.png
deleted file mode 100644
index 9e4b300..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_settingsp_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_theory.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_theory.png
deleted file mode 100644
index 66f76c9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_theory.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_web.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_web.png
deleted file mode 100644
index 5ef58b4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_web.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_web_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_web_burned.png
deleted file mode 100644
index 88ea303..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_web_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_webp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_webp.png
deleted file mode 100644
index 92c8f23..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_webp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_webp_burned.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_webp_burned.png
deleted file mode 100644
index a2d14e9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/logo_webp_burned.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/switch_off.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/switch_off.png
deleted file mode 100644
index 91cff2e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/switch_off.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/switch_on.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/switch_on.png
deleted file mode 100644
index da9b87a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-mdpi/switch_on.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn.xml
deleted file mode 100644
index ee15d4a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- -
-
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn_browse.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn_browse.xml
deleted file mode 100644
index 93d99c6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn_browse.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn_settings.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn_settings.xml
deleted file mode 100644
index a2345a0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/btn_settings.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/edtstyle.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/edtstyle.xml
deleted file mode 100644
index 61a942c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/edtstyle.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/edtstyleb.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/edtstyleb.xml
deleted file mode 100644
index 7091589..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/edtstyleb.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/historybtn.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/historybtn.xml
deleted file mode 100644
index 64e1682..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/historybtn.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/homebtn.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/homebtn.xml
deleted file mode 100644
index ec0372f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/homebtn.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/librarybtn.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/librarybtn.xml
deleted file mode 100644
index 8a52878..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/librarybtn.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/settingsbtn.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/settingsbtn.xml
deleted file mode 100644
index c7b8fbc..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/settingsbtn.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/shape_switch.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/shape_switch.xml
deleted file mode 100644
index 60a0c34..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/shape_switch.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/switchstyle.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/switchstyle.xml
deleted file mode 100644
index 1b7f6ef..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/switchstyle.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/webbtn.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/webbtn.xml
deleted file mode 100644
index be09052..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-nodpi/webbtn.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
deleted file mode 100644
index 60920d2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
deleted file mode 100644
index 8489e80..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
deleted file mode 100644
index cb757b4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
deleted file mode 100644
index 5eacd5e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index fdec4e7..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 6b754b2..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 2cb1fad..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 19c161d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a11a793..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 10d6196..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 0b2505f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 365c467..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 061990d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index a07ebea..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index e84fe4d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index a716788..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index daf52c5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index dead972..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index cc41394..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index d250518..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index c695e31..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 0ed85a8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 646caba..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 65ae95b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index a56a363..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 239fdfb..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index cba3706..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 361cf48..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index b5dfa70..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index 23e8ec5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 3becd3a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 8965f3e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index d1bffd0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index defab44..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 6a609c5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index d4678b5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 5b84092..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index b467278..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index f4a52e9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index aad380a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index bc7454c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index d9d8399..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 0f339ae..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 81e2402..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 4fbd907..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index dd0a964..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index c5a2319..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 1b69efe..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index fd13b79..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 96a5832..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 8053d16..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi/drawer_shadow.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi/drawer_shadow.9.png
deleted file mode 100644
index 9832f72..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi/drawer_shadow.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi/ic_drawer.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi/ic_drawer.png
deleted file mode 100644
index 1bdcd65..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xhdpi/ic_drawer.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index e0411c0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 96c5ead..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index ea9f8a0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9e8a671..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index d818583..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png
deleted file mode 100644
index 7e7f39c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png
deleted file mode 100644
index 490098c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_rating_star_on_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 2d20150..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index ca9237c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index b9c2101..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 0747df5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index 594b499..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index cd20661..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png
deleted file mode 100644
index 00659e6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_go_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index e328742..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 0ba498a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index 575aa76..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 28b2dce..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index ce16e11..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 5457ef9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index ea22c38..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 4f78ca7..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 0300cba..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index f640cbe..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 6b0b04e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index ebf83a6..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 8065ce2..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 195b9b4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 83e741b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index e8cf10a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 2fc23a0..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index b643f2f..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index ec17300..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 650b490..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 6d4ab34..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 1ed6be9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 001d652..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 35940e3..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 5195bbe..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 75e54e7..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 5ed15a8..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 8434a33..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 39ee874..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index e806d42..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index c72f1a2..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 8ee3d7c..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 24a2d7b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi/drawer_shadow.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi/drawer_shadow.9.png
deleted file mode 100644
index b738e7a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi/drawer_shadow.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi/ic_drawer.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi/ic_drawer.png
deleted file mode 100644
index e8dc2e4..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxhdpi/ic_drawer.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index c4f38cc..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 93ff40e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9bd5dda..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a4d9e8e..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 893d3b5..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index b8c9cfa..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png
deleted file mode 100644
index 8287475..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_ab_back_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png
deleted file mode 100644
index 915d489..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_clear_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index c8fc12a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 8df8603..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png
deleted file mode 100644
index 4d59e8d..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_moreoverflow_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 6bc1332..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 0341a44..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index be3c6fe..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png
deleted file mode 100644
index a61c718..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index c82b079..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 26d043a..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 8004cec..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index bd51289..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png
deleted file mode 100644
index 7ad23e2..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_voice_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 0190995..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 859b349..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index b5900e9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 6ef2c21..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index cbfcb0b..0000000
Binary files a/2p-android/trunk/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
deleted file mode 100644
index 284160c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
deleted file mode 100644
index 5d74e34..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
deleted file mode 100644
index 751fa73..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
deleted file mode 100644
index e476c6d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
deleted file mode 100644
index 35a51e2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
deleted file mode 100644
index 5d8dd2b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
deleted file mode 100644
index 34ce78d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
deleted file mode 100644
index bfc5a6b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
deleted file mode 100644
index 67fc56a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
deleted file mode 100644
index b003427..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
deleted file mode 100644
index a653f2e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
deleted file mode 100644
index 6b701e7..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
deleted file mode 100644
index 4f70795..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
deleted file mode 100644
index 5597766..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
deleted file mode 100644
index 13781da..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
deleted file mode 100644
index 14405c3..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
deleted file mode 100644
index 8f9ae0b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
deleted file mode 100644
index 501e078..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
- -
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
deleted file mode 100644
index 53f3c33..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
- -
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
deleted file mode 100644
index 4d1082f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
deleted file mode 100644
index cada217..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
- -
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
deleted file mode 100644
index db8fd94..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
deleted file mode 100644
index e35262c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
deleted file mode 100644
index 835a195..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
deleted file mode 100644
index fa54901..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
deleted file mode 100644
index c7f511d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/design_fab_background.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/design_fab_background.xml
deleted file mode 100644
index beb536d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/design_fab_background.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml b/2p-android/trunk/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml
deleted file mode 100644
index 33484e8..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml
deleted file mode 100644
index 6c6bb6f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout-sw600dp-v13/design_layout_snackbar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
deleted file mode 100644
index 9bccca2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
deleted file mode 100644
index 4cc99ef..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
deleted file mode 100644
index b97ddb4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
deleted file mode 100644
index 183a521..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
deleted file mode 100644
index 18f6277..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
deleted file mode 100644
index 132ed46..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
deleted file mode 100644
index c0be86c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
deleted file mode 100644
index e43d927..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
deleted file mode 100644
index ad7c61a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
deleted file mode 100644
index 03960ee..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
deleted file mode 100644
index 5381361..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
deleted file mode 100644
index 5c3aeac..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
deleted file mode 100644
index 035c06b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
deleted file mode 100644
index a9a9eab..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
deleted file mode 100644
index 24c0526..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
deleted file mode 100644
index fde2d50..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
deleted file mode 100644
index 7cd0f0d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
deleted file mode 100644
index 30cc145..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
deleted file mode 100644
index c18c60d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
deleted file mode 100644
index 550f07a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
deleted file mode 100644
index 9ca2fa4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
deleted file mode 100644
index 4dcfa5e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
deleted file mode 100644
index b4a6ab7..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_search_view.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_search_view.xml
deleted file mode 100644
index c33fbbe..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_search_view.xml
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
deleted file mode 100644
index b389a66..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_description.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_description.xml
deleted file mode 100644
index 2833dff..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_description.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_history.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_history.xml
deleted file mode 100644
index c1b086b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_history.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_home.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_home.xml
deleted file mode 100644
index d4a4753..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_home.xml
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_import.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_import.xml
deleted file mode 100644
index 396c06f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_import.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_library_import.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_library_import.xml
deleted file mode 100644
index abf0a7f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_library_import.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_library_manager.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_library_manager.xml
deleted file mode 100644
index dabef47..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_library_manager.xml
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_search.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_search.xml
deleted file mode 100644
index 808e815..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_search.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_settings.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_settings.xml
deleted file mode 100644
index ce40662..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/activity_settings.xml
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/btn_text.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/btn_text.xml
deleted file mode 100644
index ce24d7c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/btn_text.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml
deleted file mode 100644
index ff95b89..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml
deleted file mode 100644
index 596244b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml
deleted file mode 100644
index ff95149..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml
deleted file mode 100644
index 958ff93..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml
deleted file mode 100644
index 135fdd7..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml
deleted file mode 100644
index 4482925..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_menu_item_action_area.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item.xml
deleted file mode 100644
index 286ee13..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml
deleted file mode 100644
index 6d9906f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml
deleted file mode 100644
index 0a8e96a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml
deleted file mode 100644
index f433b15..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml
deleted file mode 100644
index fcfbaaf..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml
deleted file mode 100644
index 18acc3f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/drawer_list_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/drawer_list_item.xml
deleted file mode 100644
index 65f74ec..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/drawer_list_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/file_row.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/file_row.xml
deleted file mode 100644
index 4b6760d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/file_row.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/fragment_query.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/fragment_query.xml
deleted file mode 100644
index 4d25baa..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/fragment_query.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/fragment_theory.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/fragment_theory.xml
deleted file mode 100644
index 2ec0fe0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/fragment_theory.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_item.xml
deleted file mode 100644
index 7e85f50..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_item.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_libraries.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_libraries.xml
deleted file mode 100644
index 5e1ba87..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_libraries.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_view_header_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_view_header_layout.xml
deleted file mode 100644
index 03373a2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/list_view_header_layout.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/main.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/main.xml
deleted file mode 100644
index 9669ec1..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/main.xml
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/navigation_drawer_base_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/navigation_drawer_base_layout.xml
deleted file mode 100644
index ef9c288..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/navigation_drawer_base_layout.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_media_action.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_media_action.xml
deleted file mode 100644
index d358b94..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_media_action.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
deleted file mode 100644
index 1e1e52a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
deleted file mode 100644
index 3ea5559..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
deleted file mode 100644
index 3b0f191..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_lines.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
deleted file mode 100644
index 94d6b27..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_media.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_media.xml
deleted file mode 100644
index b734122..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_media.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
deleted file mode 100644
index b05df6e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
deleted file mode 100644
index 9078189..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
deleted file mode 100644
index 6f03f2a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
deleted file mode 100644
index cab9316..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
deleted file mode 100644
index 049128c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/splashscreen.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/splashscreen.xml
deleted file mode 100644
index f7d839e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/splashscreen.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
deleted file mode 100644
index bb3dcfc..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/tab_layout.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/tab_layout.xml
deleted file mode 100644
index 0cca8be..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/tab_layout.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/theories_list.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/theories_list.xml
deleted file mode 100644
index 6f02fe1..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/theories_list.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/theories_row.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/theories_row.xml
deleted file mode 100644
index 64c58c0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/theories_row.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/layout/theory_edit.xml b/2p-android/trunk/build/intermediates/res/merged/debug/layout/theory_edit.xml
deleted file mode 100644
index d029075..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/layout/theory_edit.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/library_import.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/library_import.xml
deleted file mode 100644
index 81d9580..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/library_import.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/library_manager.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/library_manager.xml
deleted file mode 100644
index ec33bcb..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/library_manager.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/list_page_menu.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/list_page_menu.xml
deleted file mode 100644
index 8fddc0e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/list_page_menu.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
- -
-
- -
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/main_page_menu.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/main_page_menu.xml
deleted file mode 100644
index df824eb..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/main_page_menu.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_desc_theory.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_desc_theory.xml
deleted file mode 100644
index be8b5a0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_desc_theory.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- -
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_description.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_description.xml
deleted file mode 100644
index bddc0ea..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_description.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_history.xml b/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_history.xml
deleted file mode 100644
index 32ead84..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/menu/menu_history.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- -
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-af/values-af.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-af/values-af.xml
deleted file mode 100644
index 4e45f6e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-af/values-af.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-am/values-am.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-am/values-am.xml
deleted file mode 100644
index a01eb10..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-am/values-am.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ወደ መáŠáˆ» á‹á‹³áˆµáˆ±"
- "%1$sᣠ%2$s"
- "%1$sᣠ%2$sᣠ%3$s"
- "ወደ ላዠá‹á‹³áˆµáˆ±"
- "ተጨማሪ አማራጮች"
- "ተከናá‹áŠ—áˆ"
- "áˆáˆ‰áŠ•áˆ á‹áˆ˜áˆáŠ¨á‰±"
- "መተáŒá‰ ሪያ á‹áˆáˆ¨áŒ¡"
- "ጠáቷáˆ"
- "በáˆá‰·áˆ"
- "áˆáˆáŒâ€¦"
- "መጠá‹á‰… አጽዳ"
- "የáለጋ ጥያቄ"
- "áለጋ"
- "መጠá‹á‰… ያስረáŠá‰¡"
- "የድáˆá… áለጋ"
- "ከሚከተለዠጋሠያጋሩ"
- "ከ%s ጋሠያጋሩ"
- "ሰብስብ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ar/values-ar.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ar/values-ar.xml
deleted file mode 100644
index c1ca9a6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ar/values-ar.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "التنقل إلى الشاشة الرئيسية"
- "%1$s، %2$s"
- "%1$s، %2$s، %3$s"
- "التنقل إلى أعلى"
- "خيارات إضاÙية"
- "تم"
- "عرض الكل"
- "اختيار تطبيق"
- "إيقاÙ"
- "تشغيل"
- "بØث…"
- "Ù…ØÙˆ طلب البØØ«"
- "طلب البØØ«"
- "بØØ«"
- "إرسال طلب البØØ«"
- "البØØ« الصوتي"
- "مشاركة مع"
- "â€Ù…شاركة مع %s"
- "تصغير"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
deleted file mode 100644
index 791fdf5..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- "EvÉ™ get"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Yuxarı get"
- "Daha çox seçim"
- "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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-bg/values-bg.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-bg/values-bg.xml
deleted file mode 100644
index 16d03ec..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-bg/values-bg.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Придвижване към „Ðачало“"
- "„%1$s“ – %2$s"
- "„%1$s“, „%2$s“ – %3$s"
- "Придвижване нагоре"
- "Още опции"
- "Готово"
- "Вижте вÑички"
- "Изберете приложение"
- "ИЗКЛ."
- "ВКЛ."
- "ТърÑете…"
- "ИзчиÑтване на заÑвката"
- "ЗаÑвка за Ñ‚ÑŠÑ€Ñене"
- "ТърÑене"
- "Изпращане на заÑвката"
- "ГлаÑово Ñ‚ÑŠÑ€Ñене"
- "СподелÑне ÑÑŠÑ:"
- "СподелÑне ÑÑŠÑ: %s"
- "Свиване"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
deleted file mode 100644
index 751b778..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "হোম ঠনেà¦à¦¿à¦—েট করà§à¦¨"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "উপরের দিকে নেà¦à¦¿à¦—েট করà§à¦¨"
- "আরো বিকলà§à¦ª"
- "সমà§à¦ªà¦¨à§à¦¨ হয়েছে"
- "সবগà§à¦²à§‹ দেখà§à¦¨"
- "à¦à¦•à¦Ÿà¦¿ অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•à§‡à¦¶à¦¾à¦¨ চয়ন করà§à¦¨"
- "বনà§à¦§"
- "চালà§"
- "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨..."
- "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ সাফ করà§à¦¨"
- "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨"
- "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨"
- "কà§à¦¯à§‹à¦¯à¦¼à¦¾à¦°à§€ জমা দিন"
- "à¦à¦¯à¦¼à§‡à¦¸ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨"
- "à¦à¦° সাথে à¦à¦¾à¦— করà§à¦¨"
- "%s à¦à¦° সাথে à¦à¦¾à¦— করà§à¦¨"
- "সঙà§à¦•à§à¦šà¦¿à¦¤ করà§à¦¨"
- "৯৯৯+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ca/values-ca.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ca/values-ca.xml
deleted file mode 100644
index fa73699..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ca/values-ca.xml
+++ /dev/null
@@ -1,25 +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"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-cs/values-cs.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-cs/values-cs.xml
deleted file mode 100644
index 096a6c8..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-cs/values-cs.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-da/values-da.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-da/values-da.xml
deleted file mode 100644
index 79c54a2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-da/values-da.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-de/values-de.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-de/values-de.xml
deleted file mode 100644
index f1206e6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-de/values-de.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-el/values-el.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-el/values-el.xml
deleted file mode 100644
index a1c5b5e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-el/values-el.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Πλοήγηση στην αÏχική σελίδα"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Πλοήγηση Ï€Ïος τα επάνω"
- "ΠεÏισσότεÏες επιλογÎÏ‚"
- "ΤÎλος"
- "Î Ïοβολή όλων"
- "ΕπιλÎξτε κάποια εφαÏμογή"
- "ΑΠΕÎΕΡΓΟΠΟΙΗΣΗ"
- "ΕÎΕΡΓΟΠΟΙΗΣΗ"
- "Αναζήτηση…"
- "ΔιαγÏαφή εÏωτήματος"
- "ΕÏώτημα αναζήτησης"
- "Αναζήτηση"
- "Υποβολή εÏωτήματος"
- "Φωνητική αναζήτηση"
- "Κοινή χÏήση με"
- "Κοινή χÏήση με %s"
- "ΣÏμπτυξη"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
deleted file mode 100644
index 01a038d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
deleted file mode 100644
index c8eb0a7..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
deleted file mode 100644
index 80dc9c9..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
deleted file mode 100644
index 2b0b28b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
+++ /dev/null
@@ -1,25 +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."
- "DESACTIVAR"
- "ACTIVAR"
- "Buscar…"
- "Eliminar la consulta"
- "Consulta de búsqueda"
- "Búsqueda"
- "Enviar consulta"
- "Búsqueda por voz"
- "Compartir con"
- "Compartir con %s"
- "Contraer"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-es/values-es.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-es/values-es.xml
deleted file mode 100644
index d4082fc..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-es/values-es.xml
+++ /dev/null
@@ -1,25 +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"
- "NO"
- "SÃ"
- "Buscar…"
- "Borrar consulta"
- "Consulta"
- "Buscar"
- "Enviar consulta"
- "Búsqueda por voz"
- "Compartir con"
- "Compartir con %s"
- "Contraer"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
deleted file mode 100644
index 3bef9ec..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
deleted file mode 100644
index 39c4d8e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-fa/values-fa.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-fa/values-fa.xml
deleted file mode 100644
index b7c039f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-fa/values-fa.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "پیمایش به صÙØÙ‡ اصلی"
- "â€%1$sâ€ØŒ %2$s"
- "â€%1$sâ€ØŒ %2$sâ€ØŒ %3$s"
- "پیمایش به بالا"
- "گزینه‌های بیشتر"
- "تمام"
- "مشاهده همه"
- "انتخاب برنامه"
- "خاموش"
- "روشن"
- "جستجو…"
- "پاک کردن عبارت جستجو"
- "عبارت جستجو"
- "جستجو"
- "ارسال عبارت جستجو"
- "جستجوی Ø´Ùاهی"
- "اشتراک‌گذاری با"
- "â€Ø§Ø´ØªØ±Ø§Ú©â€ŒÚ¯Ø°Ø§Ø±ÛŒ با %s"
- "کوچک کردن"
- "Û¹Û¹Û¹+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-fi/values-fi.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-fi/values-fi.xml
deleted file mode 100644
index 78901eb..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-fi/values-fi.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
deleted file mode 100644
index 19d00ea..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
+++ /dev/null
@@ -1,25 +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"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-fr/values-fr.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-fr/values-fr.xml
deleted file mode 100644
index 65d3112..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-fr/values-fr.xml
+++ /dev/null
@@ -1,25 +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"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
deleted file mode 100644
index 1d9ac88..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
+++ /dev/null
@@ -1,25 +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 de voz"
- "Compartir con"
- "Compartir con %s"
- "Contraer"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
deleted file mode 100644
index 4381ace..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "હોમ પર નેવિગેટ કરો"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ઉપર નેવિગેટ કરો"
- "વધૠવિકલà«àªªà«‹"
- "થઈ ગયà«àª‚"
- "બધà«àª‚ જà«àª“"
- "àªàª• àªàªªà«àª²àª¿àª•à«‡àª¶àª¨ પસંદ કરો"
- "બંધ"
- "ચાલà«"
- "શોધો…"
- "કà«àªµà«‡àª°à«€ સાફ કરો"
- "શોધ કà«àªµà«‡àª°à«€"
- "શોધો"
- "કà«àªµà«‡àª°à«€ સબમિટ કરો"
- "વૉઇસ શોધ"
- "આની સાથે શેર કરો"
- "%s સાથે શેર કરો"
- "સંકà«àªšàª¿àª¤ કરો"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-h320dp-v13/values-h320dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-h320dp-v13/values-h320dp-v13.xml
deleted file mode 100644
index 86c58d6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-h320dp-v13/values-h320dp-v13.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- true
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
deleted file mode 100644
index dc68f22..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- 54dip
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
deleted file mode 100644
index e3bd3bb..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-hi/values-hi.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-hi/values-hi.xml
deleted file mode 100644
index e289c48..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-hi/values-hi.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "मà¥à¤–à¥à¤¯à¤ªà¥ƒà¤·à¥à¤ पर नेविगेट करें"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ऊपर नेविगेट करें"
- "अधिक विकलà¥à¤ª"
- "पूरà¥à¤£"
- "सà¤à¥€ देखें"
- "कोई à¤à¤ªà¥â€à¤²à¤¿à¤•à¥‡à¤¶à¤¨ चà¥à¤¨à¥‡à¤‚"
- "बंद"
- "चालू"
- "खोजा जा रहा है…"
- "कà¥â€à¤µà¥‡à¤°à¥€ साफ़ करें"
- "खोज कà¥à¤µà¥‡à¤°à¥€"
- "खोजें"
- "कà¥à¤µà¥‡à¤°à¥€ सबमिट करें"
- "धà¥à¤µà¤¨à¤¿ खोज"
- "इसके दà¥à¤µà¤¾à¤°à¤¾ साà¤à¤¾ करें"
- "%s के साथ साà¤à¤¾ करें"
- "संकà¥à¤·à¤¿à¤ªà¥à¤¤ करें"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-hr/values-hr.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-hr/values-hr.xml
deleted file mode 100644
index 4d90346..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-hr/values-hr.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-hu/values-hu.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-hu/values-hu.xml
deleted file mode 100644
index e3e825b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-hu/values-hu.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
deleted file mode 100644
index 5ec000d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¿Õ¸Ö‚Õ¶"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"
- "Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€"
- "Ô¿Õ¡Õ¿Õ¡Ö€Õ¾Õ¡Õ® Õ§"
- "ÕÕ¥Õ½Õ¶Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨"
- "Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ®Ö€Õ¡Õ£Õ«Ö€"
- "Ô±Õ†Õ‹Ô±ÕÕŽÔ±Ô¾"
- "Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾"
- "ÕˆÖ€Õ¸Õ¶Õ¸Ö‚Õ´..."
- "Õ„Õ¡Ö„Ö€Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"
- "ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´"
- "ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"
- "ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"
- "ÕÕ¡ÕµÕ¶Õ¡ÕµÕ«Õ¶ Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´"
- "ÕÕ¡Ö€Õ¡Õ®Õ¥Õ¬"
- "ÕÕ¡Ö€Õ¡Õ®Õ¥Õ¬ Õ¨Õ½Õ¿ %s"
- "Ô¹Õ¡Ö„ÖÕ¶Õ¥Õ¬"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-in/values-in.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-in/values-in.xml
deleted file mode 100644
index b9a352f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-in/values-in.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
deleted file mode 100644
index 442dd62..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-it/values-it.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-it/values-it.xml
deleted file mode 100644
index 2425737..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-it/values-it.xml
+++ /dev/null
@@ -1,25 +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"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-iw/values-iw.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-iw/values-iw.xml
deleted file mode 100644
index 049fbe3..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-iw/values-iw.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "× ×•×•×˜ לדף הבית"
- "â€%1$sâ€, %2$s"
- "â€%1$sâ€, %2$sâ€, %3$s"
- "× ×•×•×˜ למעלה"
- "עוד ×פשרויות"
- "בוצע"
- "ר××” הכל"
- "בחר ×פליקציה"
- "כבוי"
- "פועל"
- "חפש…"
- "מחק ש×ילתה"
- "ש×ילתת חיפוש"
- "חפש"
- "שלח ש×ילתה"
- "חיפוש קולי"
- "שתף ×¢×"
- "â€×©×ª×£ ×¢× %s"
- "כווץ"
- "‎999+‎"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ja/values-ja.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ja/values-ja.xml
deleted file mode 100644
index de3585d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ja/values-ja.xml
+++ /dev/null
@@ -1,25 +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/2p-android/trunk/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
deleted file mode 100644
index 437c634..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "მთáƒáƒ•áƒáƒ ზე ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ზემáƒáƒ— ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ"
- "მეტი ვáƒáƒ იáƒáƒœáƒ¢áƒ”ბი"
- "დáƒáƒ¡áƒ ულდáƒ"
- "ყველáƒáƒ¡ ნáƒáƒ®áƒ•áƒ"
- "áƒáƒžáƒ˜áƒ¡ áƒáƒ ჩევáƒ"
- "გáƒáƒ›áƒáƒ თულიáƒ"
- "ჩáƒáƒ თულიáƒ"
- "ძიებáƒ..."
- "მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•áƒ”ბáƒ"
- "ძიების მáƒáƒ—ხáƒáƒ•áƒœáƒ"
- "ძიებáƒ"
- "მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ“áƒáƒ’ზáƒáƒ•áƒœáƒ"
- "ხმáƒáƒ•áƒáƒœáƒ˜ ძიებáƒ"
- "გáƒáƒ–იáƒáƒ ებáƒ:"
- "%s-თáƒáƒœ გáƒáƒ–იáƒáƒ ებáƒ"
- "áƒáƒ™áƒ”ცვáƒ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
deleted file mode 100644
index 80ed356..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Ðегізгі бетте қозғалу"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Жоғары қозғалу"
- "БаÑқа опциÑлар"
- "Дайын"
- "Барлығын көру"
- "Қолданбаны таңдау"
- "ӨШІРУЛІ"
- "ҚОСУЛЫ"
- "Іздеу…"
- "Сұрақты жою"
- "Сұрақты іздеу"
- "Іздеу"
- "Сұрақты жіберу"
- "Ð”Ð°ÑƒÑ‹Ñ Ð°Ñ€Ò›Ñ‹Ð»Ñ‹ іздеу"
- "БөліÑу"
- "%s бөліÑу"
- "ТаÑалау"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
deleted file mode 100644
index 1d53c80..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "រកមើល​ទៅ​ដើម"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "រកមើល​ឡើងលើ"
- "ជម្រើស​ច្រើន​ទៀáž"
- "រួចរាល់"
- "មើល​ទាំងអស់"
- "ជ្រើស​កម្មវិធី​​"
- "បិទ"
- "បើក"
- "ស្វែងរក…"
- "សម្អាážâ€‹ážŸáŸ†ážŽáž½ážš"
- "ស្វែងរក​សំណួរ"
- "ស្វែងរក"
- "ដាក់​​​ស្នើ​សំណួរ"
- "ការស្វែងរក​សំឡáŸáž„"
- "ចែករំលែក​ជាមួយ"
- "ចែករំលែក​ជាមួយ %s"
- "បង្រួម"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
deleted file mode 100644
index 5557dc6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ಮà³à²–ಪà³à²Ÿà²µà²¨à³à²¨à³ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ಮೇಲಕà³à²•à³† ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"
- "ಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•à³†à²—ಳà³"
- "ಮà³à²—ಿದಿದೆ"
- "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ನೋಡಿ"
- "ಒಂದೠಅಪà³à²²à²¿à²•à³‡à²¶à²¨à³ ಆಯà³à²•à³†à²®à²¾à²¡à²¿"
- "ಆಫà³"
- "ಆನà³"
- "ಹà³à²¡à³à²•à²¿â€¦"
- "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ತೆರವà³à²—ೊಳಿಸà³"
- "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಹà³à²¡à³à²•à²¿"
- "ಹà³à²¡à³à²•à³"
- "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಸಲà³à²²à²¿à²¸à³"
- "ಧà³à²µà²¨à²¿ ಹà³à²¡à³à²•à²¾à²Ÿ"
- "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"
- "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"
- "ಸಂಕà³à²šà²¿à²¸à³"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ko/values-ko.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ko/values-ko.xml
deleted file mode 100644
index 2415581..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ko/values-ko.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "홈 íƒìƒ‰"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "위로 íƒìƒ‰"
- "옵션 ë”보기"
- "완료"
- "ì „ì²´ 보기"
- "앱 ì„ íƒ"
- "사용 안함"
- "사용"
- "검색..."
- "검색어 ì‚ì œ"
- "검색어"
- "검색"
- "검색어 보내기"
- "ìŒì„± 검색"
- "ê³µìœ ëŒ€ìƒ"
- "%s와(ê³¼) ê³µìœ "
- "ì ‘ê¸°"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
deleted file mode 100644
index 005787a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Үйгө багыттоо"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Жогору"
- "Көбүрөөк мүмкүнчүлүктөр"
- "ДаÑÑ€"
- "Бардыгын көрүү"
- "Колдонмо тандоо"
- "ӨЧҮК"
- "КҮЙҮК"
- "Издөө…"
- "Талаптарды тазалоо"
- "Издөө талаптары"
- "Издөө"
- "Талап жөнөтүү"
- "Үн аркылуу издөө"
- "Бөлүшүү"
- "%s аркылуу бөлүшүү"
- "Жыйнап коюу"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-land/values-land.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-land/values-land.xml
deleted file mode 100644
index e11a43f..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-land/values-land.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
- true
- true
- 48dp
- 32dp
- 12dp
- 14dp
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
deleted file mode 100644
index dbead9a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
- true
- true
- 440dp
- - 60%
- - 90%
- - 60%
- - 90%
- - 55%
- - 80%
- 192dip
- 4
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml
deleted file mode 100644
index a474ec4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
deleted file mode 100644
index b815866..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "àºàº±àºšà»„ປໜ້າຫຼັàº"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ຂຶ້ນເທິງ"
- "ໂຕເລືàºàºàºàº·à»ˆàº™"
- "à»àº¥à»‰àº§à»†"
- "ເບິ່ງທັງຫມົດ"
- "ເລືàºàºà»àºàº±àºšàº¯"
- "ປິດ"
- "ເປີດ"
- "ຊàºàºàº«àº²"
- "ລຶບຂà»à»‰àº„ວາມຊàºàºàº«àº²"
- "ຊàºàºàº«àº²"
- "ຊàºàºàº«àº²"
- "ສົ່ງàºàº²àº™àºŠàºàºàº«àº²"
- "ຊàºàºàº«àº²àº”້ວàºàºªàº½àº‡"
- "à»àºšà»ˆàº‡àº›àº±àº™àºàº±àºš"
- "à»àºšà»ˆàº‡â€‹àº›àº±àº™â€‹àºàº±àºšâ€‹ %s"
- "ຫàºà»à»‰"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-lt/values-lt.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-lt/values-lt.xml
deleted file mode 100644
index 8e606a0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-lt/values-lt.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Eiti į pagrindinį puslapį"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Eiti į viršų"
- "Daugiau parinkÄių"
- "Atlikta"
- "Peržiūrėti viską"
- "Pasirinkti programÄ…"
- "IÅ JUNGTI"
- "ĮJUNGTI"
- "Ieškoti..."
- "Išvalyti užklausą"
- "Paieškos užklausa"
- "Paieška"
- "Pateikti užklausą"
- "Paieška balsu"
- "Bendrinti naudojant"
- "Bendrinti naudojant „%s“"
- "Sutraukti"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-lv/values-lv.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-lv/values-lv.xml
deleted file mode 100644
index fa8e2e1..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-lv/values-lv.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "PÄrvietoties uz sÄkuma ekrÄnu"
- "%1$s: %2$s"
- "%1$s, %2$s: %3$s"
- "PÄrvietoties augÅ¡up"
- "VairÄk opciju"
- "Gatavs"
- "Skatīt visu"
- "Izvēlieties lietotni"
- "IZSLÄ’GTS"
- "IESLÄ’GTS"
- "Meklējiet…"
- "NotÄ«rÄ«t vaicÄjumu"
- "MeklÄ“Å¡anas vaicÄjums"
- "Meklēt"
- "Iesniegt vaicÄjumu"
- "Meklēšana ar balsi"
- "Kopīgot ar:"
- "Kopīgot ar %s"
- "Sakļaut"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
deleted file mode 100644
index df69d3d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
- "Движи Ñе кон дома"
- "%1$s, %2$s, %3$s"
- "Движи Ñе нагоре"
- "Повеќе опции"
- "Готово"
- "Види ги Ñите"
- "Избери апликација"
- "ИСКЛУЧЕÐО"
- "ВКЛУЧЕÐО"
- "Пребарување…"
- "ИÑчиÑти барање"
- "Пребарај барање"
- "Пребарај"
- "ПоднеÑи барање"
- "ГлаÑовно пребарување"
- "Сподели Ñо"
- "Собери"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
deleted file mode 100644
index 87c9d9c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ഹോമിലേകàµà´•àµ നാവിഗേറàµà´±àµà´šàµ†à´¯àµà´¯àµà´•"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "à´®àµà´•à´³à´¿à´²àµ‡à´•àµà´•àµ നാവിഗേറàµà´±àµà´šàµ†à´¯àµà´¯àµà´•"
- "കൂടàµà´¤à´²àµâ€ à´“à´ªàµâ€Œà´·à´¨àµà´•à´³àµâ€"
- "പൂർതàµà´¤à´¿à´¯à´¾à´•àµà´•à´¿"
- "à´Žà´²àµà´²à´¾à´‚ കാണàµà´•"
- "ഒരൠഅപàµà´²à´¿à´•àµà´•àµ‡à´·àµ» തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•"
- "à´“à´«àµ"
- "ഓൺ"
- "തിരയàµà´•â€¦"
- "à´…à´¨àµà´µàµ‡à´·à´£à´‚ മായàµâ€Œà´•àµà´•àµà´•"
- "തിരയൽ à´…à´¨àµà´µàµ‡à´·à´£à´‚"
- "തിരയൽ"
- "à´…à´¨àµà´µàµ‡à´·à´£à´‚ സമർപàµà´ªà´¿à´•àµà´•àµà´•"
- "ശബàµà´¦ തിരയൽ"
- "ഇവരàµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"
- "%s à´Žà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"
- "à´šàµà´°àµà´•àµà´•àµà´•"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
deleted file mode 100644
index 8c000fe..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Ðүүр Ñ…ÑƒÑƒÐ´Ð°Ñ Ñ€ÑƒÑƒ шилжих"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ДÑÑш шилжих"
- "ÐÑмÑлт Ñонголтууд"
- "ДууÑÑан"
- "Бүгдийг харах"
- "Ðпп Ñонгох"
- "ИДÐВХГҮЙ"
- "ИДÐВХТÐЙ"
- "Хайх..."
- "ÐÑуулгыг цÑвÑрлÑÑ…"
- "Хайх аÑуулга"
- "Хайх"
- "ÐÑуулгыг илгÑÑÑ…"
- "Дуут хайлт"
- "Хуваалцах"
- "%s-тай хуваалцах"
- "Хумих"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
deleted file mode 100644
index 9111f49..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "मà¥à¤–à¥â€à¤¯à¤ªà¥ƒà¤·à¥â€à¤ नेवà¥â€à¤¹à¤¿à¤—ेट करा"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "वर नेवà¥â€à¤¹à¤¿à¤—ेट करा"
- "अधिक परà¥à¤¯à¤¾à¤¯"
- "पूरà¥à¤£ à¤à¤¾à¤²à¥‡"
- "सरà¥à¤µ पहा"
- "à¤à¤• अâ€à¥…प निवडा"
- "बंद"
- "चालू"
- "शोधा…"
- "कà¥â€à¤µà¥‡à¤°à¥€ सà¥â€à¤ªà¤·à¥â€à¤Ÿ करा"
- "शोध कà¥à¤µà¥‡à¤°à¥€"
- "शोध"
- "कà¥à¤µà¥‡à¤°à¥€ सबमिट करा"
- "वà¥à¤¹à¥‰à¤‡à¤¸ शोध"
- "यांचà¥à¤¯à¤¾à¤¸à¤¹ सामायिक करा"
- "%s सह सामायिक करा"
- "संकà¥à¤·à¤¿à¤ªà¥à¤¤ करा"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
deleted file mode 100644
index 22895e8..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Navigasi skrin utama"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navigasi ke atas"
- "Lagi pilihan"
- "Selesai"
- "Lihat semua"
- "Pilih apl"
- "MATI"
- "HIDUP"
- "Cari…"
- "Kosongkan pertanyaan"
- "Pertanyaan carian"
- "Cari"
- "Serah pertanyaan"
- "Carian suara"
- "Kongsi dengan"
- "Kongsi dengan %s"
- "Runtuhkan"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
deleted file mode 100644
index 2a93c51..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "မူလနေရာကá€á€¯ သွားရန်"
- "%1$sአ%2$s"
- "%1$s አ%2$s አ%3$s"
- "အပေါ်သá€á€¯á€·á€žá€½á€¬á€¸á€›á€”်"
- "ပá€á€¯á€™á€á€¯á€›á€½á€±á€¸á€á€»á€šá€ºá€…ရာများ"
- "ပြီးဆုံးပါပြီ"
- "အားလုံးကá€á€¯ ကြည့်ရန်"
- "အပလီကေးရှင်း á€á€…်á€á€¯á€á€¯á€€á€á€¯ ရွေးá€á€»á€šá€ºá€•á€«"
- "ပá€á€á€º"
- "ဖွင့်"
- "ရှာဖွေပါ..."
- "ရှာစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€™á€»á€¬á€¸ ရှင်းလင်းရန်"
- "ရှာစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€”ေရာ"
- "ရှာဖွေရန်"
- "ရှာဖွေစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯ အá€á€Šá€ºá€•á€¼á€¯á€›á€”်"
- "အသံဖြင့် ရှာဖွေá€á€¼á€„်း"
- "မျှá€á€±á€–á€á€¯á€· ရွေးပါ"
- "%s ကá€á€¯ မျှá€á€±á€•á€«á€›á€”်"
- "á€á€±á€«á€€á€ºá€›á€”်"
- "á‰á‰á‰+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-nb/values-nb.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-nb/values-nb.xml
deleted file mode 100644
index af28020..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-nb/values-nb.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "GÃ¥ til startsiden"
- "%1$s – %2$s"
- "%1$s – %2$s – %3$s"
- "GÃ¥ opp"
- "Flere alternativer"
- "Ferdig"
- "Se alle"
- "Velg en app"
- "AV"
- "PÃ…"
- "Søk …"
- "Slett søket"
- "Søkeord"
- "Søk"
- "Utfør søket"
- "Talesøk"
- "Del med"
- "Del med %s"
- "Skjul"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
deleted file mode 100644
index 6d31c2a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "गृह खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "माथि खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "थप विकलà¥à¤ªà¤¹à¤°à¥‚"
- "समà¥à¤ªà¤¨à¥à¤¨ à¤à¤¯à¥‹"
- "सबै हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "à¤à¤‰à¤Ÿà¤¾ अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— छानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "निषà¥à¤•à¥à¤°à¤¿à¤¯ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "सकà¥à¤°à¤¿à¤¯ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥..."
- "पà¥à¤°à¤¶à¥â€à¤¨ हटाउनà¥à¤¹à¥‹à¤¸à¥"
- "जिजà¥à¤žà¤¾à¤¸à¤¾à¤•à¥‹ खोज गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "जिजà¥à¤žà¤¾à¤¸à¤¾ पेस गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "à¤à¥à¤µà¤¾à¤‡à¤¸ खोजी"
- "साà¤à¥‡à¤¦à¤¾à¤°à¥€ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥..."
- "%s सà¤à¤— साà¤à¥‡à¤¦à¤¾à¤°à¥€ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "संकà¥à¤·à¤¿à¤ªà¥à¤¤ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
- "९९९+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml
deleted file mode 100644
index 005512b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-nl/values-nl.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-nl/values-nl.xml
deleted file mode 100644
index 2f7012a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-nl/values-nl.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Navigeren naar startpositie"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Omhoog navigeren"
- "Meer opties"
- "Gereed"
- "Alles weergeven"
- "Een app selecteren"
- "UIT"
- "AAN"
- "Zoeken…"
- "Zoekopdracht wissen"
- "Zoekopdracht"
- "Zoeken"
- "Zoekopdracht verzenden"
- "Gesproken zoekopdracht"
- "Delen met"
- "Delen met %s"
- "Samenvouwen"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
deleted file mode 100644
index 357da28..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"
- "ਹੋਰ ਚੋਣਾਂ"
- "ਹੋ ਗਿਆ"
- "ਸਠਦੇਖੋ"
- "ਇੱਕ à¨à¨ª ਚà©à¨£à©‹"
- "ਬੰਦ"
- "ਤੇ"
- "ਖੋਜ…"
- "ਸਵਾਲ ਹਟਾਓ"
- "ਸਵਾਲ ਖੋਜੋ"
- "ਖੋਜੋ"
- "ਸਵਾਲ ਪà©à¨°à¨¸à¨¤à©à¨¤ ਕਰੋ"
- "ਵੌਇਸ ਖੋਜ"
- "ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
- "%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ"
- "ਨਸ਼ਟ ਕਰੋ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-pl/values-pl.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-pl/values-pl.xml
deleted file mode 100644
index dc894da..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-pl/values-pl.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Przejdź do strony głównej"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Przejdź wyżej"
- "Więcej opcji"
- "Gotowe"
- "Zobacz wszystkie"
- "Wybierz aplikacjÄ™"
- "WYÅ."
- "WÅ."
- "Szukaj…"
- "Wyczyść zapytanie"
- "Wyszukiwane hasło"
- "Szukaj"
- "Wyślij zapytanie"
- "Wyszukiwanie głosowe"
- "Udostępnij dla"
- "Udostępnij dla %s"
- "Zwiń"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-port/values-port.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-port/values-port.xml
deleted file mode 100644
index f38b926..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-port/values-port.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- false
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml
deleted file mode 100644
index ff69d31..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Navegar para a página inicial"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navegar para cima"
- "Mais opções"
- "ConcluÃdo"
- "Ver tudo"
- "Selecione um app"
- "DESATIVAR"
- "ATIVAR"
- "Pesquisar..."
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Compartilhar com"
- "Compartilhar com %s"
- "Recolher"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
deleted file mode 100644
index 0755f2a..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Navegar para a página inicial"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navegar para cima"
- "Mais opções"
- "ConcluÃdo"
- "Ver tudo"
- "Escolher uma aplicação"
- "DESATIVADO"
- "ATIVADO"
- "Pesquisar..."
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Partilhar com"
- "Partilhar com %s"
- "Reduzir"
- "+999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-pt/values-pt.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-pt/values-pt.xml
deleted file mode 100644
index 6490cc0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-pt/values-pt.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Navegar para a página inicial"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navegar para cima"
- "Mais opções"
- "ConcluÃdo"
- "Ver tudo"
- "Selecione um app"
- "DESATIVAR"
- "ATIVAR"
- "Pesquisar..."
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Compartilhar com"
- "Compartilhar com %s"
- "Recolher"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ro/values-ro.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ro/values-ro.xml
deleted file mode 100644
index 6f37262..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ro/values-ro.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "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"
- "ACTIVAÈšI"
- "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"
- "˃999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ru/values-ru.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ru/values-ru.xml
deleted file mode 100644
index f4ae9e2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ru/values-ru.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Перейти на главный Ñкран"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Перейти вверх"
- "Другие параметры"
- "Готово"
- "Показать вÑе"
- "Выбрать приложение"
- "ОТКЛ."
- "ВКЛ."
- "ПоиÑк"
- "Удалить запроÑ"
- "ПоиÑковый запроÑ"
- "ПоиÑк"
- "Отправить запроÑ"
- "ГолоÑовой поиÑк"
- "Открыть доÑтуп"
- "Открыть доÑтуп пользователю %s"
- "Свернуть"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
deleted file mode 100644
index 9399387..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ගෙදරට සංචà·à¶½à¶±à¶º කරන්න"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "ඉහලට සංචà·à¶½à¶±à¶º කරන්න"
- "à¶à·€à¶à·Š විකල්ප"
- "අවසà·à¶± වූ"
- "සියල්ල බලන්න"
- "යෙදුමක් à¶à·à¶»à¶±à·Šà¶±"
- "ක්â€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’"
- "ක්â€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’"
- "සොයන්න..."
- "විමසුම හිස් කරන්න"
- "සෙවුම් විමසුම"
- "සෙවීම"
- "විමසුම යොමු කරන්න"
- "හඬ සෙවීම"
- "සමඟ බෙදà·à¶œà¶±à·Šà¶±"
- "%s සමඟ බෙදà·à¶œà¶±à·Šà¶±"
- "හකුළන්න"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sk/values-sk.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sk/values-sk.xml
deleted file mode 100644
index 8ba91a7..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sk/values-sk.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Prejsť na plochu"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Prejsť hore"
- "Ďalšie možnosti"
- "Hotovo"
- "Zobraziť všetko"
- "Zvoľte aplikáciu"
- "VYP."
- "ZAP."
- "Vyhľadať…"
- "Vymazať dopyt"
- "Vyhľadávacà dopyt"
- "Hľadať"
- "Odoslať dopyt"
- "Hlasové vyhľadávanie"
- "Zdieľať pomocou"
- "Zdieľať pomocou %s"
- "Zbaliť"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sl/values-sl.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sl/values-sl.xml
deleted file mode 100644
index 3b2f2a5..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sl/values-sl.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Krmarjenje domov"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Krmarjenje navzgor"
- "VeÄ možnosti"
- "KonÄano"
- "Pokaži vse"
- "Izbira aplikacije"
- "IZKLOPLJENO"
- "VKLOPLJENO"
- "Iskanje …"
- "Izbris poizvedbe"
- "Iskalna poizvedba"
- "Iskanje"
- "Pošiljanje poizvedbe"
- "Glasovno iskanje"
- "Deljenje z"
- "Deljenje z:"
- "Strni"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
deleted file mode 100644
index d8e0c45..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Orientohu për në shtëpi"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Ngjitu lart"
- "Opsione të tjera"
- "U krye!"
- "Shikoji të gjitha"
- "Zgjidh një aplikacion"
- "JOAKTIV"
- "AKTIV"
- "Kërko..."
- "Pastro pyetjen"
- "Kërko pyetjen"
- "Kërko"
- "Dërgo pyetjen"
- "Kërkim me zë"
- "Shpërnda publikisht me"
- "Shpërnda publikisht me %s"
- "Shpalos"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sr/values-sr.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sr/values-sr.xml
deleted file mode 100644
index 353ee93..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sr/values-sr.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Одлазак на Почетну"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Кретање нагоре"
- "Још опција"
- "Готово"
- "Прикажи Ñве"
- "Избор апликације"
- "ИСКЉУЧИ"
- "УКЉУЧИ"
- "Претражите..."
- "БриÑање упита"
- "Упит за претрагу"
- "Претрага"
- "Слање упита"
- "ГлаÑовна претрага"
- "Дели Ñа"
- "Дели Ñа апликацијом %s"
- "Скупи"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sv/values-sv.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sv/values-sv.xml
deleted file mode 100644
index 44f6ea8..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sv/values-sv.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Visa startsidan"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Navigera uppåt"
- "Fler alternativ"
- "Klart"
- "Visa alla"
- "Välj en app"
- "AV"
- "PÃ…"
- "Sök …"
- "Ta bort frågan"
- "Sökfråga"
- "Sök"
- "Skicka fråga"
- "Röstsökning"
- "Dela med"
- "Dela med %s"
- "Komprimera"
- ">999"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sw/values-sw.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sw/values-sw.xml
deleted file mode 100644
index b1cd767..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sw/values-sw.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Nenda mwanzo"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Nenda juu"
- "Chaguo zaidi"
- "Nimemaliza"
- "Angalia zote"
- "Chagua programu"
- "IMEZIMWA"
- "IMEWASHWA"
- "Tafuta…"
- "Futa hoja"
- "Hoja ya utafutaji"
- "Tafuta"
- "Wasilisha hoja"
- "Tafuta kwa kutamka"
- "Shiriki na:"
- "Shiriki na %s"
- "Kunja"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
deleted file mode 100644
index 1ba2bc0..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- 24dp
- 64dp
- 8dp
- 8dp
- 580dp
- 16dp
- 20dp
-
-
- 320dp
- 0dp
- 2dp
- 24dp
- 576dp
- 320dp
- @dimen/design_snackbar_padding_vertical
- 160dp
-
-
- 5
-
-
- 1
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
deleted file mode 100644
index be88867..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "à®®à¯à®•à®ªà¯à®ªà®¿à®±à¯à®•à¯ வழிசெலà¯à®¤à¯à®¤à¯"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "மேலே வழிசெலà¯à®¤à¯à®¤à¯"
- "மேலà¯à®®à¯ விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯"
- "à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯"
- "எலà¯à®²à®¾à®®à¯ காடà¯à®Ÿà¯"
- "பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®•"
- "à®®à¯à®Ÿà®•à¯à®•à¯"
- "இயகà¯à®•à¯"
- "தேடà¯..."
- "வினவலை அழி"
- "தேடல௠வினவலà¯"
- "தேடà¯"
- "வினவலைச௠சமரà¯à®ªà¯à®ªà®¿"
- "கà¯à®°à®²à¯ தேடலà¯"
- "இதனà¯à®Ÿà®©à¯ பகிரà¯"
- "%s உடன௠பகிரà¯"
- "சà¯à®°à¯à®•à¯à®•à¯"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
deleted file mode 100644
index b47d1c6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "హోమà±â€Œà°•à± నావిగేటౠచేయండి"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "పైకి నావిగేటౠచేయండి"
- "మరినà±à°¨à°¿ ఎంపికలà±"
- "పూరà±à°¤à°¯à°¿à°‚ది"
- "à°…à°¨à±à°¨à±€ చూడండి"
- "à°…à°¨à±à°µà°°à±à°¤à°¨à°¾à°¨à±à°¨à°¿ à°Žà°‚à°šà±à°•à±‹à°‚à°¡à°¿"
- "ఆఫౠచేయి"
- "ఆనౠచేయి"
- "శోధించà±..."
- "à°ªà±à°°à°¶à±à°¨à°¨à± à°•à±à°²à°¿à°¯à°°à± చేయి"
- "à°ªà±à°°à°¶à±à°¨ శోధించండి"
- "శోధించà±"
- "à°ªà±à°°à°¶à±à°¨à°¨à°¿ సమరà±à°ªà°¿à°‚à°šà±"
- "వాయిసౠశోధన"
- "వీరితో à°à°¾à°—à°¸à±à°µà°¾à°®à±à°¯à°‚ చేయి"
- "%sతో à°à°¾à°—à°¸à±à°µà°¾à°®à±à°¯à°‚ చేయి"
- "à°•à±à°¦à°¿à°‚à°šà°‚à°¡à°¿"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-th/values-th.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-th/values-th.xml
deleted file mode 100644
index 47cb0cc..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-th/values-th.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "นำทางไปหน้าà¹à¸£à¸"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "นำทางขึ้น"
- "ตัวเลืà¸à¸à¸à¸·à¹ˆà¸™"
- "เสร็จสิ้น"
- "ดูทั้งหมด"
- "เลืà¸à¸à¹à¸à¸›"
- "ปิด"
- "เปิด"
- "ค้นหา…"
- "ล้างข้à¸à¸„วามค้นหา"
- "ข้à¸à¸„วามค้นหา"
- "ค้นหา"
- "ส่งข้à¸à¸„วามค้นหา"
- "ค้นหาด้วยเสียง"
- "à¹à¸Šà¸£à¹Œà¸à¸±à¸š"
- "à¹à¸Šà¸£à¹Œà¸à¸±à¸š %s"
- "ยุบ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-tl/values-tl.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-tl/values-tl.xml
deleted file mode 100644
index bc7b385..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-tl/values-tl.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Mag-navigate patungo sa home"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Mag-navigate pataas"
- "Higit pang mga opsyon"
- "Tapos na"
- "Tingnan lahat"
- "Pumili ng isang app"
- "I-OFF"
- "I-ON"
- "Maghanap…"
- "I-clear ang query"
- "Query sa paghahanap"
- "Maghanap"
- "Isumite ang query"
- "Paghahanap gamit ang boses"
- "Ibahagi sa/kay"
- "Ibahagi sa/kay %s"
- "I-collapse"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-tr/values-tr.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-tr/values-tr.xml
deleted file mode 100644
index 7433de6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-tr/values-tr.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Ana ekrana git"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Yukarı git"
- "Diğer seçenekler"
- "Tamamlandı"
- "Tümünü göster"
- "Bir uygulama seçin"
- "KAPAT"
- "AÇ"
- "Ara…"
- "Sorguyu temizle"
- "Arama sorgusu"
- "Ara"
- "Sorguyu gönder"
- "Sesli arama"
- "Åžununla paylaÅŸ"
- "%s ile paylaÅŸ"
- "Daralt"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-uk/values-uk.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-uk/values-uk.xml
deleted file mode 100644
index 25a8252..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-uk/values-uk.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Перейти на головний"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Перейти вгору"
- "Інші опції"
- "Готово"
- "ПереглÑнути вÑÑ–"
- "Вибрати програму"
- "ВИМК."
- "УВІМК."
- "Пошук…"
- "ОчиÑтити запит"
- "Пошуковий запит"
- "Пошук"
- "ÐадіÑлати запит"
- "ГолоÑовий пошук"
- "ÐадіÑлати через"
- "ÐадіÑлати через %s"
- "Згорнути"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
deleted file mode 100644
index 1392697..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Ûوم پر نیویگیٹ کریں"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "اوپر نیویگیٹ کریں"
- "مزید اختیارات"
- "ÛÙˆ گیا"
- "سبھی دیکھیں"
- "ایک ایپ منتخب کریں"
- "Ø¢Ù"
- "آن"
- "تلاش کریں…"
- "استÙسار صا٠کریں"
- "استÙسار تلاش کریں"
- "تلاش کریں"
- "استÙسار جمع کرائیں"
- "صوتی تلاش"
- "اشتراک کریں مع"
- "â€%s Ú©Û’ ساتھ اشتراک کریں"
- "سکیڑیں"
- "‎999+‎"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
deleted file mode 100644
index 922f34b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- "Boshiga o‘tish"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Yuqoriga o‘tish"
- "Qo‘shimcha sozlamalar"
- "Tayyor"
- "Barchasini ko‘rish"
- "Dastur tanlang"
- "O‘CHIQ"
- "YONIQ"
- "Qidirish…"
- "So‘rovni tozalash"
- "So‘rovni izlash"
- "Qidirish"
- "So‘rov yaratish"
- "Ovozli qidiruv"
- "Bo‘lishish:"
- "Yig‘ish"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v11/values-v11.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v11/values-v11.xml
deleted file mode 100644
index 861ce68..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v11/values-v11.xml
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v12/values-v12.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v12/values-v12.xml
deleted file mode 100644
index 1b5099e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v12/values-v12.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v13/values-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v13/values-v13.xml
deleted file mode 100644
index 06e8ac9..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v13/values-v13.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- false
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v14/values-v14.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v14/values-v14.xml
deleted file mode 100644
index 10f1061..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v14/values-v14.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v17/values-v17.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v17/values-v17.xml
deleted file mode 100644
index 29cd24b..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v17/values-v17.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v18/values-v18.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v18/values-v18.xml
deleted file mode 100644
index 4f6cce9..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v18/values-v18.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- 0px
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v21/values-v21.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v21/values-v21.xml
deleted file mode 100644
index 752c917..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v21/values-v21.xml
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v22/values-v22.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v22/values-v22.xml
deleted file mode 100644
index 3f37185..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v22/values-v22.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-v23/values-v23.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-v23/values-v23.xml
deleted file mode 100644
index 91360a4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-v23/values-v23.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-vi/values-vi.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-vi/values-vi.xml
deleted file mode 100644
index 8044545..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-vi/values-vi.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Äiá»u hÆ°á»›ng vá» trang chủ"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Äiá»u hÆ°á»›ng lên trên"
- "Thêm tùy chá»n"
- "Xong"
- "Xem tất cả"
- "Chá»n má»™t ứng dụng"
- "TẮT"
- "BẬT"
- "Tìm kiếm…"
- "Xóa truy vấn"
- "Tìm kiếm truy vấn"
- "Tìm kiếm"
- "Gá»i truy vấn"
- "Tìm kiếm bằng giá»ng nói"
- "Chia sẻ với"
- "Chia sẻ với %s"
- "Thu gá»n"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml
deleted file mode 100644
index 603ef65..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-w360dp-v13/values-w360dp-v13.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- 3
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml
deleted file mode 100644
index 91277b6..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-w480dp-v13/values-w480dp-v13.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
- true
- true
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml
deleted file mode 100644
index fa000e4..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-w500dp-v13/values-w500dp-v13.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- 4
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml
deleted file mode 100644
index 7381c4c..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-w600dp-v13/values-w600dp-v13.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
- 192dip
- 5
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml
deleted file mode 100644
index c859b7d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-w720dp-v13/values-w720dp-v13.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- false
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-w820dp/values-w820dp.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-w820dp/values-w820dp.xml
deleted file mode 100644
index 1b343d1..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-w820dp/values-w820dp.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- 64dp
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
deleted file mode 100644
index 71e2aa1..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-xlarge-land-v4/values-xlarge-land-v4.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- 256dip
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
deleted file mode 100644
index 4a2f53d..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- false
- - 60%
- - 90%
- - 50%
- - 70%
- - 45%
- - 72%
- 192dip
- 5
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
deleted file mode 100644
index 89d66ad..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "转到主å±å¹•"
- "%1$s:%2$s"
- "%1$s - %2$s:%3$s"
- "转到上一层级"
- "更多选项"
- "完æˆ"
- "查看全部"
- "选择应用"
- "å…³é—"
- "å¼€å¯"
- "æœç´¢â€¦"
- "清除查询"
- "æœç´¢æŸ¥è¯¢"
- "æœç´¢"
- "æ交查询"
- "è¯éŸ³æœç´¢"
- "分享方å¼"
- "通过%s分享"
- "收起"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
deleted file mode 100644
index 94d1742..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ç€è¦½ä¸»é "
- "%1$s:%2$s"
- "%1$s (%2$s):%3$s"
- "å‘上ç€è¦½"
- "更多é¸é …"
- "完æˆ"
- "顯示全部"
- "é¸æ“‡æ‡‰ç”¨ç¨‹å¼"
- "關閉"
- "é–‹å•Ÿ"
- "æœå°‹â€¦"
- "清除查詢"
- "æœå°‹æŸ¥è©¢"
- "æœå°‹"
- "æ交查詢"
- "語音æœå°‹"
- "分享å°è±¡"
- "與「%sã€åˆ†äº«"
- "收åˆ"
- "999 +"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
deleted file mode 100644
index b6546e2..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "ç€è¦½é¦–é "
- "%1$s:%2$s"
- "%1$s - %2$s:%3$s"
- "å‘上ç€è¦½"
- "更多é¸é …"
- "完æˆ"
- "查看全部"
- "é¸æ“‡æ‡‰ç”¨ç¨‹å¼"
- "關閉"
- "é–‹å•Ÿ"
- "æœå°‹â€¦"
- "清除查詢"
- "æœå°‹æŸ¥è©¢"
- "æœå°‹"
- "æ交查詢"
- "語音æœå°‹"
- "é¸æ“‡åˆ†äº«å°è±¡"
- "與「%sã€åˆ†äº«"
- "收åˆ"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values-zu/values-zu.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values-zu/values-zu.xml
deleted file mode 100644
index 26936df..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values-zu/values-zu.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
- "Zulazulela ekhaya"
- "%1$s, %2$s"
- "%1$s, %2$s, %3$s"
- "Zulazulela phezulu"
- "Izinketho eziningi"
- "Kwenziwe"
- "Buka konke"
- "Khetha uhlelo lokusebenza"
- "VALIWE"
- "VULIWE"
- "Iyasesha..."
- "Sula inkinga"
- "Umbuzo wosesho"
- "Sesha"
- "Hambisa umbuzo"
- "Ukusesha ngezwi"
- "Yabelana no-"
- "Yabelana no-%s"
- "Goqa"
- "999+"
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/merged/debug/values/values.xml b/2p-android/trunk/build/intermediates/res/merged/debug/values/values.xml
deleted file mode 100644
index 2b0370e..0000000
--- a/2p-android/trunk/build/intermediates/res/merged/debug/values/values.xml
+++ /dev/null
@@ -1,1872 +0,0 @@
-
-
-
-
-
-
-
-
- true
- false
- true
- true
- true
- false
- true
- false
- @android:color/black
- #7fa87f
- @android:color/black
- @android:color/black
- @color/material_deep_teal_200
- @color/material_deep_teal_500
- @color/material_grey_800
- @android:color/white
- @color/material_grey_850
- @color/material_grey_50
- #80ffffff
- #80000000
- @color/bright_foreground_material_light
- @color/bright_foreground_material_dark
- @android:color/white
- @android:color/black
- #ff5a595b
- #ffd6d7d7
-
-
- @android:color/transparent
- #14000000
- #44000000
- #0A000000
- #0F000000
- #1AFFFFFF
- #2EFFFFFF
- #323232
- #FFFF6E6E
- #FFD50000
-
-
- #80bebebe
- #80323232
- #ffbebebe
- #ff323232
- @android:color/white
- @android:color/black
- #6680cbc4
- #66009688
- @color/bright_foreground_disabled_material_dark
- @color/bright_foreground_disabled_material_light
- #ff37474f
- #ff263238
- #ff21272b
- #ff80cbc4
- #ff009688
- #fff5f5f5
- #ffe0e0e0
- #fffafafa
- #ff757575
- #ff424242
- #ff303030
- #ff212121
- @android:color/black
- @color/material_grey_600
- @color/material_grey_900
- @color/material_grey_100
- #ffffffff
- #de000000
- #4Dffffff
- #39000000
- #33ffffff
- #1f000000
- #b3ffffff
- #8a000000
- #36ffffff
- #24000000
- #ff616161
- #ffbdbdbd
- #ffbdbdbd
- #fff1f1f1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 16dp
- 56dp
- 0dp
- 0dp
- 16dp
- 10dp
- 6dp
- 40dp
- 48dp
- 180dp
- 5dp
- -3dp
- 48dp
- 48dp
- 36dp
- 48dp
- @dimen/abc_control_inset_material
- 6dp
- 8dp
- @dimen/abc_control_padding_material
- 320dp
- 2dp
- 4dp
- 4dp
- - 80%
- - 100%
- - 320dp
- - 320dp
- 8dp
- - 65%
- - 95%
- 24dp
- 18dp
- - 0.30
- - 0.26
- 32dip
- 8dip
- 8dip
- 7dp
- 4dp
- 10dp
- 16dp
- @dimen/abc_action_bar_content_inset_material
- 296dp
- 320dip
- 160dip
- 2dp
- 2dp
- 20dp
- 3dp
- 14sp
- 14sp
- 14sp
- 12sp
- 34sp
- 45sp
- 56sp
- 112sp
- 24sp
- 22sp
- 18sp
- 16sp
- 14sp
- 16sp
- 16dp
- 20sp
- 20dp
-
-
- 0dp
- 0dp
-
-
- 4dp
- 16dp
- 256dp
- 0.5dp
- 6dp
- 24dp
- 40dp
- 56dp
- 6dp
- 16dp
- 32dp
- 24dp
- 280dp
- 8dp
- 8dp
- 128dp
- 0dp
- 6dp
- 0dp
- -1px
- -1px
- 12dp
- 14dp
- 24dp
- 14sp
- 264dp
- 72dp
- 14sp
- 12sp
-
-
- - 0.30
- - 0.26
- - 0.26
- - 0.20
- - 0.12
-
-
- 20dp
- 800dp
- 120dp
-
-
- 240dp
-
-
- 64dp
- 64dp
- 12dp
- #3333B5E5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 220
- 150
- 2
-
-
- 150
-
-
- 127
-
-
- 2
-
-
- 999
- 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
-
-
- About
- Example action
- Settings
- tuProlog Mobile
-
-
- android.support.design.widget.AppBarLayout$ScrollingViewBehavior
-
-
- BODY
-
-
- android.support.design.widget.BottomSheetBehavior
- %1$d / %2$d
-
-
- tuPrologMobile
- Confirm
- .
- Are you sure you want to delete all the queries from the history?
- Are you sure you want to delete all the theories from the history?
- prova icone
- Edit Export Path
- Edit Theory
- Export Theory
- Find
- Hello World, TesiActivity!
- Hello blank fragment
- History
- HISTORY
- Home
- Import Library
- Import Theory to Database
- Library
- Library Manager
- Delete Theory
- Add Theory
- Select Theory
- Close navigation drawer
- Open navigation drawer
- New Theory
- There are no Theories yet.\nCreate or import one to start working.
- Action
- Solve a Query
- Find query/theory
- Settings
- OTHER SETTINGS
- Share Theory
-
-
- 999+
-
-
- Add
- Browse
- Remove
- Library file
- Library fullname
- Currently loaded libraries:
- Ready:
- List Theories
- Set a Theory
- Theories
- TITLE
- BaseActivity
- BaseActivity2
- Description
- History
- Search
- Settings
- Description
- TheoryListActivity
- Import Library
- Import Theory
- Libraries
- New/Edit Theory
- Section 1
- Section 2
- Section 3
- ..
- Web
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/2p-android/trunk/build/intermediates/res/resources-debug-androidTest.ap_ b/2p-android/trunk/build/intermediates/res/resources-debug-androidTest.ap_
deleted file mode 100644
index eac6acc..0000000
Binary files a/2p-android/trunk/build/intermediates/res/resources-debug-androidTest.ap_ and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/res/resources-debug.ap_ b/2p-android/trunk/build/intermediates/res/resources-debug.ap_
deleted file mode 100644
index 76f64f9..0000000
Binary files a/2p-android/trunk/build/intermediates/res/resources-debug.ap_ and /dev/null differ
diff --git a/2p-android/trunk/build/intermediates/symbols/debug/R.txt b/2p-android/trunk/build/intermediates/symbols/debug/R.txt
deleted file mode 100644
index d326c7d..0000000
--- a/2p-android/trunk/build/intermediates/symbols/debug/R.txt
+++ /dev/null
@@ -1,1803 +0,0 @@
-int anim abc_fade_in 0x7f040000
-int anim abc_fade_out 0x7f040001
-int anim abc_grow_fade_in_from_bottom 0x7f040002
-int anim abc_popup_enter 0x7f040003
-int anim abc_popup_exit 0x7f040004
-int anim abc_shrink_fade_out_from_bottom 0x7f040005
-int anim abc_slide_in_bottom 0x7f040006
-int anim abc_slide_in_top 0x7f040007
-int anim abc_slide_out_bottom 0x7f040008
-int anim abc_slide_out_top 0x7f040009
-int anim design_bottom_sheet_slide_in 0x7f04000a
-int anim design_bottom_sheet_slide_out 0x7f04000b
-int anim design_fab_in 0x7f04000c
-int anim design_fab_out 0x7f04000d
-int anim design_snackbar_in 0x7f04000e
-int anim design_snackbar_out 0x7f04000f
-int attr actionBarDivider 0x7f01003e
-int attr actionBarItemBackground 0x7f01003f
-int attr actionBarPopupTheme 0x7f010038
-int attr actionBarSize 0x7f01003d
-int attr actionBarSplitStyle 0x7f01003a
-int attr actionBarStyle 0x7f010039
-int attr actionBarTabBarStyle 0x7f010034
-int attr actionBarTabStyle 0x7f010033
-int attr actionBarTabTextStyle 0x7f010035
-int attr actionBarTheme 0x7f01003b
-int attr actionBarWidgetTheme 0x7f01003c
-int attr actionButtonStyle 0x7f010058
-int attr actionDropDownStyle 0x7f010054
-int attr actionLayout 0x7f0100c6
-int attr actionMenuTextAppearance 0x7f010040
-int attr actionMenuTextColor 0x7f010041
-int attr actionModeBackground 0x7f010044
-int attr actionModeCloseButtonStyle 0x7f010043
-int attr actionModeCloseDrawable 0x7f010046
-int attr actionModeCopyDrawable 0x7f010048
-int attr actionModeCutDrawable 0x7f010047
-int attr actionModeFindDrawable 0x7f01004c
-int attr actionModePasteDrawable 0x7f010049
-int attr actionModePopupWindowStyle 0x7f01004e
-int attr actionModeSelectAllDrawable 0x7f01004a
-int attr actionModeShareDrawable 0x7f01004b
-int attr actionModeSplitBackground 0x7f010045
-int attr actionModeStyle 0x7f010042
-int attr actionModeWebSearchDrawable 0x7f01004d
-int attr actionOverflowButtonStyle 0x7f010036
-int attr actionOverflowMenuStyle 0x7f010037
-int attr actionProviderClass 0x7f0100c8
-int attr actionViewClass 0x7f0100c7
-int attr activityChooserViewStyle 0x7f010060
-int attr alertDialogButtonGroupStyle 0x7f010083
-int attr alertDialogCenterButtons 0x7f010084
-int attr alertDialogStyle 0x7f010082
-int attr alertDialogTheme 0x7f010085
-int attr allowStacking 0x7f010099
-int attr arrowHeadLength 0x7f0100b8
-int attr arrowShaftLength 0x7f0100b9
-int attr autoCompleteTextViewStyle 0x7f01008a
-int attr background 0x7f01000c
-int attr backgroundSplit 0x7f01000e
-int attr backgroundStacked 0x7f01000d
-int attr backgroundTint 0x7f010118
-int attr backgroundTintMode 0x7f010119
-int attr barLength 0x7f0100ba
-int attr behavior_hideable 0x7f010098
-int attr behavior_overlapTop 0x7f0100d7
-int attr behavior_peekHeight 0x7f010097
-int attr borderWidth 0x7f0100bf
-int attr borderlessButtonStyle 0x7f01005d
-int attr bottomSheetDialogTheme 0x7f0100b1
-int attr bottomSheetStyle 0x7f0100b2
-int attr buttonBarButtonStyle 0x7f01005a
-int attr buttonBarNegativeButtonStyle 0x7f010088
-int attr buttonBarNeutralButtonStyle 0x7f010089
-int attr buttonBarPositiveButtonStyle 0x7f010087
-int attr buttonBarStyle 0x7f010059
-int attr buttonPanelSideLayout 0x7f01001f
-int attr buttonStyle 0x7f01008b
-int attr buttonStyleSmall 0x7f01008c
-int attr buttonTint 0x7f0100a9
-int attr buttonTintMode 0x7f0100aa
-int attr checkboxStyle 0x7f01008d
-int attr checkedTextViewStyle 0x7f01008e
-int attr closeIcon 0x7f0100dc
-int attr closeItemLayout 0x7f01001c
-int attr collapseContentDescription 0x7f01010f
-int attr collapseIcon 0x7f01010e
-int attr collapsedTitleGravity 0x7f0100a6
-int attr collapsedTitleTextAppearance 0x7f0100a2
-int attr color 0x7f0100b4
-int attr colorAccent 0x7f01007b
-int attr colorButtonNormal 0x7f01007f
-int attr colorControlActivated 0x7f01007d
-int attr colorControlHighlight 0x7f01007e
-int attr colorControlNormal 0x7f01007c
-int attr colorPrimary 0x7f010079
-int attr colorPrimaryDark 0x7f01007a
-int attr colorSwitchThumbNormal 0x7f010080
-int attr commitIcon 0x7f0100e1
-int attr contentInsetEnd 0x7f010017
-int attr contentInsetLeft 0x7f010018
-int attr contentInsetRight 0x7f010019
-int attr contentInsetStart 0x7f010016
-int attr contentScrim 0x7f0100a3
-int attr controlBackground 0x7f010081
-int attr counterEnabled 0x7f010101
-int attr counterMaxLength 0x7f010102
-int attr counterOverflowTextAppearance 0x7f010104
-int attr counterTextAppearance 0x7f010103
-int attr customNavigationLayout 0x7f01000f
-int attr defaultQueryHint 0x7f0100db
-int attr dialogPreferredPadding 0x7f010052
-int attr dialogTheme 0x7f010051
-int attr displayOptions 0x7f010005
-int attr divider 0x7f01000b
-int attr dividerHorizontal 0x7f01005f
-int attr dividerPadding 0x7f0100c4
-int attr dividerVertical 0x7f01005e
-int attr drawableSize 0x7f0100b6
-int attr drawerArrowStyle 0x7f010000
-int attr dropDownListViewStyle 0x7f010071
-int attr dropdownListPreferredItemHeight 0x7f010055
-int attr editTextBackground 0x7f010066
-int attr editTextColor 0x7f010065
-int attr editTextStyle 0x7f01008f
-int attr elevation 0x7f01001a
-int attr errorEnabled 0x7f0100ff
-int attr errorTextAppearance 0x7f010100
-int attr expandActivityOverflowButtonDrawable 0x7f01001e
-int attr expanded 0x7f010024
-int attr expandedTitleGravity 0x7f0100a7
-int attr expandedTitleMargin 0x7f01009c
-int attr expandedTitleMarginBottom 0x7f0100a0
-int attr expandedTitleMarginEnd 0x7f01009f
-int attr expandedTitleMarginStart 0x7f01009d
-int attr expandedTitleMarginTop 0x7f01009e
-int attr expandedTitleTextAppearance 0x7f0100a1
-int attr fabSize 0x7f0100bd
-int attr foregroundInsidePadding 0x7f0100c1
-int attr gapBetweenBars 0x7f0100b7
-int attr goIcon 0x7f0100dd
-int attr headerLayout 0x7f0100cf
-int attr height 0x7f010001
-int attr hideOnContentScroll 0x7f010015
-int attr hintAnimationEnabled 0x7f010105
-int attr hintEnabled 0x7f0100fe
-int attr hintTextAppearance 0x7f0100fd
-int attr homeAsUpIndicator 0x7f010057
-int attr homeLayout 0x7f010010
-int attr icon 0x7f010009
-int attr iconifiedByDefault 0x7f0100d9
-int attr imageButtonStyle 0x7f010067
-int attr indeterminateProgressStyle 0x7f010012
-int attr initialActivityCount 0x7f01001d
-int attr insetForeground 0x7f0100d6
-int attr isLightTheme 0x7f010002
-int attr itemBackground 0x7f0100cd
-int attr itemIconTint 0x7f0100cb
-int attr itemPadding 0x7f010014
-int attr itemTextAppearance 0x7f0100ce
-int attr itemTextColor 0x7f0100cc
-int attr keylines 0x7f0100ab
-int attr layout 0x7f0100d8
-int attr layoutManager 0x7f0100d2
-int attr layout_anchor 0x7f0100ae
-int attr layout_anchorGravity 0x7f0100b0
-int attr layout_behavior 0x7f0100ad
-int attr layout_collapseMode 0x7f01009a
-int attr layout_collapseParallaxMultiplier 0x7f01009b
-int attr layout_keyline 0x7f0100af
-int attr layout_scrollFlags 0x7f010025
-int attr layout_scrollInterpolator 0x7f010026
-int attr listChoiceBackgroundIndicator 0x7f010078
-int attr listDividerAlertDialog 0x7f010053
-int attr listItemLayout 0x7f010023
-int attr listLayout 0x7f010020
-int attr listPopupWindowStyle 0x7f010072
-int attr listPreferredItemHeight 0x7f01006c
-int attr listPreferredItemHeightLarge 0x7f01006e
-int attr listPreferredItemHeightSmall 0x7f01006d
-int attr listPreferredItemPaddingLeft 0x7f01006f
-int attr listPreferredItemPaddingRight 0x7f010070
-int attr logo 0x7f01000a
-int attr logoDescription 0x7f010112
-int attr maxActionInlineWidth 0x7f0100e5
-int attr maxButtonHeight 0x7f01010d
-int attr measureWithLargestChild 0x7f0100c2
-int attr menu 0x7f0100ca
-int attr multiChoiceItemLayout 0x7f010021
-int attr navigationContentDescription 0x7f010111
-int attr navigationIcon 0x7f010110
-int attr navigationMode 0x7f010004
-int attr overlapAnchor 0x7f0100d0
-int attr paddingEnd 0x7f010116
-int attr paddingStart 0x7f010115
-int attr panelBackground 0x7f010075
-int attr panelMenuListTheme 0x7f010077
-int attr panelMenuListWidth 0x7f010076
-int attr popupMenuStyle 0x7f010063
-int attr popupTheme 0x7f01001b
-int attr popupWindowStyle 0x7f010064
-int attr preserveIconSpacing 0x7f0100c9
-int attr pressedTranslationZ 0x7f0100be
-int attr progressBarPadding 0x7f010013
-int attr progressBarStyle 0x7f010011
-int attr queryBackground 0x7f0100e3
-int attr queryHint 0x7f0100da
-int attr radioButtonStyle 0x7f010090
-int attr ratingBarStyle 0x7f010091
-int attr ratingBarStyleIndicator 0x7f010092
-int attr ratingBarStyleSmall 0x7f010093
-int attr reverseLayout 0x7f0100d4
-int attr rippleColor 0x7f0100bc
-int attr searchHintIcon 0x7f0100df
-int attr searchIcon 0x7f0100de
-int attr searchViewStyle 0x7f01006b
-int attr seekBarStyle 0x7f010094
-int attr selectableItemBackground 0x7f01005b
-int attr selectableItemBackgroundBorderless 0x7f01005c
-int attr showAsAction 0x7f0100c5
-int attr showDividers 0x7f0100c3
-int attr showText 0x7f0100ec
-int attr singleChoiceItemLayout 0x7f010022
-int attr spanCount 0x7f0100d3
-int attr spinBars 0x7f0100b5
-int attr spinnerDropDownItemStyle 0x7f010056
-int attr spinnerStyle 0x7f010095
-int attr splitTrack 0x7f0100eb
-int attr srcCompat 0x7f010027
-int attr stackFromEnd 0x7f0100d5
-int attr state_above_anchor 0x7f0100d1
-int attr statusBarBackground 0x7f0100ac
-int attr statusBarScrim 0x7f0100a4
-int attr submitBackground 0x7f0100e4
-int attr subtitle 0x7f010006
-int attr subtitleTextAppearance 0x7f010107
-int attr subtitleTextColor 0x7f010114
-int attr subtitleTextStyle 0x7f010008
-int attr suggestionRowLayout 0x7f0100e2
-int attr switchMinWidth 0x7f0100e9
-int attr switchPadding 0x7f0100ea
-int attr switchStyle 0x7f010096
-int attr switchTextAppearance 0x7f0100e8
-int attr tabBackground 0x7f0100f0
-int attr tabContentStart 0x7f0100ef
-int attr tabGravity 0x7f0100f2
-int attr tabIndicatorColor 0x7f0100ed
-int attr tabIndicatorHeight 0x7f0100ee
-int attr tabMaxWidth 0x7f0100f4
-int attr tabMinWidth 0x7f0100f3
-int attr tabMode 0x7f0100f1
-int attr tabPadding 0x7f0100fc
-int attr tabPaddingBottom 0x7f0100fb
-int attr tabPaddingEnd 0x7f0100fa
-int attr tabPaddingStart 0x7f0100f8
-int attr tabPaddingTop 0x7f0100f9
-int attr tabSelectedTextColor 0x7f0100f7
-int attr tabTextAppearance 0x7f0100f5
-int attr tabTextColor 0x7f0100f6
-int attr textAllCaps 0x7f010028
-int attr textAppearanceLargePopupMenu 0x7f01004f
-int attr textAppearanceListItem 0x7f010073
-int attr textAppearanceListItemSmall 0x7f010074
-int attr textAppearanceSearchResultSubtitle 0x7f010069
-int attr textAppearanceSearchResultTitle 0x7f010068
-int attr textAppearanceSmallPopupMenu 0x7f010050
-int attr textColorAlertDialogListItem 0x7f010086
-int attr textColorError 0x7f0100b3
-int attr textColorSearchUrl 0x7f01006a
-int attr theme 0x7f010117
-int attr thickness 0x7f0100bb
-int attr thumbTextPadding 0x7f0100e7
-int attr title 0x7f010003
-int attr titleEnabled 0x7f0100a8
-int attr titleMarginBottom 0x7f01010c
-int attr titleMarginEnd 0x7f01010a
-int attr titleMarginStart 0x7f010109
-int attr titleMarginTop 0x7f01010b
-int attr titleMargins 0x7f010108
-int attr titleTextAppearance 0x7f010106
-int attr titleTextColor 0x7f010113
-int attr titleTextStyle 0x7f010007
-int attr toolbarId 0x7f0100a5
-int attr toolbarNavigationButtonStyle 0x7f010062
-int attr toolbarStyle 0x7f010061
-int attr track 0x7f0100e6
-int attr useCompatPadding 0x7f0100c0
-int attr voiceIcon 0x7f0100e0
-int attr windowActionBar 0x7f010029
-int attr windowActionBarOverlay 0x7f01002b
-int attr windowActionModeOverlay 0x7f01002c
-int attr windowFixedHeightMajor 0x7f010030
-int attr windowFixedHeightMinor 0x7f01002e
-int attr windowFixedWidthMajor 0x7f01002d
-int attr windowFixedWidthMinor 0x7f01002f
-int attr windowMinWidthMajor 0x7f010031
-int attr windowMinWidthMinor 0x7f010032
-int attr windowNoTitle 0x7f01002a
-int bool abc_action_bar_embed_tabs 0x7f060003
-int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
-int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004
-int bool abc_allow_stacked_button_bar 0x7f060000
-int bool abc_config_actionMenuItemAllCaps 0x7f060005
-int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002
-int bool abc_config_closeDialogWhenTouchOutside 0x7f060006
-int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007
-int color abc_background_cache_hint_selector_material_dark 0x7f0a0044
-int color abc_background_cache_hint_selector_material_light 0x7f0a0045
-int color abc_color_highlight_material 0x7f0a0046
-int color abc_input_method_navigation_guard 0x7f0a0000
-int color abc_primary_text_disable_only_material_dark 0x7f0a0047
-int color abc_primary_text_disable_only_material_light 0x7f0a0048
-int color abc_primary_text_material_dark 0x7f0a0049
-int color abc_primary_text_material_light 0x7f0a004a
-int color abc_search_url_text 0x7f0a004b
-int color abc_search_url_text_normal 0x7f0a0001
-int color abc_search_url_text_pressed 0x7f0a0002
-int color abc_search_url_text_selected 0x7f0a0003
-int color abc_secondary_text_material_dark 0x7f0a004c
-int color abc_secondary_text_material_light 0x7f0a004d
-int color accent_material_dark 0x7f0a0004
-int color accent_material_light 0x7f0a0005
-int color background_floating_material_dark 0x7f0a0006
-int color background_floating_material_light 0x7f0a0007
-int color background_material_dark 0x7f0a0008
-int color background_material_light 0x7f0a0009
-int color bright_foreground_disabled_material_dark 0x7f0a000a
-int color bright_foreground_disabled_material_light 0x7f0a000b
-int color bright_foreground_inverse_material_dark 0x7f0a000c
-int color bright_foreground_inverse_material_light 0x7f0a000d
-int color bright_foreground_material_dark 0x7f0a000e
-int color bright_foreground_material_light 0x7f0a000f
-int color button_material_dark 0x7f0a0010
-int color button_material_light 0x7f0a0011
-int color design_fab_shadow_end_color 0x7f0a0012
-int color design_fab_shadow_mid_color 0x7f0a0013
-int color design_fab_shadow_start_color 0x7f0a0014
-int color design_fab_stroke_end_inner_color 0x7f0a0015
-int color design_fab_stroke_end_outer_color 0x7f0a0016
-int color design_fab_stroke_top_inner_color 0x7f0a0017
-int color design_fab_stroke_top_outer_color 0x7f0a0018
-int color design_snackbar_background_color 0x7f0a0019
-int color design_textinput_error_color_dark 0x7f0a001a
-int color design_textinput_error_color_light 0x7f0a001b
-int color dim_foreground_disabled_material_dark 0x7f0a001c
-int color dim_foreground_disabled_material_light 0x7f0a001d
-int color dim_foreground_material_dark 0x7f0a001e
-int color dim_foreground_material_light 0x7f0a001f
-int color foreground_material_dark 0x7f0a0020
-int color foreground_material_light 0x7f0a0021
-int color highlighted_text_material_dark 0x7f0a0022
-int color highlighted_text_material_light 0x7f0a0023
-int color hint_foreground_material_dark 0x7f0a0024
-int color hint_foreground_material_light 0x7f0a0025
-int color material_blue_grey_800 0x7f0a0026
-int color material_blue_grey_900 0x7f0a0027
-int color material_blue_grey_950 0x7f0a0028
-int color material_deep_teal_200 0x7f0a0029
-int color material_deep_teal_500 0x7f0a002a
-int color material_grey_100 0x7f0a002b
-int color material_grey_300 0x7f0a002c
-int color material_grey_50 0x7f0a002d
-int color material_grey_600 0x7f0a002e
-int color material_grey_800 0x7f0a002f
-int color material_grey_850 0x7f0a0030
-int color material_grey_900 0x7f0a0031
-int color primary_dark_material_dark 0x7f0a0032
-int color primary_dark_material_light 0x7f0a0033
-int color primary_material_dark 0x7f0a0034
-int color primary_material_light 0x7f0a0035
-int color primary_text_default_material_dark 0x7f0a0036
-int color primary_text_default_material_light 0x7f0a0037
-int color primary_text_disabled_material_dark 0x7f0a0038
-int color primary_text_disabled_material_light 0x7f0a0039
-int color ripple_material_dark 0x7f0a003a
-int color ripple_material_light 0x7f0a003b
-int color secondary_text_default_material_dark 0x7f0a003c
-int color secondary_text_default_material_light 0x7f0a003d
-int color secondary_text_disabled_material_dark 0x7f0a003e
-int color secondary_text_disabled_material_light 0x7f0a003f
-int color switch_thumb_disabled_material_dark 0x7f0a0040
-int color switch_thumb_disabled_material_light 0x7f0a0041
-int color switch_thumb_material_dark 0x7f0a004e
-int color switch_thumb_material_light 0x7f0a004f
-int color switch_thumb_normal_material_dark 0x7f0a0042
-int color switch_thumb_normal_material_light 0x7f0a0043
-int dimen abc_action_bar_content_inset_material 0x7f07000d
-int dimen abc_action_bar_default_height_material 0x7f070001
-int dimen abc_action_bar_default_padding_end_material 0x7f07000e
-int dimen abc_action_bar_default_padding_start_material 0x7f07000f
-int dimen abc_action_bar_icon_vertical_padding_material 0x7f07001a
-int dimen abc_action_bar_overflow_padding_end_material 0x7f07001b
-int dimen abc_action_bar_overflow_padding_start_material 0x7f07001c
-int dimen abc_action_bar_progress_bar_size 0x7f070002
-int dimen abc_action_bar_stacked_max_height 0x7f07001d
-int dimen abc_action_bar_stacked_tab_max_width 0x7f07001e
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07001f
-int dimen abc_action_bar_subtitle_top_margin_material 0x7f070020
-int dimen abc_action_button_min_height_material 0x7f070021
-int dimen abc_action_button_min_width_material 0x7f070022
-int dimen abc_action_button_min_width_overflow_material 0x7f070023
-int dimen abc_alert_dialog_button_bar_height 0x7f070000
-int dimen abc_button_inset_horizontal_material 0x7f070024
-int dimen abc_button_inset_vertical_material 0x7f070025
-int dimen abc_button_padding_horizontal_material 0x7f070026
-int dimen abc_button_padding_vertical_material 0x7f070027
-int dimen abc_config_prefDialogWidth 0x7f070005
-int dimen abc_control_corner_material 0x7f070028
-int dimen abc_control_inset_material 0x7f070029
-int dimen abc_control_padding_material 0x7f07002a
-int dimen abc_dialog_fixed_height_major 0x7f070006
-int dimen abc_dialog_fixed_height_minor 0x7f070007
-int dimen abc_dialog_fixed_width_major 0x7f070008
-int dimen abc_dialog_fixed_width_minor 0x7f070009
-int dimen abc_dialog_list_padding_vertical_material 0x7f07002b
-int dimen abc_dialog_min_width_major 0x7f07000a
-int dimen abc_dialog_min_width_minor 0x7f07000b
-int dimen abc_dialog_padding_material 0x7f07002c
-int dimen abc_dialog_padding_top_material 0x7f07002d
-int dimen abc_disabled_alpha_material_dark 0x7f07002e
-int dimen abc_disabled_alpha_material_light 0x7f07002f
-int dimen abc_dropdownitem_icon_width 0x7f070030
-int dimen abc_dropdownitem_text_padding_left 0x7f070031
-int dimen abc_dropdownitem_text_padding_right 0x7f070032
-int dimen abc_edit_text_inset_bottom_material 0x7f070033
-int dimen abc_edit_text_inset_horizontal_material 0x7f070034
-int dimen abc_edit_text_inset_top_material 0x7f070035
-int dimen abc_floating_window_z 0x7f070036
-int dimen abc_list_item_padding_horizontal_material 0x7f070037
-int dimen abc_panel_menu_list_width 0x7f070038
-int dimen abc_search_view_preferred_width 0x7f070039
-int dimen abc_search_view_text_min_width 0x7f07000c
-int dimen abc_seekbar_track_background_height_material 0x7f07003a
-int dimen abc_seekbar_track_progress_height_material 0x7f07003b
-int dimen abc_select_dialog_padding_start_material 0x7f07003c
-int dimen abc_switch_padding 0x7f070018
-int dimen abc_text_size_body_1_material 0x7f07003d
-int dimen abc_text_size_body_2_material 0x7f07003e
-int dimen abc_text_size_button_material 0x7f07003f
-int dimen abc_text_size_caption_material 0x7f070040
-int dimen abc_text_size_display_1_material 0x7f070041
-int dimen abc_text_size_display_2_material 0x7f070042
-int dimen abc_text_size_display_3_material 0x7f070043
-int dimen abc_text_size_display_4_material 0x7f070044
-int dimen abc_text_size_headline_material 0x7f070045
-int dimen abc_text_size_large_material 0x7f070046
-int dimen abc_text_size_medium_material 0x7f070047
-int dimen abc_text_size_menu_material 0x7f070048
-int dimen abc_text_size_small_material 0x7f070049
-int dimen abc_text_size_subhead_material 0x7f07004a
-int dimen abc_text_size_subtitle_material_toolbar 0x7f070003
-int dimen abc_text_size_title_material 0x7f07004b
-int dimen abc_text_size_title_material_toolbar 0x7f070004
-int dimen activity_horizontal_margin 0x7f070019
-int dimen activity_vertical_margin 0x7f07004c
-int dimen design_appbar_elevation 0x7f07004d
-int dimen design_bottom_sheet_modal_elevation 0x7f07004e
-int dimen design_bottom_sheet_modal_peek_height 0x7f07004f
-int dimen design_fab_border_width 0x7f070050
-int dimen design_fab_elevation 0x7f070051
-int dimen design_fab_image_size 0x7f070052
-int dimen design_fab_size_mini 0x7f070053
-int dimen design_fab_size_normal 0x7f070054
-int dimen design_fab_translation_z_pressed 0x7f070055
-int dimen design_navigation_elevation 0x7f070056
-int dimen design_navigation_icon_padding 0x7f070057
-int dimen design_navigation_icon_size 0x7f070058
-int dimen design_navigation_max_width 0x7f070010
-int dimen design_navigation_padding_bottom 0x7f070059
-int dimen design_navigation_separator_vertical_padding 0x7f07005a
-int dimen design_snackbar_action_inline_max_width 0x7f070011
-int dimen design_snackbar_background_corner_radius 0x7f070012
-int dimen design_snackbar_elevation 0x7f07005b
-int dimen design_snackbar_extra_spacing_horizontal 0x7f070013
-int dimen design_snackbar_max_width 0x7f070014
-int dimen design_snackbar_min_width 0x7f070015
-int dimen design_snackbar_padding_horizontal 0x7f07005c
-int dimen design_snackbar_padding_vertical 0x7f07005d
-int dimen design_snackbar_padding_vertical_2lines 0x7f070016
-int dimen design_snackbar_text_size 0x7f07005e
-int dimen design_tab_max_width 0x7f07005f
-int dimen design_tab_scrollable_min_width 0x7f070017
-int dimen design_tab_text_size 0x7f070060
-int dimen design_tab_text_size_2line 0x7f070061
-int dimen disabled_alpha_material_dark 0x7f070062
-int dimen disabled_alpha_material_light 0x7f070063
-int dimen highlight_alpha_material_colored 0x7f070064
-int dimen highlight_alpha_material_dark 0x7f070065
-int dimen highlight_alpha_material_light 0x7f070066
-int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070067
-int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070068
-int dimen item_touch_helper_swipe_escape_velocity 0x7f070069
-int dimen navigation_drawer_width 0x7f07006a
-int dimen notification_large_icon_height 0x7f07006b
-int dimen notification_large_icon_width 0x7f07006c
-int dimen notification_subtext_size 0x7f07006d
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
-int drawable abc_action_bar_item_background_material 0x7f020001
-int drawable abc_btn_borderless_material 0x7f020002
-int drawable abc_btn_check_material 0x7f020003
-int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
-int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
-int drawable abc_btn_colored_material 0x7f020006
-int drawable abc_btn_default_mtrl_shape 0x7f020007
-int drawable abc_btn_radio_material 0x7f020008
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
-int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
-int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
-int drawable abc_cab_background_internal_bg 0x7f02000f
-int drawable abc_cab_background_top_material 0x7f020010
-int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
-int drawable abc_control_background_material 0x7f020012
-int drawable abc_dialog_material_background_dark 0x7f020013
-int drawable abc_dialog_material_background_light 0x7f020014
-int drawable abc_edit_text_material 0x7f020015
-int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
-int drawable abc_ic_clear_mtrl_alpha 0x7f020017
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
-int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
-int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
-int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
-int drawable abc_ic_star_black_16dp 0x7f020021
-int drawable abc_ic_star_black_36dp 0x7f020022
-int drawable abc_ic_star_half_black_16dp 0x7f020023
-int drawable abc_ic_star_half_black_36dp 0x7f020024
-int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025
-int drawable abc_item_background_holo_dark 0x7f020026
-int drawable abc_item_background_holo_light 0x7f020027
-int drawable abc_list_divider_mtrl_alpha 0x7f020028
-int drawable abc_list_focused_holo 0x7f020029
-int drawable abc_list_longpressed_holo 0x7f02002a
-int drawable abc_list_pressed_holo_dark 0x7f02002b
-int drawable abc_list_pressed_holo_light 0x7f02002c
-int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
-int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
-int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
-int drawable abc_list_selector_disabled_holo_light 0x7f020030
-int drawable abc_list_selector_holo_dark 0x7f020031
-int drawable abc_list_selector_holo_light 0x7f020032
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
-int drawable abc_popup_background_mtrl_mult 0x7f020034
-int drawable abc_ratingbar_full_material 0x7f020035
-int drawable abc_ratingbar_indicator_material 0x7f020036
-int drawable abc_ratingbar_small_material 0x7f020037
-int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
-int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
-int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
-int drawable abc_seekbar_thumb_material 0x7f02003d
-int drawable abc_seekbar_track_material 0x7f02003e
-int drawable abc_spinner_mtrl_am_alpha 0x7f02003f
-int drawable abc_spinner_textfield_background_material 0x7f020040
-int drawable abc_switch_thumb_material 0x7f020041
-int drawable abc_switch_track_mtrl_alpha 0x7f020042
-int drawable abc_tab_indicator_material 0x7f020043
-int drawable abc_tab_indicator_mtrl_alpha 0x7f020044
-int drawable abc_text_cursor_material 0x7f020045
-int drawable abc_textfield_activated_mtrl_alpha 0x7f020046
-int drawable abc_textfield_default_mtrl_alpha 0x7f020047
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049
-int drawable abc_textfield_search_material 0x7f02004a
-int drawable barra_switch 0x7f02004b
-int drawable btn 0x7f02004c
-int drawable btn_browse 0x7f02004d
-int drawable btn_settings 0x7f02004e
-int drawable design_fab_background 0x7f02004f
-int drawable design_snackbar_background 0x7f020050
-int drawable drawer_shadow 0x7f020051
-int drawable edtstyle 0x7f020052
-int drawable edtstyleb 0x7f020053
-int drawable freccia2_burned 0x7f020054
-int drawable freccia_burned 0x7f020055
-int drawable historybtn 0x7f020056
-int drawable homebtn 0x7f020057
-int drawable ic_drawer 0x7f020058
-int drawable ic_menu_about 0x7f020059
-int drawable ic_menu_compose 0x7f02005a
-int drawable ic_menu_compose2 0x7f02005b
-int drawable ic_menu_delete 0x7f02005c
-int drawable ic_menu_delete2 0x7f02005d
-int drawable ic_menu_edit 0x7f02005e
-int drawable ic_menu_edit2 0x7f02005f
-int drawable ic_menu_import 0x7f020060
-int drawable ic_menu_import2 0x7f020061
-int drawable ic_menu_list 0x7f020062
-int drawable ic_menu_list2 0x7f020063
-int drawable ic_menu_moreoverflow_normal_holo_light 0x7f020064
-int drawable ic_menu_moreoverflow_normal_holo_light2 0x7f020065
-int drawable ic_menu_save 0x7f020066
-int drawable ic_menu_search 0x7f020067
-int drawable ic_menu_search2 0x7f020068
-int drawable ic_menu_set_as 0x7f020069
-int drawable ic_menu_set_as2 0x7f02006a
-int drawable ic_menu_share 0x7f02006b
-int drawable ic_menu_share2 0x7f02006c
-int drawable icon 0x7f02006d
-int drawable librarybtn 0x7f02006e
-int drawable logo_exit 0x7f02006f
-int drawable logo_history 0x7f020070
-int drawable logo_history_burned 0x7f020071
-int drawable logo_historyp 0x7f020072
-int drawable logo_historyp_burned 0x7f020073
-int drawable logo_home 0x7f020074
-int drawable logo_home_burned 0x7f020075
-int drawable logo_homep_burned 0x7f020076
-int drawable logo_library 0x7f020077
-int drawable logo_library_burned 0x7f020078
-int drawable logo_libraryp 0x7f020079
-int drawable logo_libraryp_burned 0x7f02007a
-int drawable logo_query 0x7f02007b
-int drawable logo_settings 0x7f02007c
-int drawable logo_settings_burned 0x7f02007d
-int drawable logo_settingsp 0x7f02007e
-int drawable logo_settingsp_burned 0x7f02007f
-int drawable logo_theory 0x7f020080
-int drawable logo_web 0x7f020081
-int drawable logo_web_burned 0x7f020082
-int drawable logo_webp 0x7f020083
-int drawable logo_webp_burned 0x7f020084
-int drawable notification_template_icon_bg 0x7f02008c
-int drawable settingsbtn 0x7f020085
-int drawable shape_switch 0x7f020086
-int drawable splash 0x7f020087
-int drawable switch_off 0x7f020088
-int drawable switch_on 0x7f020089
-int drawable switchstyle 0x7f02008a
-int drawable webbtn 0x7f02008b
-int id about 0x7f0b00c4
-int id action0 0x7f0b00ab
-int id action_bar 0x7f0b005a
-int id action_bar_activity_content 0x7f0b0000
-int id action_bar_container 0x7f0b0059
-int id action_bar_root 0x7f0b0055
-int id action_bar_spinner 0x7f0b0001
-int id action_bar_subtitle 0x7f0b003b
-int id action_bar_title 0x7f0b003a
-int id action_context_bar 0x7f0b005b
-int id action_divider 0x7f0b00af
-int id action_menu_divider 0x7f0b0002
-int id action_menu_presenter 0x7f0b0003
-int id action_mode_bar 0x7f0b0057
-int id action_mode_bar_stub 0x7f0b0056
-int id action_mode_close_button 0x7f0b003c
-int id action_settings 0x7f0b00be
-int id activity_chooser_view_content 0x7f0b003d
-int id alertTitle 0x7f0b0049
-int id always 0x7f0b0033
-int id appbar 0x7f0b006b
-int id arrowQuery 0x7f0b0078
-int id arrowTheory 0x7f0b0075
-int id beginning 0x7f0b0031
-int id body 0x7f0b00bc
-int id bottom 0x7f0b001d
-int id btnClear 0x7f0b00a2
-int id btnDeleteQ 0x7f0b008c
-int id btnDeleteT 0x7f0b008b
-int id btnEditPath 0x7f0b008e
-int id btnExecute 0x7f0b00a3
-int id btnNext 0x7f0b00a7
-int id buttonAdd 0x7f0b0081
-int id buttonBrowse 0x7f0b007f
-int id buttonPanel 0x7f0b0044
-int id buttonRemove 0x7f0b0080
-int id buttonhost 0x7f0b00a1
-int id cancel_action 0x7f0b00ac
-int id center 0x7f0b001e
-int id center_horizontal 0x7f0b001f
-int id center_vertical 0x7f0b0020
-int id checkbox 0x7f0b0052
-int id chronometer 0x7f0b00b2
-int id clip_horizontal 0x7f0b002c
-int id clip_vertical 0x7f0b002d
-int id collapseActionView 0x7f0b0034
-int id confirm 0x7f0b00bd
-int id contentPanel 0x7f0b004a
-int id content_frame 0x7f0b00a9
-int id custom 0x7f0b0050
-int id customPanel 0x7f0b004f
-int id decor_content_parent 0x7f0b0058
-int id default_activity_button 0x7f0b0040
-int id delete_theory 0x7f0b00c8
-int id design_bottom_sheet 0x7f0b0092
-int id design_menu_item_action_area 0x7f0b0099
-int id design_menu_item_action_area_stub 0x7f0b0098
-int id design_menu_item_text 0x7f0b0097
-int id design_navigation_view 0x7f0b0096
-int id disableHome 0x7f0b000e
-int id drawer_layout 0x7f0b00a8
-int id editText 0x7f0b00a0
-int id edit_query 0x7f0b005c
-int id edit_theory 0x7f0b00c6
-int id end 0x7f0b0021
-int id end_padder 0x7f0b00b7
-int id enterAlways 0x7f0b0015
-int id enterAlwaysCollapsed 0x7f0b0016
-int id etBody 0x7f0b006a
-int id etTitle 0x7f0b0069
-int id exitUntilCollapsed 0x7f0b0017
-int id expand_activities_button 0x7f0b003e
-int id expanded_menu 0x7f0b0051
-int id export_theory 0x7f0b00c7
-int id fill 0x7f0b002e
-int id fill_horizontal 0x7f0b002f
-int id fill_vertical 0x7f0b0022
-int id find 0x7f0b00c9
-int id fixed 0x7f0b0038
-int id historyButton 0x7f0b0070
-int id historyLabel 0x7f0b0085
-int id home 0x7f0b0004
-int id homeAsUp 0x7f0b000f
-int id icon 0x7f0b0042
-int id ifRoom 0x7f0b0035
-int id image 0x7f0b003f
-int id import_library 0x7f0b00bf
-int id import_theory 0x7f0b00c1
-int id info 0x7f0b00b6
-int id infoQuery 0x7f0b0077
-int id infoTheory 0x7f0b0074
-int id item_icon_imgview 0x7f0b009a
-int id item_name_txtview 0x7f0b009b
-int id item_touch_helper_previous_elevation 0x7f0b0005
-int id labelLibraryFile 0x7f0b007e
-int id labelLibraryFullName 0x7f0b007c
-int id left 0x7f0b0023
-int id left_drawer 0x7f0b00aa
-int id librariesList 0x7f0b0083
-int id libraryButton 0x7f0b006f
-int id libraryNameEditText 0x7f0b007d
-int id library_manager 0x7f0b00c3
-int id line1 0x7f0b00b0
-int id line3 0x7f0b00b4
-int id linearLayout1 0x7f0b007b
-int id listMode 0x7f0b000b
-int id listViewQueries 0x7f0b009c
-int id listViewTheories 0x7f0b009d
-int id list_item 0x7f0b0041
-int id loadedLibraries 0x7f0b0082
-int id media_actions 0x7f0b00ae
-int id middle 0x7f0b0032
-int id mini 0x7f0b0030
-int id multiply 0x7f0b0027
-int id navigation_header_container 0x7f0b0095
-int id never 0x7f0b0036
-int id new_theory 0x7f0b00c0
-int id none 0x7f0b0010
-int id normal 0x7f0b000c
-int id outputView 0x7f0b00a6
-int id pager 0x7f0b006e
-int id parallax 0x7f0b001b
-int id parentPanel 0x7f0b0046
-int id pin 0x7f0b001c
-int id progress_circular 0x7f0b0006
-int id progress_horizontal 0x7f0b0007
-int id radio 0x7f0b0054
-int id right 0x7f0b0024
-int id screen 0x7f0b0028
-int id scroll 0x7f0b0018
-int id scrollIndicatorDown 0x7f0b004e
-int id scrollIndicatorUp 0x7f0b004b
-int id scrollView 0x7f0b004c
-int id scrollable 0x7f0b0039
-int id search_badge 0x7f0b005e
-int id search_bar 0x7f0b005d
-int id search_button 0x7f0b005f
-int id search_close_btn 0x7f0b0064
-int id search_edit_frame 0x7f0b0060
-int id search_go_btn 0x7f0b0066
-int id search_mag_icon 0x7f0b0061
-int id search_plate 0x7f0b0062
-int id search_src_text 0x7f0b0063
-int id search_voice_btn 0x7f0b0067
-int id select_dialog_listview 0x7f0b0068
-int id settingsButton 0x7f0b0071
-int id settingsLabel 0x7f0b008d
-int id share_theory 0x7f0b00c5
-int id shortcut 0x7f0b0053
-int id showCustom 0x7f0b0011
-int id showHome 0x7f0b0012
-int id showTitle 0x7f0b0013
-int id snackbar_action 0x7f0b0094
-int id snackbar_text 0x7f0b0093
-int id snap 0x7f0b0019
-int id solutionView 0x7f0b00a5
-int id spacer 0x7f0b0045
-int id split_action_bar 0x7f0b0008
-int id src_atop 0x7f0b0029
-int id src_in 0x7f0b002a
-int id src_over 0x7f0b002b
-int id start 0x7f0b0025
-int id statusView 0x7f0b0084
-int id status_bar_latest_event_content 0x7f0b00ad
-int id submit_area 0x7f0b0065
-int id switchQueries 0x7f0b008a
-int id switchShare 0x7f0b0090
-int id switchTheories 0x7f0b0088
-int id tabMode 0x7f0b000d
-int id tab_layout 0x7f0b006d
-int id tabhost 0x7f0b00a4
-int id tableHistory 0x7f0b0086
-int id text 0x7f0b00b5
-int id text1 0x7f0b00b8
-int id text2 0x7f0b00b3
-int id textSpacerNoButtons 0x7f0b004d
-int id textView 0x7f0b009e
-int id theoriesListD 0x7f0b00bb
-int id theories_list 0x7f0b00c2
-int id time 0x7f0b00b1
-int id title 0x7f0b0043
-int id titleQuery 0x7f0b009f
-int id title_template 0x7f0b0048
-int id toolbar 0x7f0b006c
-int id top 0x7f0b0026
-int id topPanel 0x7f0b0047
-int id touch_outside 0x7f0b0091
-int id tvDbTheories 0x7f0b00b9
-int id tvEmpty 0x7f0b00ba
-int id tvQuery 0x7f0b0076
-int id tvSvQueries 0x7f0b0089
-int id tvSvShare 0x7f0b008f
-int id tvSvTheories 0x7f0b0087
-int id tvTheory 0x7f0b0073
-int id tvTheorySelected 0x7f0b0079
-int id tvVersion 0x7f0b007a
-int id up 0x7f0b0009
-int id useLogo 0x7f0b0014
-int id view_offset_helper 0x7f0b000a
-int id webButton 0x7f0b0072
-int id withText 0x7f0b0037
-int id wrap_content 0x7f0b001a
-int integer abc_config_activityDefaultDur 0x7f090002
-int integer abc_config_activityShortDur 0x7f090003
-int integer abc_max_action_buttons 0x7f090000
-int integer bottom_sheet_slide_duration 0x7f090004
-int integer cancel_button_image_alpha 0x7f090005
-int integer design_snackbar_text_max_lines 0x7f090001
-int integer status_bar_notification_info_maxnum 0x7f090006
-int layout abc_action_bar_title_item 0x7f030000
-int layout abc_action_bar_up_container 0x7f030001
-int layout abc_action_bar_view_list_nav_layout 0x7f030002
-int layout abc_action_menu_item_layout 0x7f030003
-int layout abc_action_menu_layout 0x7f030004
-int layout abc_action_mode_bar 0x7f030005
-int layout abc_action_mode_close_item_material 0x7f030006
-int layout abc_activity_chooser_view 0x7f030007
-int layout abc_activity_chooser_view_list_item 0x7f030008
-int layout abc_alert_dialog_button_bar_material 0x7f030009
-int layout abc_alert_dialog_material 0x7f03000a
-int layout abc_dialog_title_material 0x7f03000b
-int layout abc_expanded_menu_layout 0x7f03000c
-int layout abc_list_menu_item_checkbox 0x7f03000d
-int layout abc_list_menu_item_icon 0x7f03000e
-int layout abc_list_menu_item_layout 0x7f03000f
-int layout abc_list_menu_item_radio 0x7f030010
-int layout abc_popup_menu_item_layout 0x7f030011
-int layout abc_screen_content_include 0x7f030012
-int layout abc_screen_simple 0x7f030013
-int layout abc_screen_simple_overlay_action_mode 0x7f030014
-int layout abc_screen_toolbar 0x7f030015
-int layout abc_search_dropdown_item_icons_2line 0x7f030016
-int layout abc_search_view 0x7f030017
-int layout abc_select_dialog_material 0x7f030018
-int layout activity_description 0x7f030019
-int layout activity_history 0x7f03001a
-int layout activity_home 0x7f03001b
-int layout activity_import 0x7f03001c
-int layout activity_library_import 0x7f03001d
-int layout activity_library_manager 0x7f03001e
-int layout activity_search 0x7f03001f
-int layout activity_settings 0x7f030020
-int layout btn_text 0x7f030021
-int layout design_bottom_sheet_dialog 0x7f030022
-int layout design_layout_snackbar 0x7f030023
-int layout design_layout_snackbar_include 0x7f030024
-int layout design_layout_tab_icon 0x7f030025
-int layout design_layout_tab_text 0x7f030026
-int layout design_menu_item_action_area 0x7f030027
-int layout design_navigation_item 0x7f030028
-int layout design_navigation_item_header 0x7f030029
-int layout design_navigation_item_separator 0x7f03002a
-int layout design_navigation_item_subheader 0x7f03002b
-int layout design_navigation_menu 0x7f03002c
-int layout design_navigation_menu_item 0x7f03002d
-int layout drawer_list_item 0x7f03002e
-int layout file_row 0x7f03002f
-int layout fragment_query 0x7f030030
-int layout fragment_theory 0x7f030031
-int layout list_item 0x7f030032
-int layout list_libraries 0x7f030033
-int layout list_view_header_layout 0x7f030034
-int layout main 0x7f030035
-int layout navigation_drawer_base_layout 0x7f030036
-int layout notification_media_action 0x7f030037
-int layout notification_media_cancel_action 0x7f030038
-int layout notification_template_big_media 0x7f030039
-int layout notification_template_big_media_narrow 0x7f03003a
-int layout notification_template_lines 0x7f03003b
-int layout notification_template_media 0x7f03003c
-int layout notification_template_part_chronometer 0x7f03003d
-int layout notification_template_part_time 0x7f03003e
-int layout select_dialog_item_material 0x7f03003f
-int layout select_dialog_multichoice_material 0x7f030040
-int layout select_dialog_singlechoice_material 0x7f030041
-int layout splashscreen 0x7f030042
-int layout support_simple_spinner_dropdown_item 0x7f030043
-int layout tab_layout 0x7f030044
-int layout theories_list 0x7f030045
-int layout theories_row 0x7f030046
-int layout theory_edit 0x7f030047
-int menu library_import 0x7f0c0000
-int menu library_manager 0x7f0c0001
-int menu list_page_menu 0x7f0c0002
-int menu main_page_menu 0x7f0c0003
-int menu menu_desc_theory 0x7f0c0004
-int menu menu_description 0x7f0c0005
-int menu menu_history 0x7f0c0006
-int string abc_action_bar_home_description 0x7f050000
-int string abc_action_bar_home_description_format 0x7f050001
-int string abc_action_bar_home_subtitle_description_format 0x7f050002
-int string abc_action_bar_up_description 0x7f050003
-int string abc_action_menu_overflow_description 0x7f050004
-int string abc_action_mode_done 0x7f050005
-int string abc_activity_chooser_view_see_all 0x7f050006
-int string abc_activitychooserview_choose_application 0x7f050007
-int string abc_capital_off 0x7f050008
-int string abc_capital_on 0x7f050009
-int string abc_search_hint 0x7f05000a
-int string abc_searchview_description_clear 0x7f05000b
-int string abc_searchview_description_query 0x7f05000c
-int string abc_searchview_description_search 0x7f05000d
-int string abc_searchview_description_submit 0x7f05000e
-int string abc_searchview_description_voice 0x7f05000f
-int string abc_shareactionprovider_share_with 0x7f050010
-int string abc_shareactionprovider_share_with_application 0x7f050011
-int string abc_toolbar_collapse_description 0x7f050012
-int string about 0x7f050014
-int string action_example 0x7f050015
-int string action_settings 0x7f050016
-int string app_name 0x7f050017
-int string appbar_scrolling_view_behavior 0x7f050018
-int string body 0x7f050019
-int string bottom_sheet_behavior 0x7f05001a
-int string character_counter_pattern 0x7f05001b
-int string close_drawer 0x7f05001c
-int string confirm 0x7f05001d
-int string current_dir 0x7f05001e
-int string delete_questionQ 0x7f05001f
-int string delete_questionT 0x7f050020
-int string dummy_string 0x7f050021
-int string edit_path 0x7f050022
-int string edit_theory 0x7f050023
-int string export_theory 0x7f050024
-int string find 0x7f050025
-int string hello 0x7f050026
-int string hello_blank_fragment 0x7f050027
-int string history 0x7f050028
-int string history_label 0x7f050029
-int string home 0x7f05002a
-int string import_library 0x7f05002b
-int string import_theory 0x7f05002c
-int string library 0x7f05002d
-int string library_manager 0x7f05002e
-int string menu_delete 0x7f05002f
-int string menu_insert 0x7f050030
-int string menu_select 0x7f050031
-int string navigation_drawer_close 0x7f050032
-int string navigation_drawer_open 0x7f050033
-int string new_theory 0x7f050034
-int string no_theories 0x7f050035
-int string open_drawer 0x7f050036
-int string query 0x7f050037
-int string search_hint 0x7f050038
-int string settings 0x7f050039
-int string settings_label 0x7f05003a
-int string share_theory 0x7f05003b
-int string status_bar_notification_info_overflow 0x7f050013
-int string textButtonAdd 0x7f05003c
-int string textButtonBrowse 0x7f05003d
-int string textButtonRemove 0x7f05003e
-int string textLibraryFile 0x7f05003f
-int string textLibraryFullName 0x7f050040
-int string textLoadedLibraries 0x7f050041
-int string textStatus 0x7f050042
-int string theories_list 0x7f050043
-int string theory 0x7f050044
-int string theoryT 0x7f050045
-int string title 0x7f050046
-int string title_activity_base 0x7f050047
-int string title_activity_base2 0x7f050048
-int string title_activity_description 0x7f050049
-int string title_activity_history 0x7f05004a
-int string title_activity_search 0x7f05004b
-int string title_activity_settings 0x7f05004c
-int string title_activity_theory_description 0x7f05004d
-int string title_activity_theory_list 0x7f05004e
-int string title_import_library 0x7f05004f
-int string title_import_theory 0x7f050050
-int string title_libraries 0x7f050051
-int string title_new_edit_activity 0x7f050052
-int string title_section1 0x7f050053
-int string title_section2 0x7f050054
-int string title_section3 0x7f050055
-int string up_one_level 0x7f050056
-int string web 0x7f050057
-int style AlertDialog_AppCompat 0x7f080087
-int style AlertDialog_AppCompat_Light 0x7f080088
-int style Animation_AppCompat_Dialog 0x7f080089
-int style Animation_AppCompat_DropDownUp 0x7f08008a
-int style Animation_Design_BottomSheetDialog 0x7f08008b
-int style AppTheme 0x7f08008c
-int style AppTheme_AppBarOverlay 0x7f08008d
-int style AppTheme_NoActionBar 0x7f08008e
-int style AppTheme_PopupOverlay 0x7f08008f
-int style Base_AlertDialog_AppCompat 0x7f080090
-int style Base_AlertDialog_AppCompat_Light 0x7f080091
-int style Base_Animation_AppCompat_Dialog 0x7f080092
-int style Base_Animation_AppCompat_DropDownUp 0x7f080093
-int style Base_DialogWindowTitle_AppCompat 0x7f080094
-int style Base_DialogWindowTitleBackground_AppCompat 0x7f080095
-int style Base_TextAppearance_AppCompat 0x7f080037
-int style Base_TextAppearance_AppCompat_Body1 0x7f080038
-int style Base_TextAppearance_AppCompat_Body2 0x7f080039
-int style Base_TextAppearance_AppCompat_Button 0x7f080021
-int style Base_TextAppearance_AppCompat_Caption 0x7f08003a
-int style Base_TextAppearance_AppCompat_Display1 0x7f08003b
-int style Base_TextAppearance_AppCompat_Display2 0x7f08003c
-int style Base_TextAppearance_AppCompat_Display3 0x7f08003d
-int style Base_TextAppearance_AppCompat_Display4 0x7f08003e
-int style Base_TextAppearance_AppCompat_Headline 0x7f08003f
-int style Base_TextAppearance_AppCompat_Inverse 0x7f08000c
-int style Base_TextAppearance_AppCompat_Large 0x7f080040
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f08000d
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080041
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080042
-int style Base_TextAppearance_AppCompat_Medium 0x7f080043
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f08000e
-int style Base_TextAppearance_AppCompat_Menu 0x7f080044
-int style Base_TextAppearance_AppCompat_SearchResult 0x7f080096
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080045
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080046
-int style Base_TextAppearance_AppCompat_Small 0x7f080047
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f08000f
-int style Base_TextAppearance_AppCompat_Subhead 0x7f080048
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080010
-int style Base_TextAppearance_AppCompat_Title 0x7f080049
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080011
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080080
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f08004a
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08004b
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08004c
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08004d
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08004e
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08004f
-int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080050
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080081
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080097
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080051
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080052
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080053
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080054
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080098
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080055
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080056
-int style Base_Theme_AppCompat 0x7f080057
-int style Base_Theme_AppCompat_CompactMenu 0x7f080099
-int style Base_Theme_AppCompat_Dialog 0x7f080012
-int style Base_Theme_AppCompat_Dialog_Alert 0x7f08009a
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08009b
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08009c
-int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080002
-int style Base_Theme_AppCompat_Light 0x7f080058
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08009d
-int style Base_Theme_AppCompat_Light_Dialog 0x7f080013
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08009e
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08009f
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800a0
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080003
-int style Base_ThemeOverlay_AppCompat 0x7f0800a1
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0800a2
-int style Base_ThemeOverlay_AppCompat_Dark 0x7f0800a3
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800a4
-int style Base_ThemeOverlay_AppCompat_Light 0x7f0800a5
-int style Base_V11_Theme_AppCompat_Dialog 0x7f080014
-int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f080015
-int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f08001d
-int style Base_V12_Widget_AppCompat_EditText 0x7f08001e
-int style Base_V21_Theme_AppCompat 0x7f080059
-int style Base_V21_Theme_AppCompat_Dialog 0x7f08005a
-int style Base_V21_Theme_AppCompat_Light 0x7f08005b
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08005c
-int style Base_V22_Theme_AppCompat 0x7f08007e
-int style Base_V22_Theme_AppCompat_Light 0x7f08007f
-int style Base_V23_Theme_AppCompat 0x7f080082
-int style Base_V23_Theme_AppCompat_Light 0x7f080083
-int style Base_V7_Theme_AppCompat 0x7f0800a6
-int style Base_V7_Theme_AppCompat_Dialog 0x7f0800a7
-int style Base_V7_Theme_AppCompat_Light 0x7f0800a8
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0800a9
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0800aa
-int style Base_V7_Widget_AppCompat_EditText 0x7f0800ab
-int style Base_Widget_AppCompat_ActionBar 0x7f0800ac
-int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0800ad
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0800ae
-int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08005d
-int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08005e
-int style Base_Widget_AppCompat_ActionButton 0x7f08005f
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080060
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080061
-int style Base_Widget_AppCompat_ActionMode 0x7f0800af
-int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800b0
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f08001f
-int style Base_Widget_AppCompat_Button 0x7f080062
-int style Base_Widget_AppCompat_Button_Borderless 0x7f080063
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080064
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800b1
-int style Base_Widget_AppCompat_Button_Colored 0x7f080084
-int style Base_Widget_AppCompat_Button_Small 0x7f080065
-int style Base_Widget_AppCompat_ButtonBar 0x7f080066
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800b2
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080067
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080068
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800b3
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800b4
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080069
-int style Base_Widget_AppCompat_EditText 0x7f080020
-int style Base_Widget_AppCompat_ImageButton 0x7f08006a
-int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800b5
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800b6
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800b7
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f08006b
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08006c
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08006d
-int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08006e
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08006f
-int style Base_Widget_AppCompat_ListPopupWindow 0x7f080070
-int style Base_Widget_AppCompat_ListView 0x7f080071
-int style Base_Widget_AppCompat_ListView_DropDown 0x7f080072
-int style Base_Widget_AppCompat_ListView_Menu 0x7f080073
-int style Base_Widget_AppCompat_PopupMenu 0x7f080074
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080075
-int style Base_Widget_AppCompat_PopupWindow 0x7f0800b8
-int style Base_Widget_AppCompat_ProgressBar 0x7f080016
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f080017
-int style Base_Widget_AppCompat_RatingBar 0x7f080076
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f080085
-int style Base_Widget_AppCompat_RatingBar_Small 0x7f080086
-int style Base_Widget_AppCompat_SearchView 0x7f0800b9
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800ba
-int style Base_Widget_AppCompat_SeekBar 0x7f080077
-int style Base_Widget_AppCompat_Spinner 0x7f080078
-int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080004
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080079
-int style Base_Widget_AppCompat_Toolbar 0x7f0800bb
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f08007a
-int style Base_Widget_Design_TabLayout 0x7f0800bc
-int style MyActionBar 0x7f0800bd
-int style MyOverflowMenu 0x7f0800be
-int style MyTheme 0x7f0800bf
-int style MyTitleTextStyle 0x7f0800c0
-int style Platform_AppCompat 0x7f080018
-int style Platform_AppCompat_Light 0x7f080019
-int style Platform_ThemeOverlay_AppCompat 0x7f08007b
-int style Platform_ThemeOverlay_AppCompat_Dark 0x7f08007c
-int style Platform_ThemeOverlay_AppCompat_Light 0x7f08007d
-int style Platform_V11_AppCompat 0x7f08001a
-int style Platform_V11_AppCompat_Light 0x7f08001b
-int style Platform_V14_AppCompat 0x7f080022
-int style Platform_V14_AppCompat_Light 0x7f080023
-int style Platform_Widget_AppCompat_Spinner 0x7f08001c
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080029
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f08002a
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f08002b
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08002c
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08002d
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08002e
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08002f
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080030
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080031
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080032
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080033
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080034
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f080035
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f080036
-int style TextAppearance_AppCompat 0x7f0800c1
-int style TextAppearance_AppCompat_Body1 0x7f0800c2
-int style TextAppearance_AppCompat_Body2 0x7f0800c3
-int style TextAppearance_AppCompat_Button 0x7f0800c4
-int style TextAppearance_AppCompat_Caption 0x7f0800c5
-int style TextAppearance_AppCompat_Display1 0x7f0800c6
-int style TextAppearance_AppCompat_Display2 0x7f0800c7
-int style TextAppearance_AppCompat_Display3 0x7f0800c8
-int style TextAppearance_AppCompat_Display4 0x7f0800c9
-int style TextAppearance_AppCompat_Headline 0x7f0800ca
-int style TextAppearance_AppCompat_Inverse 0x7f0800cb
-int style TextAppearance_AppCompat_Large 0x7f0800cc
-int style TextAppearance_AppCompat_Large_Inverse 0x7f0800cd
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800ce
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800cf
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800d0
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800d1
-int style TextAppearance_AppCompat_Medium 0x7f0800d2
-int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800d3
-int style TextAppearance_AppCompat_Menu 0x7f0800d4
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800d5
-int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800d6
-int style TextAppearance_AppCompat_Small 0x7f0800d7
-int style TextAppearance_AppCompat_Small_Inverse 0x7f0800d8
-int style TextAppearance_AppCompat_Subhead 0x7f0800d9
-int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800da
-int style TextAppearance_AppCompat_Title 0x7f0800db
-int style TextAppearance_AppCompat_Title_Inverse 0x7f0800dc
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800dd
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800de
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800df
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800e0
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800e1
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800e2
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800e3
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800e4
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800e5
-int style TextAppearance_AppCompat_Widget_Button 0x7f0800e6
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800e7
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800e8
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800e9
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800ea
-int style TextAppearance_AppCompat_Widget_Switch 0x7f0800eb
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800ec
-int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0800ed
-int style TextAppearance_Design_Counter 0x7f0800ee
-int style TextAppearance_Design_Counter_Overflow 0x7f0800ef
-int style TextAppearance_Design_Error 0x7f0800f0
-int style TextAppearance_Design_Hint 0x7f0800f1
-int style TextAppearance_Design_Snackbar_Message 0x7f0800f2
-int style TextAppearance_Design_Tab 0x7f0800f3
-int style TextAppearance_StatusBar_EventContent 0x7f080024
-int style TextAppearance_StatusBar_EventContent_Info 0x7f080025
-int style TextAppearance_StatusBar_EventContent_Line2 0x7f080026
-int style TextAppearance_StatusBar_EventContent_Time 0x7f080027
-int style TextAppearance_StatusBar_EventContent_Title 0x7f080028
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800f4
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800f5
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800f6
-int style Theme_AppCompat 0x7f0800f7
-int style Theme_AppCompat_CompactMenu 0x7f0800f8
-int style Theme_AppCompat_DayNight 0x7f080005
-int style Theme_AppCompat_DayNight_DarkActionBar 0x7f080006
-int style Theme_AppCompat_DayNight_Dialog 0x7f080007
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f080008
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f080009
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f08000a
-int style Theme_AppCompat_DayNight_NoActionBar 0x7f08000b
-int style Theme_AppCompat_Dialog 0x7f0800f9
-int style Theme_AppCompat_Dialog_Alert 0x7f0800fa
-int style Theme_AppCompat_Dialog_MinWidth 0x7f0800fb
-int style Theme_AppCompat_DialogWhenLarge 0x7f0800fc
-int style Theme_AppCompat_Light 0x7f0800fd
-int style Theme_AppCompat_Light_DarkActionBar 0x7f0800fe
-int style Theme_AppCompat_Light_Dialog 0x7f0800ff
-int style Theme_AppCompat_Light_Dialog_Alert 0x7f080100
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f080101
-int style Theme_AppCompat_Light_DialogWhenLarge 0x7f080102
-int style Theme_AppCompat_Light_NoActionBar 0x7f080103
-int style Theme_AppCompat_NoActionBar 0x7f080104
-int style Theme_Design 0x7f080105
-int style Theme_Design_BottomSheetDialog 0x7f080106
-int style Theme_Design_Light 0x7f080107
-int style Theme_Design_Light_BottomSheetDialog 0x7f080108
-int style Theme_Design_Light_NoActionBar 0x7f080109
-int style Theme_Design_NoActionBar 0x7f08010a
-int style ThemeOverlay_AppCompat 0x7f08010b
-int style ThemeOverlay_AppCompat_ActionBar 0x7f08010c
-int style ThemeOverlay_AppCompat_Dark 0x7f08010d
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f08010e
-int style ThemeOverlay_AppCompat_Light 0x7f08010f
-int style Widget_AppCompat_ActionBar 0x7f080110
-int style Widget_AppCompat_ActionBar_Solid 0x7f080111
-int style Widget_AppCompat_ActionBar_TabBar 0x7f080112
-int style Widget_AppCompat_ActionBar_TabText 0x7f080113
-int style Widget_AppCompat_ActionBar_TabView 0x7f080114
-int style Widget_AppCompat_ActionButton 0x7f080115
-int style Widget_AppCompat_ActionButton_CloseMode 0x7f080116
-int style Widget_AppCompat_ActionButton_Overflow 0x7f080117
-int style Widget_AppCompat_ActionMode 0x7f080118
-int style Widget_AppCompat_ActivityChooserView 0x7f080119
-int style Widget_AppCompat_AutoCompleteTextView 0x7f08011a
-int style Widget_AppCompat_Button 0x7f08011b
-int style Widget_AppCompat_Button_Borderless 0x7f08011c
-int style Widget_AppCompat_Button_Borderless_Colored 0x7f08011d
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f08011e
-int style Widget_AppCompat_Button_Colored 0x7f08011f
-int style Widget_AppCompat_Button_Small 0x7f080120
-int style Widget_AppCompat_ButtonBar 0x7f080121
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080122
-int style Widget_AppCompat_CompoundButton_CheckBox 0x7f080123
-int style Widget_AppCompat_CompoundButton_RadioButton 0x7f080124
-int style Widget_AppCompat_CompoundButton_Switch 0x7f080125
-int style Widget_AppCompat_DrawerArrowToggle 0x7f080126
-int style Widget_AppCompat_DropDownItem_Spinner 0x7f080127
-int style Widget_AppCompat_EditText 0x7f080128
-int style Widget_AppCompat_ImageButton 0x7f080129
-int style Widget_AppCompat_Light_ActionBar 0x7f08012a
-int style Widget_AppCompat_Light_ActionBar_Solid 0x7f08012b
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f08012c
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f08012d
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f08012e
-int style Widget_AppCompat_Light_ActionBar_TabText 0x7f08012f
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080130
-int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080131
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080132
-int style Widget_AppCompat_Light_ActionButton 0x7f080133
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080134
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080135
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080136
-int style Widget_AppCompat_Light_ActivityChooserView 0x7f080137
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080138
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080139
-int style Widget_AppCompat_Light_ListPopupWindow 0x7f08013a
-int style Widget_AppCompat_Light_ListView_DropDown 0x7f08013b
-int style Widget_AppCompat_Light_PopupMenu 0x7f08013c
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08013d
-int style Widget_AppCompat_Light_SearchView 0x7f08013e
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f08013f
-int style Widget_AppCompat_ListPopupWindow 0x7f080140
-int style Widget_AppCompat_ListView 0x7f080141
-int style Widget_AppCompat_ListView_DropDown 0x7f080142
-int style Widget_AppCompat_ListView_Menu 0x7f080143
-int style Widget_AppCompat_PopupMenu 0x7f080144
-int style Widget_AppCompat_PopupMenu_Overflow 0x7f080145
-int style Widget_AppCompat_PopupWindow 0x7f080146
-int style Widget_AppCompat_ProgressBar 0x7f080147
-int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080148
-int style Widget_AppCompat_RatingBar 0x7f080149
-int style Widget_AppCompat_RatingBar_Indicator 0x7f08014a
-int style Widget_AppCompat_RatingBar_Small 0x7f08014b
-int style Widget_AppCompat_SearchView 0x7f08014c
-int style Widget_AppCompat_SearchView_ActionBar 0x7f08014d
-int style Widget_AppCompat_SeekBar 0x7f08014e
-int style Widget_AppCompat_Spinner 0x7f08014f
-int style Widget_AppCompat_Spinner_DropDown 0x7f080150
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080151
-int style Widget_AppCompat_Spinner_Underlined 0x7f080152
-int style Widget_AppCompat_TextView_SpinnerItem 0x7f080153
-int style Widget_AppCompat_Toolbar 0x7f080154
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080155
-int style Widget_Design_AppBarLayout 0x7f080156
-int style Widget_Design_BottomSheet_Modal 0x7f080157
-int style Widget_Design_CollapsingToolbar 0x7f080158
-int style Widget_Design_CoordinatorLayout 0x7f080159
-int style Widget_Design_FloatingActionButton 0x7f08015a
-int style Widget_Design_NavigationView 0x7f08015b
-int style Widget_Design_ScrimInsetsFrameLayout 0x7f08015c
-int style Widget_Design_Snackbar 0x7f08015d
-int style Widget_Design_TabLayout 0x7f080001
-int style Widget_Design_TextInputLayout 0x7f08015e
-int style titleStyle 0x7f08015f
-int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 }
-int styleable ActionBar_background 10
-int styleable ActionBar_backgroundSplit 12
-int styleable ActionBar_backgroundStacked 11
-int styleable ActionBar_contentInsetEnd 21
-int styleable ActionBar_contentInsetLeft 22
-int styleable ActionBar_contentInsetRight 23
-int styleable ActionBar_contentInsetStart 20
-int styleable ActionBar_customNavigationLayout 13
-int styleable ActionBar_displayOptions 3
-int styleable ActionBar_divider 9
-int styleable ActionBar_elevation 24
-int styleable ActionBar_height 0
-int styleable ActionBar_hideOnContentScroll 19
-int styleable ActionBar_homeAsUpIndicator 26
-int styleable ActionBar_homeLayout 14
-int styleable ActionBar_icon 7
-int styleable ActionBar_indeterminateProgressStyle 16
-int styleable ActionBar_itemPadding 18
-int styleable ActionBar_logo 8
-int styleable ActionBar_navigationMode 2
-int styleable ActionBar_popupTheme 25
-int styleable ActionBar_progressBarPadding 17
-int styleable ActionBar_progressBarStyle 15
-int styleable ActionBar_subtitle 4
-int styleable ActionBar_subtitleTextStyle 6
-int styleable ActionBar_title 1
-int styleable ActionBar_titleTextStyle 5
-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 { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
-int styleable ActionMode_background 3
-int styleable ActionMode_backgroundSplit 4
-int styleable ActionMode_closeItemLayout 5
-int styleable ActionMode_height 0
-int styleable ActionMode_subtitleTextStyle 2
-int styleable ActionMode_titleTextStyle 1
-int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
-int styleable ActivityChooserView_initialActivityCount 0
-int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonPanelSideLayout 1
-int styleable AlertDialog_listItemLayout 5
-int styleable AlertDialog_listLayout 2
-int styleable AlertDialog_multiChoiceItemLayout 3
-int styleable AlertDialog_singleChoiceItemLayout 4
-int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 }
-int styleable AppBarLayout_android_background 0
-int styleable AppBarLayout_elevation 1
-int styleable AppBarLayout_expanded 2
-int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 }
-int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0
-int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1
-int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int[] styleable AppCompatTextView { 0x01010034, 0x7f010028 }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_textAllCaps 1
-int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }
-int styleable AppCompatTheme_actionBarDivider 23
-int styleable AppCompatTheme_actionBarItemBackground 24
-int styleable AppCompatTheme_actionBarPopupTheme 17
-int styleable AppCompatTheme_actionBarSize 22
-int styleable AppCompatTheme_actionBarSplitStyle 19
-int styleable AppCompatTheme_actionBarStyle 18
-int styleable AppCompatTheme_actionBarTabBarStyle 13
-int styleable AppCompatTheme_actionBarTabStyle 12
-int styleable AppCompatTheme_actionBarTabTextStyle 14
-int styleable AppCompatTheme_actionBarTheme 20
-int styleable AppCompatTheme_actionBarWidgetTheme 21
-int styleable AppCompatTheme_actionButtonStyle 49
-int styleable AppCompatTheme_actionDropDownStyle 45
-int styleable AppCompatTheme_actionMenuTextAppearance 25
-int styleable AppCompatTheme_actionMenuTextColor 26
-int styleable AppCompatTheme_actionModeBackground 29
-int styleable AppCompatTheme_actionModeCloseButtonStyle 28
-int styleable AppCompatTheme_actionModeCloseDrawable 31
-int styleable AppCompatTheme_actionModeCopyDrawable 33
-int styleable AppCompatTheme_actionModeCutDrawable 32
-int styleable AppCompatTheme_actionModeFindDrawable 37
-int styleable AppCompatTheme_actionModePasteDrawable 34
-int styleable AppCompatTheme_actionModePopupWindowStyle 39
-int styleable AppCompatTheme_actionModeSelectAllDrawable 35
-int styleable AppCompatTheme_actionModeShareDrawable 36
-int styleable AppCompatTheme_actionModeSplitBackground 30
-int styleable AppCompatTheme_actionModeStyle 27
-int styleable AppCompatTheme_actionModeWebSearchDrawable 38
-int styleable AppCompatTheme_actionOverflowButtonStyle 15
-int styleable AppCompatTheme_actionOverflowMenuStyle 16
-int styleable AppCompatTheme_activityChooserViewStyle 57
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 92
-int styleable AppCompatTheme_alertDialogCenterButtons 93
-int styleable AppCompatTheme_alertDialogStyle 91
-int styleable AppCompatTheme_alertDialogTheme 94
-int styleable AppCompatTheme_android_windowAnimationStyle 1
-int styleable AppCompatTheme_android_windowIsFloating 0
-int styleable AppCompatTheme_autoCompleteTextViewStyle 99
-int styleable AppCompatTheme_borderlessButtonStyle 54
-int styleable AppCompatTheme_buttonBarButtonStyle 51
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96
-int styleable AppCompatTheme_buttonBarStyle 50
-int styleable AppCompatTheme_buttonStyle 100
-int styleable AppCompatTheme_buttonStyleSmall 101
-int styleable AppCompatTheme_checkboxStyle 102
-int styleable AppCompatTheme_checkedTextViewStyle 103
-int styleable AppCompatTheme_colorAccent 84
-int styleable AppCompatTheme_colorButtonNormal 88
-int styleable AppCompatTheme_colorControlActivated 86
-int styleable AppCompatTheme_colorControlHighlight 87
-int styleable AppCompatTheme_colorControlNormal 85
-int styleable AppCompatTheme_colorPrimary 82
-int styleable AppCompatTheme_colorPrimaryDark 83
-int styleable AppCompatTheme_colorSwitchThumbNormal 89
-int styleable AppCompatTheme_controlBackground 90
-int styleable AppCompatTheme_dialogPreferredPadding 43
-int styleable AppCompatTheme_dialogTheme 42
-int styleable AppCompatTheme_dividerHorizontal 56
-int styleable AppCompatTheme_dividerVertical 55
-int styleable AppCompatTheme_dropDownListViewStyle 74
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 46
-int styleable AppCompatTheme_editTextBackground 63
-int styleable AppCompatTheme_editTextColor 62
-int styleable AppCompatTheme_editTextStyle 104
-int styleable AppCompatTheme_homeAsUpIndicator 48
-int styleable AppCompatTheme_imageButtonStyle 64
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 81
-int styleable AppCompatTheme_listDividerAlertDialog 44
-int styleable AppCompatTheme_listPopupWindowStyle 75
-int styleable AppCompatTheme_listPreferredItemHeight 69
-int styleable AppCompatTheme_listPreferredItemHeightLarge 71
-int styleable AppCompatTheme_listPreferredItemHeightSmall 70
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 72
-int styleable AppCompatTheme_listPreferredItemPaddingRight 73
-int styleable AppCompatTheme_panelBackground 78
-int styleable AppCompatTheme_panelMenuListTheme 80
-int styleable AppCompatTheme_panelMenuListWidth 79
-int styleable AppCompatTheme_popupMenuStyle 60
-int styleable AppCompatTheme_popupWindowStyle 61
-int styleable AppCompatTheme_radioButtonStyle 105
-int styleable AppCompatTheme_ratingBarStyle 106
-int styleable AppCompatTheme_ratingBarStyleIndicator 107
-int styleable AppCompatTheme_ratingBarStyleSmall 108
-int styleable AppCompatTheme_searchViewStyle 68
-int styleable AppCompatTheme_seekBarStyle 109
-int styleable AppCompatTheme_selectableItemBackground 52
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 53
-int styleable AppCompatTheme_spinnerDropDownItemStyle 47
-int styleable AppCompatTheme_spinnerStyle 110
-int styleable AppCompatTheme_switchStyle 111
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
-int styleable AppCompatTheme_textAppearanceListItem 76
-int styleable AppCompatTheme_textAppearanceListItemSmall 77
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 65
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
-int styleable AppCompatTheme_textColorAlertDialogListItem 95
-int styleable AppCompatTheme_textColorSearchUrl 67
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 59
-int styleable AppCompatTheme_toolbarStyle 58
-int styleable AppCompatTheme_windowActionBar 2
-int styleable AppCompatTheme_windowActionBarOverlay 4
-int styleable AppCompatTheme_windowActionModeOverlay 5
-int styleable AppCompatTheme_windowFixedHeightMajor 9
-int styleable AppCompatTheme_windowFixedHeightMinor 7
-int styleable AppCompatTheme_windowFixedWidthMajor 6
-int styleable AppCompatTheme_windowFixedWidthMinor 8
-int styleable AppCompatTheme_windowMinWidthMajor 10
-int styleable AppCompatTheme_windowMinWidthMinor 11
-int styleable AppCompatTheme_windowNoTitle 3
-int[] styleable BottomSheetBehavior_Params { 0x7f010097, 0x7f010098 }
-int styleable BottomSheetBehavior_Params_behavior_hideable 1
-int styleable BottomSheetBehavior_Params_behavior_peekHeight 0
-int[] styleable ButtonBarLayout { 0x7f010099 }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f01009a, 0x7f01009b }
-int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0
-int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1
-int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }
-int styleable CollapsingToolbarLayout_collapsedTitleGravity 11
-int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7
-int styleable CollapsingToolbarLayout_contentScrim 8
-int styleable CollapsingToolbarLayout_expandedTitleGravity 12
-int styleable CollapsingToolbarLayout_expandedTitleMargin 1
-int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
-int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4
-int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2
-int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3
-int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6
-int styleable CollapsingToolbarLayout_statusBarScrim 9
-int styleable CollapsingToolbarLayout_title 0
-int styleable CollapsingToolbarLayout_titleEnabled 13
-int styleable CollapsingToolbarLayout_toolbarId 10
-int[] styleable CompoundButton { 0x01010107, 0x7f0100a9, 0x7f0100aa }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonTint 1
-int styleable CompoundButton_buttonTintMode 2
-int[] styleable CoordinatorLayout { 0x7f0100ab, 0x7f0100ac }
-int styleable CoordinatorLayout_keylines 0
-int styleable CoordinatorLayout_statusBarBackground 1
-int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0 }
-int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0
-int styleable CoordinatorLayout_LayoutParams_layout_anchor 2
-int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4
-int styleable CoordinatorLayout_LayoutParams_layout_behavior 1
-int styleable CoordinatorLayout_LayoutParams_layout_keyline 3
-int[] styleable DesignTheme { 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 }
-int styleable DesignTheme_bottomSheetDialogTheme 0
-int styleable DesignTheme_bottomSheetStyle 1
-int styleable DesignTheme_textColorError 2
-int[] styleable DrawerArrowToggle { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb }
-int styleable DrawerArrowToggle_arrowHeadLength 4
-int styleable DrawerArrowToggle_arrowShaftLength 5
-int styleable DrawerArrowToggle_barLength 6
-int styleable DrawerArrowToggle_color 0
-int styleable DrawerArrowToggle_drawableSize 2
-int styleable DrawerArrowToggle_gapBetweenBars 3
-int styleable DrawerArrowToggle_spinBars 1
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable FloatingActionButton { 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119 }
-int styleable FloatingActionButton_backgroundTint 6
-int styleable FloatingActionButton_backgroundTintMode 7
-int styleable FloatingActionButton_borderWidth 4
-int styleable FloatingActionButton_elevation 0
-int styleable FloatingActionButton_fabSize 2
-int styleable FloatingActionButton_pressedTranslationZ 3
-int styleable FloatingActionButton_rippleColor 1
-int styleable FloatingActionButton_useCompatPadding 5
-int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0100c1 }
-int styleable ForegroundLinearLayout_android_foreground 0
-int styleable ForegroundLinearLayout_android_foregroundGravity 1
-int styleable ForegroundLinearLayout_foregroundInsidePadding 2
-int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }
-int styleable LinearLayoutCompat_android_baselineAligned 2
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
-int styleable LinearLayoutCompat_android_gravity 0
-int styleable LinearLayoutCompat_android_orientation 1
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 8
-int styleable LinearLayoutCompat_measureWithLargestChild 6
-int styleable LinearLayoutCompat_showDividers 7
-int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_height 2
-int styleable LinearLayoutCompat_Layout_android_layout_weight 3
-int styleable LinearLayoutCompat_Layout_android_layout_width 1
-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_checkableBehavior 5
-int styleable MenuGroup_android_enabled 0
-int styleable MenuGroup_android_id 1
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_visible 2
-int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
-int styleable MenuItem_actionLayout 14
-int styleable MenuItem_actionProviderClass 16
-int styleable MenuItem_actionViewClass 15
-int styleable MenuItem_android_alphabeticShortcut 9
-int styleable MenuItem_android_checkable 11
-int styleable MenuItem_android_checked 3
-int styleable MenuItem_android_enabled 1
-int styleable MenuItem_android_icon 0
-int styleable MenuItem_android_id 2
-int styleable MenuItem_android_menuCategory 5
-int styleable MenuItem_android_numericShortcut 10
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_android_orderInCategory 6
-int styleable MenuItem_android_title 7
-int styleable MenuItem_android_titleCondensed 8
-int styleable MenuItem_android_visible 4
-int styleable MenuItem_showAsAction 13
-int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9 }
-int styleable MenuView_android_headerBackground 4
-int styleable MenuView_android_horizontalDivider 2
-int styleable MenuView_android_itemBackground 5
-int styleable MenuView_android_itemIconDisabledAlpha 6
-int styleable MenuView_android_itemTextAppearance 1
-int styleable MenuView_android_verticalDivider 3
-int styleable MenuView_android_windowAnimationStyle 0
-int styleable MenuView_preserveIconSpacing 7
-int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf }
-int styleable NavigationView_android_background 0
-int styleable NavigationView_android_fitsSystemWindows 1
-int styleable NavigationView_android_maxWidth 2
-int styleable NavigationView_elevation 3
-int styleable NavigationView_headerLayout 9
-int styleable NavigationView_itemBackground 7
-int styleable NavigationView_itemIconTint 5
-int styleable NavigationView_itemTextAppearance 8
-int styleable NavigationView_itemTextColor 6
-int styleable NavigationView_menu 4
-int[] styleable PopupWindow { 0x01010176, 0x7f0100d0 }
-int styleable PopupWindow_android_popupBackground 0
-int styleable PopupWindow_overlapAnchor 1
-int[] styleable PopupWindowBackgroundState { 0x7f0100d1 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable RecyclerView { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 }
-int styleable RecyclerView_android_orientation 0
-int styleable RecyclerView_layoutManager 1
-int styleable RecyclerView_reverseLayout 3
-int styleable RecyclerView_spanCount 2
-int styleable RecyclerView_stackFromEnd 4
-int[] styleable ScrimInsetsFrameLayout { 0x7f0100d6 }
-int styleable ScrimInsetsFrameLayout_insetForeground 0
-int[] styleable ScrollingViewBehavior_Params { 0x7f0100d7 }
-int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0
-int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_imeOptions 3
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_maxWidth 1
-int styleable SearchView_closeIcon 8
-int styleable SearchView_commitIcon 13
-int styleable SearchView_defaultQueryHint 7
-int styleable SearchView_goIcon 9
-int styleable SearchView_iconifiedByDefault 5
-int styleable SearchView_layout 4
-int styleable SearchView_queryBackground 15
-int styleable SearchView_queryHint 6
-int styleable SearchView_searchHintIcon 11
-int styleable SearchView_searchIcon 10
-int styleable SearchView_submitBackground 16
-int styleable SearchView_suggestionRowLayout 14
-int styleable SearchView_voiceIcon 12
-int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f0100e5 }
-int styleable SnackbarLayout_android_maxWidth 0
-int styleable SnackbarLayout_elevation 1
-int styleable SnackbarLayout_maxActionInlineWidth 2
-int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
-int styleable Spinner_android_dropDownWidth 3
-int styleable Spinner_android_entries 0
-int styleable Spinner_android_popupBackground 1
-int styleable Spinner_android_prompt 2
-int styleable Spinner_popupTheme 4
-int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec }
-int styleable SwitchCompat_android_textOff 1
-int styleable SwitchCompat_android_textOn 0
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 9
-int styleable SwitchCompat_splitTrack 8
-int styleable SwitchCompat_switchMinWidth 6
-int styleable SwitchCompat_switchPadding 7
-int styleable SwitchCompat_switchTextAppearance 5
-int styleable SwitchCompat_thumbTextPadding 4
-int styleable SwitchCompat_track 3
-int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f }
-int styleable TabItem_android_icon 0
-int styleable TabItem_android_layout 1
-int styleable TabItem_android_text 2
-int[] styleable TabLayout { 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }
-int styleable TabLayout_tabBackground 3
-int styleable TabLayout_tabContentStart 2
-int styleable TabLayout_tabGravity 5
-int styleable TabLayout_tabIndicatorColor 0
-int styleable TabLayout_tabIndicatorHeight 1
-int styleable TabLayout_tabMaxWidth 7
-int styleable TabLayout_tabMinWidth 6
-int styleable TabLayout_tabMode 4
-int styleable TabLayout_tabPadding 15
-int styleable TabLayout_tabPaddingBottom 14
-int styleable TabLayout_tabPaddingEnd 13
-int styleable TabLayout_tabPaddingStart 11
-int styleable TabLayout_tabPaddingTop 12
-int styleable TabLayout_tabSelectedTextColor 10
-int styleable TabLayout_tabTextAppearance 8
-int styleable TabLayout_tabTextColor 9
-int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 }
-int styleable TextAppearance_android_shadowColor 4
-int styleable TextAppearance_android_shadowDx 5
-int styleable TextAppearance_android_shadowDy 6
-int styleable TextAppearance_android_shadowRadius 7
-int styleable TextAppearance_android_textColor 3
-int styleable TextAppearance_android_textSize 0
-int styleable TextAppearance_android_textStyle 2
-int styleable TextAppearance_android_typeface 1
-int styleable TextAppearance_textAllCaps 8
-int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105 }
-int styleable TextInputLayout_android_hint 1
-int styleable TextInputLayout_android_textColorHint 0
-int styleable TextInputLayout_counterEnabled 6
-int styleable TextInputLayout_counterMaxLength 7
-int styleable TextInputLayout_counterOverflowTextAppearance 9
-int styleable TextInputLayout_counterTextAppearance 8
-int styleable TextInputLayout_errorEnabled 4
-int styleable TextInputLayout_errorTextAppearance 5
-int styleable TextInputLayout_hintAnimationEnabled 10
-int styleable TextInputLayout_hintEnabled 3
-int styleable TextInputLayout_hintTextAppearance 2
-int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_collapseContentDescription 19
-int styleable Toolbar_collapseIcon 18
-int styleable Toolbar_contentInsetEnd 6
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 5
-int styleable Toolbar_logo 4
-int styleable Toolbar_logoDescription 22
-int styleable Toolbar_maxButtonHeight 17
-int styleable Toolbar_navigationContentDescription 21
-int styleable Toolbar_navigationIcon 20
-int styleable Toolbar_popupTheme 9
-int styleable Toolbar_subtitle 3
-int styleable Toolbar_subtitleTextAppearance 11
-int styleable Toolbar_subtitleTextColor 24
-int styleable Toolbar_title 2
-int styleable Toolbar_titleMarginBottom 16
-int styleable Toolbar_titleMarginEnd 14
-int styleable Toolbar_titleMarginStart 13
-int styleable Toolbar_titleMarginTop 15
-int styleable Toolbar_titleMargins 12
-int styleable Toolbar_titleTextAppearance 10
-int styleable Toolbar_titleTextColor 23
-int[] styleable View { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 }
-int styleable View_android_focusable 1
-int styleable View_android_theme 0
-int styleable View_paddingEnd 3
-int styleable View_paddingStart 2
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010118, 0x7f010119 }
-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_inflatedId 2
-int styleable ViewStubCompat_android_layout 1
diff --git a/2p-android/trunk/build/outputs/apk/app-debug-unaligned.apk b/2p-android/trunk/build/outputs/apk/app-debug-unaligned.apk
deleted file mode 100644
index 78fe069..0000000
Binary files a/2p-android/trunk/build/outputs/apk/app-debug-unaligned.apk and /dev/null differ
diff --git a/2p-android/trunk/build/outputs/apk/app-debug.apk b/2p-android/trunk/build/outputs/apk/app-debug.apk
deleted file mode 100644
index c5c03cf..0000000
Binary files a/2p-android/trunk/build/outputs/apk/app-debug.apk and /dev/null differ
diff --git a/2p-android/trunk/build/outputs/logs/manifest-merger-debug-report.txt b/2p-android/trunk/build/outputs/logs/manifest-merger-debug-report.txt
deleted file mode 100644
index 5f9f97b..0000000
--- a/2p-android/trunk/build/outputs/logs/manifest-merger-debug-report.txt
+++ /dev/null
@@ -1,190 +0,0 @@
--- Merging decision tree log ---
-manifest
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:2:1-90:12
- package
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:3:5-53
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- android:versionName
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:5:5-32
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- android:versionCode
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:4:5-30
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- xmlns:android
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:2:11-69
-uses-sdk
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:7:5-9:41
-MERGED from [com.android.support:appcompat-v7:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.4.0\AndroidManifest.xml:21:5-23:78
-MERGED from [com.android.support:animated-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\animated-vector-drawable\23.4.0\AndroidManifest.xml:5:5-44
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:5:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:5:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:design:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\design\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:recyclerview-v7:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\recyclerview-v7\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:appcompat-v7:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.4.0\AndroidManifest.xml:21:5-23:78
-MERGED from [com.android.support:animated-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\animated-vector-drawable\23.4.0\AndroidManifest.xml:5:5-44
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:5:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:5:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:20:5-43
- tools:overrideLibrary
- ADDED from [com.android.support:appcompat-v7:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.4.0\AndroidManifest.xml:23:9-75
- android:targetSdkVersion
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:9:9-38
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- android:minSdkVersion
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:8:9-35
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml
-uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:11:5-81
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:11:22-78
-uses-permission#android.permission.READ_EXTERNAL_STORAGE
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:12:5-80
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:12:22-77
-uses-permission#android.permission.READ_PHONE_STATE
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:13:5-75
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:13:22-72
-application
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:15:5-88:19
-MERGED from [com.android.support:appcompat-v7:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.4.0\AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:animated-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\animated-vector-drawable\23.4.0\AndroidManifest.xml:7:5-20
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:7:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:7:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:design:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\design\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:appcompat-v7:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.4.0\AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:animated-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\animated-vector-drawable\23.4.0\AndroidManifest.xml:7:5-20
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:7:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-vector-drawable:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-vector-drawable\23.4.0\AndroidManifest.xml:7:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-v4:23.4.0] C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\build\intermediates\exploded-aar\com.android.support\support-v4\23.4.0\AndroidManifest.xml:22:5-20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:17:9-41
- android:icon
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:16:9-38
- android:theme
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:18:9-39
-activity#alice.tuprologx.android.tuprologmobile.SplashScreenActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:19:9-28:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:21:13-45
- android:theme
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:22:13-77
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:20:13-49
-intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:23:13-27:29
-action#android.intent.action.MAIN
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:24:17-69
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:24:25-66
-category#android.intent.category.LAUNCHER
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:26:17-77
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:26:27-74
-activity#alice.tuprologx.android.tuprologmobile.HomeActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:29:9-37:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:31:13-45
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:30:13-41
-intent-filter#android.intent.action.DEFAULT+android.intent.category.VIEW
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:32:13-36:29
-action#android.intent.action.DEFAULT
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:33:17-72
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:33:25-69
-category#android.intent.category.VIEW
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:35:17-73
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:35:27-70
-activity#alice.tuprologx.android.tuprologmobile.tuPrologActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:38:9-42:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:40:13-42
- android:windowSoftInputMode
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:41:13-54
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:39:13-45
-activity#alice.tuprologx.android.tuprologmobile.TheoriesDatabaseActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:43:9-46:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:45:13-44
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:44:13-53
-activity#alice.tuprologx.android.tuprologmobile.TheoryEditActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:47:9-51:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:49:13-60
- android:windowSoftInputMode
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:50:13-52
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:48:13-47
-activity#alice.tuprologx.android.tuprologmobile.TheoryImportActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:56:9-59:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:58:13-56
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:57:13-49
-activity#alice.tuprologx.android.tuprologmobile.LibraryImportActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:60:9-63:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:62:13-57
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:61:13-50
-activity#alice.tuprologx.android.tuprologmobile.LibraryManagerActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:64:9-68:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:66:13-52
- android:windowSoftInputMode
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:67:13-54
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:65:13-51
-activity#alice.tuprologx.android.tuprologmobile.SettingsActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:69:9-72:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:71:13-60
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:70:13-45
-activity#alice.tuprologx.android.tuprologmobile.TheoryDescriptionActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:73:9-76:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:75:13-70
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:74:13-54
-activity#alice.tuprologx.android.tuprologmobile.DescriptionActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:77:9-80:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:79:13-63
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:78:13-48
-activity#alice.tuprologx.android.tuprologmobile.BaseActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:81:9-84:20
- android:label
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:83:13-56
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:82:13-41
-activity#alice.tuprologx.android.tuprologmobile.HistoryActivity
-ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:85:9-87:20
- android:theme
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:86:13-44
- android:name
- ADDED from C:\Users\Lucrezia\Desktop\ProgettoTesi\tuPrologMobile2\app\src\main\AndroidManifest.xml:85:19-50
diff --git a/2p-android/trunk/src/main/assets/calibri.ttf b/2p-android/trunk/src/main/assets/calibri.ttf
deleted file mode 100644
index 2940553..0000000
Binary files a/2p-android/trunk/src/main/assets/calibri.ttf and /dev/null differ
diff --git a/2p-android/trunk/src/main/assets/calibrib.ttf b/2p-android/trunk/src/main/assets/calibrib.ttf
deleted file mode 100644
index a74ce3b..0000000
Binary files a/2p-android/trunk/src/main/assets/calibrib.ttf and /dev/null differ
diff --git a/2p-android/trunk/src/main/assets/calibrii.ttf b/2p-android/trunk/src/main/assets/calibrii.ttf
deleted file mode 100644
index 7f33586..0000000
Binary files a/2p-android/trunk/src/main/assets/calibrii.ttf and /dev/null differ
diff --git a/2p-android/trunk/src/main/assets/calibril.ttf b/2p-android/trunk/src/main/assets/calibril.ttf
deleted file mode 100644
index c8898ab..0000000
Binary files a/2p-android/trunk/src/main/assets/calibril.ttf and /dev/null differ
diff --git a/2p-android/trunk/src/main/assets/calibrili.ttf b/2p-android/trunk/src/main/assets/calibrili.ttf
deleted file mode 100644
index 25f4c51..0000000
Binary files a/2p-android/trunk/src/main/assets/calibrili.ttf and /dev/null differ
diff --git a/2p-android/trunk/src/main/assets/calibriz.ttf b/2p-android/trunk/src/main/assets/calibriz.ttf
deleted file mode 100644
index ac3ae85..0000000
Binary files a/2p-android/trunk/src/main/assets/calibriz.ttf and /dev/null differ
diff --git a/2p-android/trunk/src/main/res/layout/activity_home.xml b/2p-android/trunk/src/main/res/layout/activity_home.xml
deleted file mode 100644
index 00461a1..0000000
--- a/2p-android/trunk/src/main/res/layout/activity_home.xml
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/2p-plugin/trunk/tuPrologFeature/feature.xml b/2p-plugin/trunk/tuPrologFeature/feature.xml
index 988fa79..91a17f9 100644
--- a/2p-plugin/trunk/tuPrologFeature/feature.xml
+++ b/2p-plugin/trunk/tuPrologFeature/feature.xml
@@ -2,7 +2,7 @@
@@ -185,14 +185,14 @@ Library.
-
-
+
+
+ version="0.0.0"/>
diff --git a/2p-plugin/trunk/tuPrologPlugin/META-INF/MANIFEST.MF b/2p-plugin/trunk/tuPrologPlugin/META-INF/MANIFEST.MF
index 08c7b1c..32ea067 100644
--- a/2p-plugin/trunk/tuPrologPlugin/META-INF/MANIFEST.MF
+++ b/2p-plugin/trunk/tuPrologPlugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: tuProlog Development Tools
Bundle-SymbolicName: tuPrologPlugin;singleton:=true
-Bundle-Version: 2.9.0
+Bundle-Version: 3.2.1
Bundle-Activator: alice.tuprologx.eclipse.TuProlog
Bundle-Vendor: tuprolog team @ Alma mater Studiorum - Università di Bologna
Export-Package: alice.tuprolog,
@@ -56,7 +56,6 @@ Export-Package: alice.tuprolog,
prefuse.visual.sort,
prefuse.visual.tuple
Require-Bundle: javax.xml,
- org.apache.lucene,
org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.ui,
@@ -65,7 +64,7 @@ Require-Bundle: javax.xml,
org.eclipse.ui.navigator.resources,
org.eclipse.jface.text,
org.eclipse.ui.editors
-Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ClassPath: .,
lib/prefuse.jar,
lib/tuprolog.jar
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/TuProlog.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/TuProlog.class
new file mode 100644
index 0000000..8b7afe0
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/TuProlog.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/DeltaPrinter.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/DeltaPrinter.class
new file mode 100644
index 0000000..daa2e2a
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/DeltaPrinter.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/MyRenameProjectChangeReporter.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/MyRenameProjectChangeReporter.class
new file mode 100644
index 0000000..3de81fd
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/MyRenameProjectChangeReporter.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/OpenProjectListener.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/OpenProjectListener.class
new file mode 100644
index 0000000..a8a5cc0
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/OpenProjectListener.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologBuilder$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologBuilder$1.class
new file mode 100644
index 0000000..04277ea
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologBuilder$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologBuilder.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologBuilder.class
new file mode 100644
index 0000000..6a41fed
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologBuilder.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologEngine.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologEngine.class
new file mode 100644
index 0000000..7823afc
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologEngine.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologEngineFactory.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologEngineFactory.class
new file mode 100644
index 0000000..ba0e90b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologEngineFactory.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologNature.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologNature.class
new file mode 100644
index 0000000..1d698b7
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologNature.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser$TheoryChecker.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser$TheoryChecker.class
new file mode 100644
index 0000000..d6c2b1b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser$TheoryChecker.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser$TheoryParser.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser$TheoryParser.class
new file mode 100644
index 0000000..ab7d8e5
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser$TheoryParser.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser.class
new file mode 100644
index 0000000..29574cf
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologParser.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQuery.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQuery.class
new file mode 100644
index 0000000..1015c0d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQuery.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryFactory.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryFactory.class
new file mode 100644
index 0000000..7663c0c
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryFactory.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryResult.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryResult.class
new file mode 100644
index 0000000..17f306c
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryResult.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryScope.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryScope.class
new file mode 100644
index 0000000..834aca2
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/core/PrologQueryScope.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologDocumentProvider.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologDocumentProvider.class
new file mode 100644
index 0000000..6e1e222
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologDocumentProvider.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologEditor.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologEditor.class
new file mode 100644
index 0000000..45bfc5e
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologEditor.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologPartitionScanner.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologPartitionScanner.class
new file mode 100644
index 0000000..189d212
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologPartitionScanner.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologSourceViewerConfiguration.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologSourceViewerConfiguration.class
new file mode 100644
index 0000000..4194290
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/editors/PrologSourceViewerConfiguration.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizard.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizard.class
new file mode 100644
index 0000000..6cc1d03
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizard.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizardPage$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizardPage$1.class
new file mode 100644
index 0000000..0dfa355
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizardPage$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizardPage.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizardPage.class
new file mode 100644
index 0000000..72fe260
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/importWizards/ImportWizardPage.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/perspective/PrologPerspective.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/perspective/PrologPerspective.class
new file mode 100644
index 0000000..c645b41
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/perspective/PrologPerspective.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/ColorStyleFieldEditor$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/ColorStyleFieldEditor$1.class
new file mode 100644
index 0000000..42b0fe0
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/ColorStyleFieldEditor$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/ColorStyleFieldEditor.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/ColorStyleFieldEditor.class
new file mode 100644
index 0000000..32c30fb
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/ColorStyleFieldEditor.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferenceConstants.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferenceConstants.class
new file mode 100644
index 0000000..de81fb7
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferenceConstants.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferenceInitializer.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferenceInitializer.class
new file mode 100644
index 0000000..1c3dd38
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferenceInitializer.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferencePageRoot.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferencePageRoot.class
new file mode 100644
index 0000000..491c1f7
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferencePageRoot.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferencePageSyntaxColoring.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferencePageSyntaxColoring.class
new file mode 100644
index 0000000..5f3b641
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/PreferencePageSyntaxColoring.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/StyleSelector.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/StyleSelector.class
new file mode 100644
index 0000000..d37ab4d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/preferences/StyleSelector.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EngineValidator.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EngineValidator.class
new file mode 100644
index 0000000..0da6a5b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EngineValidator.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$1.class
new file mode 100644
index 0000000..bf47e76
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$2.class
new file mode 100644
index 0000000..c6a0d00
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$3.class
new file mode 100644
index 0000000..b1ceedc
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$4.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$4.class
new file mode 100644
index 0000000..9971586
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$4.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$5.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$5.class
new file mode 100644
index 0000000..d90a43f
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$5.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$6.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$6.class
new file mode 100644
index 0000000..901d4d5
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$6.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$7.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$7.class
new file mode 100644
index 0000000..615667a
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$7.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$8.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$8.class
new file mode 100644
index 0000000..893175b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement$8.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement.class
new file mode 100644
index 0000000..6459e3c
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/EnginesManagement.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LibraryValidator.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LibraryValidator.class
new file mode 100644
index 0000000..e662c75
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LibraryValidator.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine$1.class
new file mode 100644
index 0000000..eceb047
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine$2.class
new file mode 100644
index 0000000..ce29782
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine.class
new file mode 100644
index 0000000..49e8ca7
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/LoadEngine.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/PropertyManager.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/PropertyManager.class
new file mode 100644
index 0000000..392d166
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/properties/PropertyManager.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/CommentScanner.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/CommentScanner.class
new file mode 100644
index 0000000..cb0c761
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/CommentScanner.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/DefaultScanner.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/DefaultScanner.class
new file mode 100644
index 0000000..813f246
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/DefaultScanner.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/DynOpScanner.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/DynOpScanner.class
new file mode 100644
index 0000000..490f04d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/DynOpScanner.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/JavaWhitespaceDetector.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/JavaWhitespaceDetector.class
new file mode 100644
index 0000000..d440f0d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/JavaWhitespaceDetector.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/ListDamagerRepairer.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/ListDamagerRepairer.class
new file mode 100644
index 0000000..2bcd1da
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/ListDamagerRepairer.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/ListScanner.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/ListScanner.class
new file mode 100644
index 0000000..ae033a2
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/ListScanner.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/PrologListRule.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/PrologListRule.class
new file mode 100644
index 0000000..6d26941
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/PrologListRule.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/PrologWordDetector.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/PrologWordDetector.class
new file mode 100644
index 0000000..6345fd7
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/scanners/PrologWordDetector.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologGetTheory.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologGetTheory.class
new file mode 100644
index 0000000..e9fa596
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologGetTheory.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologProject.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologProject.class
new file mode 100644
index 0000000..5d4004d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologProject.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologSetTheory.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologSetTheory.class
new file mode 100644
index 0000000..52efb89
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologSetTheory.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologTheory.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologTheory.class
new file mode 100644
index 0000000..b42ba06
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/toolbar/PrologTheory.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/BracketMatcher.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/BracketMatcher.class
new file mode 100644
index 0000000..b0a0a57
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/BracketMatcher.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/EventListener.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/EventListener.class
new file mode 100644
index 0000000..563cc8f
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/EventListener.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/MyParser.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/MyParser.class
new file mode 100644
index 0000000..cf0e078
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/MyParser.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/OperatorEvent.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/OperatorEvent.class
new file mode 100644
index 0000000..30fe8a5
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/OperatorEvent.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/OperatorListener.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/OperatorListener.class
new file mode 100644
index 0000000..41999f3
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/OperatorListener.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$1.class
new file mode 100644
index 0000000..50fac56
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$2.class
new file mode 100644
index 0000000..776b203
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$3.class
new file mode 100644
index 0000000..7ffbf22
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$ProjectChooser.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$ProjectChooser.class
new file mode 100644
index 0000000..b3c7ffc
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog$ProjectChooser.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog.class
new file mode 100644
index 0000000..86f73d1
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/QueryDialog.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TokenManager.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TokenManager.class
new file mode 100644
index 0000000..9b8f8e8
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TokenManager.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$1.class
new file mode 100644
index 0000000..3695fb3
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$2.class
new file mode 100644
index 0000000..a3c3724
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$AutoPanAction.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$AutoPanAction.class
new file mode 100644
index 0000000..848130b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$AutoPanAction.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$NodeColorAction.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$NodeColorAction.class
new file mode 100644
index 0000000..e33fd23
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$NodeColorAction.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$OrientAction.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$OrientAction.class
new file mode 100644
index 0000000..43f051c
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView$OrientAction.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView.class
new file mode 100644
index 0000000..f66769d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/util/TreeView.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$1.class
new file mode 100644
index 0000000..d38a11b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$2.class
new file mode 100644
index 0000000..068f192
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$3.class
new file mode 100644
index 0000000..3322efc
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$TermContentProvider.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$TermContentProvider.class
new file mode 100644
index 0000000..2089ef5
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView$TermContentProvider.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView.class
new file mode 100644
index 0000000..53a3fc6
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ASTView.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$1.class
new file mode 100644
index 0000000..20e2bb2
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$2.class
new file mode 100644
index 0000000..edc4484
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$3.class
new file mode 100644
index 0000000..ca1879f
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$4.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$4.class
new file mode 100644
index 0000000..732f64b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$4.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$5.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$5.class
new file mode 100644
index 0000000..f618cb4
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$5.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$6.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$6.class
new file mode 100644
index 0000000..65d7a5f
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$6.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$7.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$7.class
new file mode 100644
index 0000000..b0def2a
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView$7.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView.class
new file mode 100644
index 0000000..2a69f23
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ConsoleView.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/InputViewer$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/InputViewer$1.class
new file mode 100644
index 0000000..cf57387
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/InputViewer$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/InputViewer.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/InputViewer.class
new file mode 100644
index 0000000..8b4307d
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/InputViewer.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$1.class
new file mode 100644
index 0000000..4c1ed69
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$2.class
new file mode 100644
index 0000000..e5ec0e2
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$3.class
new file mode 100644
index 0000000..635fca1
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$Element.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$Element.class
new file mode 100644
index 0000000..6879513
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$Element.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$NameSorter.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$NameSorter.class
new file mode 100644
index 0000000..52611fa
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$NameSorter.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$TableObject.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$TableObject.class
new file mode 100644
index 0000000..e4c159c
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$TableObject.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$ViewContentProvider.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$ViewContentProvider.class
new file mode 100644
index 0000000..d283602
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$ViewContentProvider.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$ViewLabelProvider.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$ViewLabelProvider.class
new file mode 100644
index 0000000..72c6a3a
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2$ViewLabelProvider.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2.class
new file mode 100644
index 0000000..4d59656
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/Method2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList$1.class
new file mode 100644
index 0000000..de3c14b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList$2.class
new file mode 100644
index 0000000..48e6522
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList.class
new file mode 100644
index 0000000..9cb4919
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/QueryList.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$NameSorter.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$NameSorter.class
new file mode 100644
index 0000000..f78452b
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$NameSorter.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$TreeObject.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$TreeObject.class
new file mode 100644
index 0000000..d3192fb
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$TreeObject.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$TreeParent.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$TreeParent.class
new file mode 100644
index 0000000..59e7880
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$TreeParent.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$ViewContentProvider.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$ViewContentProvider.class
new file mode 100644
index 0000000..469bc1c
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$ViewContentProvider.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$ViewLabelProvider.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$ViewLabelProvider.class
new file mode 100644
index 0000000..244475f
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView$ViewLabelProvider.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView.class
new file mode 100644
index 0000000..3151f10
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/TheoryView.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet$1$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet$1$1.class
new file mode 100644
index 0000000..ff90263
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet$1$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet$1.class
new file mode 100644
index 0000000..a4e09b9
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet.class
new file mode 100644
index 0000000..32c64e9
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/views/ViewSet.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard$1.class
new file mode 100644
index 0000000..691ed83
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard$2.class
new file mode 100644
index 0000000..36648a3
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard.class
new file mode 100644
index 0000000..74c8a10
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizard.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$1.class
new file mode 100644
index 0000000..9a3de57
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$2.class
new file mode 100644
index 0000000..74e76b8
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$3.class
new file mode 100644
index 0000000..3b9fd05
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.class
new file mode 100644
index 0000000..a22b652
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard$1.class
new file mode 100644
index 0000000..11fe8da
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard$2.class
new file mode 100644
index 0000000..d2458a1
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard.class
new file mode 100644
index 0000000..7d501ec
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizard.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$1.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$1.class
new file mode 100644
index 0000000..80c4776
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$1.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$2.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$2.class
new file mode 100644
index 0000000..38d6d85
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$2.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$3.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$3.class
new file mode 100644
index 0000000..93cd6f4
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage$3.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage.class b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage.class
new file mode 100644
index 0000000..c5ba1d4
Binary files /dev/null and b/2p-plugin/trunk/tuPrologPlugin/bin/alice/tuprologx/eclipse/wizards/PrologWizardPage.class differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/lib/tuprolog.jar b/2p-plugin/trunk/tuPrologPlugin/lib/tuprolog.jar
index 906a208..0ad233c 100644
Binary files a/2p-plugin/trunk/tuPrologPlugin/lib/tuprolog.jar and b/2p-plugin/trunk/tuPrologPlugin/lib/tuprolog.jar differ
diff --git a/2p-plugin/trunk/tuPrologPlugin/plugin.xml b/2p-plugin/trunk/tuPrologPlugin/plugin.xml
index 27eeec7..6dcf5ea 100644
--- a/2p-plugin/trunk/tuPrologPlugin/plugin.xml
+++ b/2p-plugin/trunk/tuPrologPlugin/plugin.xml
@@ -169,7 +169,7 @@
-
+
-
@@ -234,6 +234,96 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/TuProlog.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/TuProlog.java
index 649a823..2301b2b 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/TuProlog.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/TuProlog.java
@@ -4,6 +4,8 @@
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.IResourceChangeEvent;
+import org.eclipse.core.resources.IResourceChangeListener;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IAdaptable;
@@ -21,6 +23,7 @@
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
+import alice.tuprologx.eclipse.core.MyRenameProjectChangeReporter;
import alice.tuprologx.eclipse.core.OpenProjectListener;
import alice.tuprologx.eclipse.perspective.PrologPerspective;
import alice.tuprologx.eclipse.util.TokenManager;
@@ -56,7 +59,15 @@ public void start(BundleContext context) throws Exception {
alice.tuprologx.eclipse.properties.PropertyManager.initializeWorkspace();
ResourcesPlugin.getWorkspace().addResourceChangeListener(
new OpenProjectListener());
-
+
+ /*
+ * listener necessario ad aggiornare PrologEngineFactory
+ * quando si rinomina un progetto
+ */
+ IResourceChangeListener listener = new MyRenameProjectChangeReporter();
+ ResourcesPlugin.getWorkspace().addResourceChangeListener(listener,
+ IResourceChangeEvent.PRE_DELETE
+ | IResourceChangeEvent.POST_CHANGE);
}
/**
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/DeltaPrinter.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/DeltaPrinter.java
new file mode 100644
index 0000000..78dfd06
--- /dev/null
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/DeltaPrinter.java
@@ -0,0 +1,116 @@
+package alice.tuprologx.eclipse.core;
+
+import java.util.Stack;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.IResourceDelta;
+import org.eclipse.core.resources.IResourceDeltaVisitor;
+import org.eclipse.core.runtime.CoreException;
+
+import alice.tuprologx.eclipse.properties.PropertyManager;
+
+public class DeltaPrinter implements IResourceDeltaVisitor {
+ private Stack stackEngines;
+ private boolean isProjectRename;
+ private boolean isOddOperation; // si deve evitare errore caso Delete -> Import
+
+ public DeltaPrinter() {
+ super();
+ stackEngines = new Stack<>();
+ setProjectRename(false);
+ resetOddOperation();
+ }
+
+ @Override
+ public boolean visit(IResourceDelta delta) throws CoreException {
+ IResource res = delta.getResource();
+ switch (delta.getKind()) {
+ case IResourceDelta.ADDED:
+ /*System.out.print("Resource ");
+ System.out.print(res.getFullPath());
+ System.out.println(" was added.");*/
+ // Il nuovo progetto col nome cambiato viene aggiunto
+ if (res instanceof IProject) {
+ // Si verifica se il progetto che si sta per aggiungere
+ // è un progetto Prolog
+ boolean hasPrologNature = false;
+ try {
+ hasPrologNature = ((IProject) res).hasNature(PrologNature.NATURE_ID);
+ } catch (CoreException e) {
+ }
+ if (hasPrologNature && isProjectRename()) {
+ // Si aggiunge il progetto res a PrologEngineFactory
+ String primoEngine = "Engine1";
+ PrologEngineFactory.getInstance().insertEntry((IProject) res, primoEngine);
+ // Si rimuove primoEngine dato che non era presente nel progetto iniziale
+ PrologEngineFactory.getInstance().deleteEngine((IProject) res, primoEngine);
+ // Si caricano i motori Prolog dallo stack dentro PrologEngineFactory
+ while (!getStackEngines().isEmpty()) {
+ PrologEngineFactory.getInstance().addEngine((IProject) res, getStackEngines().pop().getName());
+ }
+ setProjectRename(false); // si avvisa deltaPrinter che la rinomina è completa
+ return false; // progetto rinominato, non si deve visitare i figli
+ }
+ }
+ break;
+ case IResourceDelta.CHANGED:
+ /*System.out.print("Resource ");
+ System.out.print(res.getFullPath());
+ System.out.println(" has changed.");*/
+ if (res instanceof IProject) {
+ // Si verifica se il progetto che si sta per aggiungere
+ // è un progetto Prolog
+ boolean hasPrologNature = false;
+ try {
+ hasPrologNature = ((IProject) res).hasNature(PrologNature.NATURE_ID);
+ } catch (CoreException e) {
+ }
+ if (hasPrologNature) {
+ //System.out.println("Prolog Project was changed.");
+ String primoEngine = "Engine1";
+ PrologEngineFactory.getInstance().insertEntry((IProject) res, primoEngine);
+ // Si salva il motore nelle proprietà persistenti
+ PropertyManager.addEngineInProperty((IProject) res, primoEngine);
+ // inserimento delle librerie di default
+ String[] libraries = {"alice.tuprolog.lib.BasicLibrary", "alice.tuprolog.lib.IOLibrary",
+ "alice.tuprolog.lib.ISOLibrary", "alice.tuprolog.lib.OOLibrary"};
+ PropertyManager.setLibraryInProperties((IProject) res, primoEngine, libraries);
+ // Si aggiungono tutte le teorie del progetto
+ PropertyManager.setTheoriesInProperty((IProject) res, primoEngine, null, true);
+ return false; // progetto importato, non visitare figli
+ }
+ }
+ break;
+ }
+ return true; // visit the children
+ }
+
+ public Stack getStackEngines() {
+ return stackEngines;
+ }
+
+ public void setProjectRename(boolean isProjectRename) {
+ this.isProjectRename = isProjectRename;
+ }
+
+ public boolean isProjectRename() {
+ return isProjectRename;
+ }
+
+ public boolean isOddOperation() {
+ return this.isOddOperation;
+ }
+
+ public void toggleIsOddOperation() {
+ if (isOddOperation()) {
+ this.isOddOperation = false;
+ } else {
+ this.isOddOperation = true;
+ }
+ }
+
+ public void resetOddOperation() {
+ this.isOddOperation = false;
+ }
+}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/MyRenameProjectChangeReporter.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/MyRenameProjectChangeReporter.java
new file mode 100644
index 0000000..2e732de
--- /dev/null
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/MyRenameProjectChangeReporter.java
@@ -0,0 +1,83 @@
+package alice.tuprologx.eclipse.core;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.IResourceChangeEvent;
+import org.eclipse.core.resources.IResourceChangeListener;
+import org.eclipse.core.runtime.CoreException;
+
+public class MyRenameProjectChangeReporter implements IResourceChangeListener {
+ private DeltaPrinter deltaPrinter;
+
+ public MyRenameProjectChangeReporter() {
+ super();
+ deltaPrinter = new DeltaPrinter();
+ }
+
+ /* Si hanno i casi seguenti:
+ * (non-Javadoc)
+ * @see org.eclipse.core.resources.IResourceChangeListener#resourceChanged(org.eclipse.core.resources.IResourceChangeEvent)
+ * Rename
+ * PRE_DELETE
+ * POST_CHANGE -> ADDED
+ *
+ * Import
+ * POST_CHANGE -> ADDED
+ * POST_CHANGE -> CHANGED
+ *
+ * Delete
+ * PRE_DELETE
+ */
+
+ @Override
+ public void resourceChanged(IResourceChangeEvent event) {
+ IResource res = event.getResource();
+ switch (event.getType()) {
+ case IResourceChangeEvent.PRE_DELETE:
+ /*System.out.print("Project ");
+ System.out.print(res.getFullPath());
+ System.out.println(" is about to be deleted.");*/
+ // Si cancella il progetto res
+ if (res instanceof IProject) {
+ // Si verifica se il progetto che si sta per cancellare
+ // è un progetto Prolog
+ boolean hasPrologNature = false;
+ try {
+ hasPrologNature = ((IProject) res).hasNature(PrologNature.NATURE_ID);
+ } catch (CoreException e) {
+ }
+ if (hasPrologNature) {
+ // Si rimuove il progetto res da PrologEngineFactory
+ // Si inizializza (svuota) lo Stack
+ while (!deltaPrinter.getStackEngines().isEmpty()) {
+ deltaPrinter.getStackEngines().pop();
+ }
+ // Si avvisa deltaPrinter della rinomina
+ deltaPrinter.setProjectRename(true);
+ // Si ha una probabile delete
+ /*deltaPrinter.resetOddOperation();
+ deltaPrinter.toggleIsOddOperation();*/
+ // Si salvano i rispettivi motori in stack dentro deltaPrinter
+ for (int i=0; i faccio
// partire il build
// se l'ultimo build e' stato effettuato con uno scope
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologEngineFactory.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologEngineFactory.java
index 3e5c46e..f08887a 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologEngineFactory.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologEngineFactory.java
@@ -2,13 +2,15 @@
import java.util.*;
+import org.eclipse.core.resources.IProject;
+
public class PrologEngineFactory {
- private Hashtable> registry = null;
+ private Hashtable> registry = null;
private static PrologEngineFactory instance;
protected PrologEngineFactory() {
- registry = new Hashtable>();
+ registry = new Hashtable>();
}
public static PrologEngineFactory getInstance() {
@@ -17,9 +19,9 @@ public static PrologEngineFactory getInstance() {
return instance;
}
- public Vector getProjectEngines(String projectName) {
- if (projectName != null)
- return registry.get(projectName);
+ public Vector getProjectEngines(IProject project) {
+ if (project != null)
+ return registry.get(project);
else
return null;
}
@@ -28,49 +30,49 @@ public Vector> getEngines() {
return (Vector>) registry.values();
}
- public PrologEngine getEngine(String projectName, int index) {
- Vector engines = getProjectEngines(projectName);
+ public PrologEngine getEngine(IProject project, int index) {
+ Vector engines = getProjectEngines(project);
if (engines != null)
return engines.elementAt(index);
else
return null;
}
- public PrologEngine insertEntry(String projectName, String name) {
- if (projectName != null) {
- PrologEngine engine = new PrologEngine(projectName, name);
+ public PrologEngine insertEntry(IProject project, String name) {
+ if (project != null) {
+ PrologEngine engine = new PrologEngine(project.getName(), name);
Vector engines = new Vector();
engines.add(engine);
- registry.put(projectName, engines);
+ registry.put(project, engines);
return engine;
}
return null;
}
- public PrologEngine addEngine(String projectName, String name) {
- if (projectName != null) {
- PrologEngine engine = new PrologEngine(projectName, name);
- Vector engines = getProjectEngines(projectName);
+ public PrologEngine addEngine(IProject project, String name) {
+ if (project != null) {
+ PrologEngine engine = new PrologEngine(project.getName(), name);
+ Vector engines = getProjectEngines(project);
if (engines != null) {
engines.add(engine);
- registry.put(projectName, engines);
+ registry.put(project, engines);
}
return engine;
}
return null;
}
- public void deleteEngine(String projectName, String name) {
- if (projectName != null) {
- Vector engines = getProjectEngines(projectName);
+ public void deleteEngine(IProject project, String name) {
+ if (project != null) {
+ Vector engines = getProjectEngines(project);
for (int i = 0; i < engines.size(); i++) {
if (name.equals(PrologEngineFactory.getInstance()
- .getEngine(projectName, i).getName())) {
+ .getEngine(project, i).getName())) {
engines.removeElementAt(i);
}
}
- registry.remove(projectName);
- registry.put(projectName, engines);
+ registry.remove(project);
+ registry.put(project, engines);
}
}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologParser.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologParser.java
index 1d64a19..7be4d6e 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologParser.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologParser.java
@@ -52,7 +52,7 @@ public class PrologParser extends IncrementalProjectBuilder {
private static boolean allTheories = false;
@SuppressWarnings({ "rawtypes" })
private static Vector[] alternativeScope;
- private static String projectName;
+ private static IProject project;
private Vector terms;
private IMarker mark;
private static Theory theory; // la teoria da passare al builder in caso di
@@ -72,7 +72,7 @@ protected IProject[] build(int kind, Map args, IProgressMonitor monitor)
go = false;
t = new Vector();
alternativeScope = new Vector[PrologEngineFactory.getInstance()
- .getProjectEngines(projectName).size()];
+ .getProjectEngines(project).size()];
for (int i = 0; i < alternativeScope.length; i++) {
alternativeScope[i] = new Vector();
String tmp = "";
@@ -99,12 +99,11 @@ protected IProject[] build(int kind, Map args, IProgressMonitor monitor)
@SuppressWarnings({ "unchecked", "rawtypes" })
protected void fullBuild(final IProgressMonitor monitor,Map args) {
t = new Vector();
- IProject project = getProject();
- projectName = project.getName();
- Vector engines =PrologEngineFactory.getInstance().getProjectEngines(project.getName());
+ project = getProject();
+ Vector engines =PrologEngineFactory.getInstance().getProjectEngines(project);
for (int j = 0; j < (engines!=null?engines.size():0); j++) {
PrologEngine engine = PrologEngineFactory.getInstance().getEngine(
- project.getName(), j);
+ project, j);
setListeners(args);
if (alternativeScope == null) {
try {
@@ -301,7 +300,7 @@ public static Theory getTheory() {
}
public static String getProjectName() {
- return projectName;
+ return project.getName();
}
/**
* Update the theory in its String representation removing
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologQueryFactory.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologQueryFactory.java
index e0b3423..8aaccb8 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologQueryFactory.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/core/PrologQueryFactory.java
@@ -29,7 +29,7 @@ public class PrologQueryFactory extends Observable {
Vector queries;
private int queryId;
private static boolean init;
- private static Theory lastTheory;
+ //private static Theory lastTheory;
public static PrologQueryFactory getInstance(){
if (instance == null){
instance = new PrologQueryFactory();
@@ -41,12 +41,12 @@ public PrologQueryFactory()
{
queryId = 0;
queries = new Vector();
- try {
+ /*try {
lastTheory = new Theory("");
} catch (InvalidTheoryException e) {
// TODO Auto-generated catch block
e.printStackTrace();
- }
+ }*/
init = true;
}
@@ -79,9 +79,11 @@ public boolean executeQueryWS(PrologQuery query)
currentProject.build(IncrementalProjectBuilder.FULL_BUILD,
PrologParser.BUILDER_ID, null, null);
} catch (CoreException e1) {
+ // aggiunta DD ai fini di debug
+ e1.printStackTrace();
}
- PrologEngine engine = PrologEngineFactory.getInstance().getEngine(currentProject.getName(),0);
+ PrologEngine engine = PrologEngineFactory.getInstance().getEngine(currentProject,0);
PrologQueryScope scope = new PrologQueryScope(engine);
scope.setProject(currentProject);
/*Add the file open in the PrologEditor to the query scope*/
@@ -100,10 +102,10 @@ public boolean executeQueryWS(PrologQuery query)
* The new theory, written into the file .pl is added to the
* engine only if ins't the same that the last theory parsed.
*/
- if(!scopeTheory.toString().equals(lastTheory.toString())){
+ //if(!scopeTheory.toString().equals(lastTheory.toString())){
engine.setTheory(scopeTheory);
- lastTheory = scopeTheory;
- }
+ //lastTheory = scopeTheory;
+ //}
EventListener listener = new EventListener();
engine.addOutputListener(listener);
/*Castagna 06/2011*/
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/editors/PrologEditor.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/editors/PrologEditor.java
index 3757095..af951ef 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/editors/PrologEditor.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/editors/PrologEditor.java
@@ -168,7 +168,7 @@ protected void handlePreferenceStoreChanged(PropertyChangeEvent event) {
public PrologEngine getProjectEngine(int index) {
return PrologEngineFactory.getInstance().getEngine(
- getProject().getName(), index);
+ getProject(), index);
}
public IProject getProject() {
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/EnginesManagement.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/EnginesManagement.java
index 8930929..fa516a3 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/EnginesManagement.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/EnginesManagement.java
@@ -47,7 +47,7 @@ public EnginesManagement() {
// Crea i componenti grafici e ne gestisce la visualizzazione
protected Control createContents(final Composite parent) {
- final String name = ((IResource) getElement()).getName();
+ final IProject project = ((IProject) getElement());
final Composite container = new Composite(parent, SWT.NULL);
container.setLayout(new RowLayout(SWT.VERTICAL));
@@ -64,10 +64,10 @@ protected Control createContents(final Composite parent) {
listEngine.setToolTipText("Loaded engines");
String[] items = new String[PrologEngineFactory.getInstance()
- .getProjectEngines(name).size()];
+ .getProjectEngines(project).size()];
for (int j = 0; j < PrologEngineFactory.getInstance()
- .getProjectEngines(name).size(); j++) {
- items[j] = PrologEngineFactory.getInstance().getEngine(name, j)
+ .getProjectEngines(project).size(); j++) {
+ items[j] = PrologEngineFactory.getInstance().getEngine(project, j)
.getName();
}
listEngine.setItems(items);
@@ -91,9 +91,9 @@ public void mouseUp(final MouseEvent e) {
scopeGroup.setText("Default scope of: \""
+ motoreScelto + "\"");
for (int i = 0; i < PrologEngineFactory.getInstance()
- .getProjectEngines(name).size(); i++) {
+ .getProjectEngines(project).size(); i++) {
if (PrologEngineFactory.getInstance()
- .getEngine(name, i).getName()
+ .getEngine(project, i).getName()
.equals(motoreScelto)) {
Vector lib = PropertyManager
.getLibrariesFromProperties(
@@ -138,7 +138,7 @@ public void mouseUp(final MouseEvent e) {
}
}
if (PrologEngineFactory.getInstance()
- .getProjectEngines(name).size() != 1) {
+ .getProjectEngines(project).size() != 1) {
deleteEngine.setEnabled(true);
} else
deleteEngine.setEnabled(false);
@@ -167,7 +167,7 @@ public void mouseUp(final MouseEvent e) {
scopeGroup.setText("Default scope of: ");
listEngine.add(scelta);
PrologEngine engine = PrologEngineFactory.getInstance()
- .addEngine(name, scelta);
+ .addEngine(project, scelta);
Vector v = new Vector();
PropertyManager.setLibrariesOnEngine(v, engine);
PropertyManager.setLibraryInProperties(
@@ -200,7 +200,7 @@ public void mouseUp(final MouseEvent e) {
scopeGroup.setText("Default scope of: ");
for (int i = 0; i < selection.length; i++) {
listEngine.remove(selection[i]);
- PrologEngineFactory.getInstance().deleteEngine(name,
+ PrologEngineFactory.getInstance().deleteEngine(project,
selection[i]);
PropertyManager.deleteEngineInProperties(
(IProject) getElement(), selection[i],
@@ -237,12 +237,12 @@ public void mouseUp(final MouseEvent e) {
listLibrary.setToolTipText("Loaded libraries on: ");
scopeGroup.setText("Default scope of: ");
for (int i = 0; i < PrologEngineFactory.getInstance()
- .getProjectEngines(name).size(); i++)
+ .getProjectEngines(project).size(); i++)
if (PrologEngineFactory.getInstance()
- .getEngine(name, i).getName()
+ .getEngine(project, i).getName()
.equals(motoreScelto))
PrologEngineFactory.getInstance()
- .getEngine(name, i).rename(scelta);
+ .getEngine(project, i).rename(scelta);
Vector> lib = PropertyManager.getLibrariesFromProperties(
(IProject) getElement(), motoreScelto);
@@ -333,13 +333,13 @@ public void mouseUp(final MouseEvent e) {
}
r.add(scelta);
for (int i = 0; i < PrologEngineFactory.getInstance()
- .getProjectEngines(name).size(); i++) {
+ .getProjectEngines(project).size(); i++) {
if (PrologEngineFactory.getInstance()
- .getEngine(name, i).getName()
+ .getEngine(project, i).getName()
.equals(motoreScelto)) {
PropertyManager.setLibrariesOnEngine(r,
PrologEngineFactory.getInstance()
- .getEngine(name, i));
+ .getEngine(project, i));
listLibrary.add(scelta);
PropertyManager.setLibraryInProperties(
(IProject) getElement(), motoreScelto,
@@ -376,12 +376,12 @@ public void mouseUp(final MouseEvent e) {
r.add(t[i]);
}
for (int i = 0; i < PrologEngineFactory.getInstance()
- .getProjectEngines(name).size(); i++) {
+ .getProjectEngines(project).size(); i++) {
if (PrologEngineFactory.getInstance()
- .getEngine(name, i).getName() == motoreScelto) {
+ .getEngine(project, i).getName() == motoreScelto) {
PropertyManager.setLibrariesOnEngine(r,
PrologEngineFactory.getInstance()
- .getEngine(name, i));
+ .getEngine(project, i));
}
}
}
@@ -451,16 +451,16 @@ private void onCheckChanged(Button button) {
// Setta i valori di default quando il bottone "Apply default" viene premuto
protected void performDefaults() {
- final String name = ((IResource) getElement()).getName();
+ final IProject project = ((IProject) getElement());
for (int i = 0; i < listEngine.getItems().length; i++) {
- PrologEngineFactory.getInstance().deleteEngine(name,
+ PrologEngineFactory.getInstance().deleteEngine(project,
listEngine.getItem(i));
listEngine.remove(listEngine.getItem(i));
PropertyManager.deleteEngineInProperties((IProject) getElement(),
listEngine.getItem(i), listEngine.getItems());
}
PrologEngine engine = PrologEngineFactory.getInstance().insertEntry(
- name, "Engine1");
+ project, "Engine1");
String[] libs = engine.getLibrary();
for (int i = 0; i < libs.length; i++)
engine.removeLibrary(libs[i]);
@@ -468,7 +468,7 @@ protected void performDefaults() {
libraries[0] = "alice.tuprolog.lib.BasicLibrary";
libraries[1] = "alice.tuprolog.lib.IOLibrary";
libraries[2] = "alice.tuprolog.lib.ISOLibrary";
- libraries[3] = "alice.tuprolog.lib.JavaLibrary";
+ libraries[3] = "alice.tuprolog.lib.OOLibrary";
for (int i = 0; i < libraries.length; i++)
engine.addLibrary(libraries[i]);
PropertyManager.addEngineInProperty((IProject) getElement(),
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/LibraryValidator.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/LibraryValidator.java
index bd150c0..7bd1804 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/LibraryValidator.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/LibraryValidator.java
@@ -18,7 +18,8 @@ public String isValid(String scelta) {
if (!scelta.equals("alice.tuprolog.lib.BasicLibrary")
&& !scelta.equals("alice.tuprolog.lib.IOLibrary")
&& !scelta.equals("alice.tuprolog.lib.JavaLibrary")
- && !scelta.equals("alice.tuprolog.lib.ISOLibrary"))
+ && !scelta.equals("alice.tuprolog.lib.ISOLibrary")
+ && !scelta.equals("alice.tuprolog.lib.OOLibrary"))
return "Library not exist";
return null;
}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/PropertyManager.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/PropertyManager.java
index 3e95e1a..b4b0084 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/PropertyManager.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/properties/PropertyManager.java
@@ -26,7 +26,7 @@ public static void initializeWorkspace() {
public static void configureProject(IProject project) {
// configurazione = creazione del motore e set delle librerie
- // il metodo configura un progetto se è aperto e se ha la PrologNature
+ // il metodo configura un progetto se � aperto e se ha la PrologNature
boolean hasPrologNature = false;
try {
hasPrologNature = project.hasNature(PrologNature.NATURE_ID);
@@ -40,7 +40,7 @@ public static void configureProject(IProject project) {
Vector libraries = getLibrariesFromProperties(project,
engines[j]);
setLibrariesOnEngine(libraries, PrologEngineFactory
- .getInstance().getEngine(project.getName(), j));
+ .getInstance().getEngine(project, j));
}
}
}
@@ -49,7 +49,7 @@ private static String[] getEngineNumber(IProject project) {
String eng = "";
try {
eng = project.getPersistentProperty(new QualifiedName(qualifier,
- project.getName()));
+ "enginesList"));
} catch (CoreException e) {
}
StringTokenizer st = new StringTokenizer(eng, ";");
@@ -64,17 +64,18 @@ private static void createEngine(IProject project, String engineName) {
PrologEngine engine = null;
// crea il motore di un progetto (SENZA LIBRARIES!)
if (PrologEngineFactory.getInstance().getProjectEngines(
- project.getName()) == null) {
+ project) == null) {
engine = PrologEngineFactory.getInstance().insertEntry(
- project.getName(), engineName);
+ project, engineName);
} else {
engine = PrologEngineFactory.getInstance().addEngine(
- project.getName(), engineName);
- }// svuoto le librerie, perchè le lib di default potrebbero non servire
+ project, engineName);
+ }// svuoto le librerie, perche' le lib di default potrebbero non servire
engine.removeLibrary("alice.tuprolog.lib.BasicLibrary");
engine.removeLibrary("alice.tuprolog.lib.IOLibrary");
engine.removeLibrary("alice.tuprolog.lib.ISOLibrary");
engine.removeLibrary("alice.tuprolog.lib.JavaLibrary");
+ engine.removeLibrary("alice.tuprolog.lib.OOLibrary");
}
@@ -82,13 +83,13 @@ public static void addEngineInProperty(IProject project, String engineName) {
String engines = "";
try {
engines = project.getPersistentProperty(new QualifiedName(
- qualifier, project.getName()));
+ qualifier, "enginesList"));
} catch (CoreException e) {
}
if (engines == null)
engines = "";
engines = engines + engineName + ";";
- QualifiedName qn = new QualifiedName(qualifier, project.getName());
+ QualifiedName qn = new QualifiedName(qualifier, "enginesList");
try {
project.setPersistentProperty(qn, engines);
} catch (CoreException e1) {
@@ -102,7 +103,7 @@ public static void deleteEngineInProperties(IProject project,
tmp = tmp + engines[i] + ";";
}
- QualifiedName qn = new QualifiedName(qualifier, project.getName());
+ QualifiedName qn = new QualifiedName(qualifier, "enginesList");
try {
project.setPersistentProperty(qn, tmp);
} catch (CoreException e1) {
@@ -110,10 +111,10 @@ public static void deleteEngineInProperties(IProject project,
try {
project.setPersistentProperty(
- new QualifiedName(qualifier, project.getName() + "."
+ new QualifiedName(qualifier, "enginesList" + "."
+ engineName + ".theories"), null);
project.setPersistentProperty(
- new QualifiedName(qualifier, project.getName() + "."
+ new QualifiedName(qualifier, "enginesList" + "."
+ engineName + ".libraries"), null);
} catch (CoreException e) {
e.printStackTrace();
@@ -126,7 +127,7 @@ public static Vector getLibrariesFromProperties(IProject project,
Vector libraries = new Vector();
try {
property = project.getPersistentProperty(new QualifiedName(
- qualifier, project.getName() + "." + engineName
+ qualifier, "enginesList" + "." + engineName
+ ".libraries"));
} catch (CoreException e) {
}
@@ -143,7 +144,7 @@ public static void setLibraryInProperties(IProject project,
librariesString = librariesString + libraries[i] + ";";
try {
project.setPersistentProperty(
- new QualifiedName(qualifier, project.getName() + "."
+ new QualifiedName(qualifier, "enginesList" + "."
+ engineName + ".libraries"), librariesString);
} catch (CoreException e) {
}
@@ -163,7 +164,7 @@ public static boolean allTheories(IProject project, String engineName) {
String property = ""; // l'elenco di teorie
try {
property = project.getPersistentProperty(new QualifiedName(
- qualifier, project.getName() + "." + engineName
+ qualifier, "enginesList" + "." + engineName
+ ".theories"));
} catch (CoreException e) {
}
@@ -178,7 +179,7 @@ public static Vector getTheoriesFromProperties(IProject project,
Vector theories = new Vector();
try {
property = project.getPersistentProperty(new QualifiedName(
- qualifier, project.getName() + "." + engineName
+ qualifier, "enginesList" + "." + engineName
+ ".theories"));
} catch (CoreException e) {
}
@@ -193,17 +194,17 @@ public static Vector getTheoriesFromProperties(IProject project,
public static void setTheoriesInProperty(IProject project,
String engineName, String[] theories, boolean allTheories) {
String theoriesString = "";
- if (theories == null) { // l'invocazione è partita dal wizard
+ if (theories == null) { // l'invocazione � partita dal wizard
if (allTheories)
theoriesString = "*.pl";
- } else { // l'invocazione è partita dalla pagina di properties
+ } else { // l'invocazione � partita dalla pagina di properties
for (int i = 0; i < theories.length; i++)
theoriesString = theoriesString + theories[i] + ";";
}
try {
- QualifiedName qn3 = new QualifiedName(qualifier, project.getName()
+ QualifiedName qn3 = new QualifiedName(qualifier, "enginesList"
+ "." + engineName + ".theories");
project.setPersistentProperty(qn3, theoriesString);
} catch (CoreException e) {
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologGetTheory.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologGetTheory.java
new file mode 100644
index 0000000..b7e17b0
--- /dev/null
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologGetTheory.java
@@ -0,0 +1,71 @@
+package alice.tuprologx.eclipse.toolbar;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.Path;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.IWorkbenchWindow;
+import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.part.FileEditorInput;
+
+import alice.tuprologx.eclipse.TuProlog;
+import alice.tuprologx.eclipse.core.PrologEngine;
+import alice.tuprologx.eclipse.core.PrologEngineFactory;
+
+public class PrologGetTheory extends AbstractHandler {
+ // dentro PrologGetTheoryAction.java win veniva passato come parametro in init()
+ private IWorkbenchWindow win;
+ // A workbench window is a top level window in a workbench. (dalla documentazione)
+
+ @Override
+ public Object execute(ExecutionEvent arg0) throws ExecutionException {
+ IWorkbench wb = PlatformUI.getWorkbench();
+ win = wb.getActiveWorkbenchWindow();
+
+ IProject currentProject = TuProlog.getActiveProject();
+ String dynTheory = "";
+ PrologEngine engine = PrologEngineFactory.getInstance().getEngine(currentProject,0);
+ dynTheory = engine.getTheory();
+ InputStream is=null;
+ try {
+ is = new ByteArrayInputStream(dynTheory.getBytes("UTF-8"));
+ } catch (UnsupportedEncodingException e) {
+ e.printStackTrace();
+ }
+ try {
+// IEditorPart editor= win.getActivePage().getActiveEditor();
+// if (editor instanceof PrologEditor){
+// PrologEditor ed = (PrologEditor) editor;
+// }
+ // get the active Workbench page
+ IWorkbenchPage page = win.getActivePage();
+ IFile file = currentProject.getFile(".tmp.pl");
+ if(currentProject.exists(new Path(".tmp.pl"))){
+ file.setContents(is, 332,null);
+ }else{
+ file.create(is, true, null);
+
+ }
+
+ page.openEditor(new FileEditorInput(file),"alice.tuprologx.eclipse.editors.PrologEditor");
+ } catch (PartInitException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (CoreException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ return null;
+ }
+
+}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologGetTheoryAction.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologGetTheoryAction.java
deleted file mode 100644
index 35085c9..0000000
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologGetTheoryAction.java
+++ /dev/null
@@ -1,77 +0,0 @@
-package alice.tuprologx.eclipse.toolbar;
-
-
-import java.io.ByteArrayInputStream;
-import java.io.InputStream;
-import java.io.UnsupportedEncodingException;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.IProject;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.ui.IWorkbenchPage;
-import org.eclipse.ui.IWorkbenchWindow;
-import org.eclipse.ui.IWorkbenchWindowActionDelegate;
-import org.eclipse.ui.PartInitException;
-import org.eclipse.ui.part.FileEditorInput;
-
-import alice.tuprologx.eclipse.TuProlog;
-import alice.tuprologx.eclipse.core.PrologEngine;
-import alice.tuprologx.eclipse.core.PrologEngineFactory;
-
-public class PrologGetTheoryAction implements IWorkbenchWindowActionDelegate {
-
- private IWorkbenchWindow win;
-
- public void dispose() {
- };
-
- public void init(IWorkbenchWindow window) {
- this.win=window;
- };
-
- public void run(IAction action) {
- IProject currentProject = TuProlog.getActiveProject();
- String dynTheory = "";
- PrologEngine engine = PrologEngineFactory.getInstance().getEngine(currentProject.getName(),0);
- dynTheory = engine.getTheory();
- InputStream is=null;
- try {
- is = new ByteArrayInputStream(dynTheory.getBytes("UTF-8"));
- } catch (UnsupportedEncodingException e) {
- e.printStackTrace();
- }
- try {
-// IEditorPart editor= win.getActivePage().getActiveEditor();
-// if (editor instanceof PrologEditor){
-// PrologEditor ed = (PrologEditor) editor;
-// }
- IWorkbenchPage page = win.getActivePage();
- IFile file = currentProject.getFile(".tmp.pl");
- if(currentProject.exists(new Path(".tmp.pl"))){
- file.setContents(is, 332,null);
- }else{
- file.create(is, true, null);
-
- }
-
- page.openEditor(new FileEditorInput(file),"alice.tuprologx.eclipse.editors.PrologEditor");
- } catch (PartInitException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (CoreException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
- public void selectionChanged(IAction action, ISelection selection) {
- // TODO Auto-generated method stub
-
- }
-
-
-
-}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologProject.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologProject.java
new file mode 100644
index 0000000..ffab693
--- /dev/null
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologProject.java
@@ -0,0 +1,29 @@
+package alice.tuprologx.eclipse.toolbar;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.jface.wizard.WizardDialog;
+import org.eclipse.ui.PlatformUI;
+
+import alice.tuprologx.eclipse.wizards.PrologProjectWizard;
+
+public class PrologProject extends AbstractHandler {
+
+ @Override
+ public Object execute(ExecutionEvent arg0) throws ExecutionException {
+ // Create the wizard
+ PrologProjectWizard wizard = new PrologProjectWizard();
+ IStructuredSelection selection = null;
+ wizard.init(PlatformUI.getWorkbench(), selection);
+
+ // Create the wizard dialog
+ WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench()
+ .getActiveWorkbenchWindow().getShell(), wizard);
+ // Open the wizard dialog
+ dialog.open();
+ return null;
+ }
+
+}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologProjectAction.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologProjectAction.java
deleted file mode 100644
index 5f77770..0000000
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologProjectAction.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package alice.tuprologx.eclipse.toolbar;
-
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.wizard.WizardDialog;
-import org.eclipse.ui.IWorkbenchWindow;
-import org.eclipse.ui.IWorkbenchWindowActionDelegate;
-import org.eclipse.ui.PlatformUI;
-
-import alice.tuprologx.eclipse.wizards.PrologProjectWizard;
-
-public class PrologProjectAction implements IWorkbenchWindowActionDelegate {
-
- public void dispose() {
- };
-
- public void init(IWorkbenchWindow window) {
- };
-
- public void run(IAction action) {
-
- // Create the wizard
- PrologProjectWizard wizard = new PrologProjectWizard();
- IStructuredSelection selection = null;
- wizard.init(PlatformUI.getWorkbench(), selection);
-
- // Create the wizard dialog
- WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench()
- .getActiveWorkbenchWindow().getShell(), wizard);
- // Open the wizard dialog
- dialog.open();
-
- }
-
- public void selectionChanged(IAction action, ISelection selection) {
-
- }
-
-}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologSetTheory.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologSetTheory.java
new file mode 100644
index 0000000..f33611b
--- /dev/null
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologSetTheory.java
@@ -0,0 +1,30 @@
+package alice.tuprologx.eclipse.toolbar;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.resources.IProject;
+
+import alice.tuprolog.InvalidTheoryException;
+import alice.tuprolog.Theory;
+import alice.tuprologx.eclipse.TuProlog;
+import alice.tuprologx.eclipse.core.PrologEngine;
+import alice.tuprologx.eclipse.core.PrologEngineFactory;
+
+public class PrologSetTheory extends AbstractHandler {
+
+ @Override
+ public Object execute(ExecutionEvent arg0) throws ExecutionException {
+ IProject currentProject = TuProlog.getActiveProject();
+ String theory = TuProlog.getActiveFile().toString();
+ PrologEngine engine = PrologEngineFactory.getInstance().getEngine(currentProject,0);
+ try {
+ engine.setTheory(new Theory(theory));
+ } catch (InvalidTheoryException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ return null;
+ }
+
+}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologSetTheoryAction.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologSetTheoryAction.java
deleted file mode 100644
index 551cc3d..0000000
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologSetTheoryAction.java
+++ /dev/null
@@ -1,42 +0,0 @@
-package alice.tuprologx.eclipse.toolbar;
-
-
-import org.eclipse.core.resources.IProject;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.ISelection;
-
-import org.eclipse.ui.IWorkbenchWindow;
-import org.eclipse.ui.IWorkbenchWindowActionDelegate;
-
-import alice.tuprolog.InvalidTheoryException;
-import alice.tuprolog.Theory;
-import alice.tuprologx.eclipse.TuProlog;
-import alice.tuprologx.eclipse.core.PrologEngine;
-import alice.tuprologx.eclipse.core.PrologEngineFactory;
-
-public class PrologSetTheoryAction implements IWorkbenchWindowActionDelegate {
-
- public void dispose() {
- };
-
- public void init(IWorkbenchWindow window) {
- };
-
- public void run(IAction action) {
- IProject currentProject = TuProlog.getActiveProject();
- String theory = TuProlog.getActiveFile().toString();
- PrologEngine engine = PrologEngineFactory.getInstance().getEngine(currentProject.getName(),0);
- try {
- engine.setTheory(new Theory(theory));
- } catch (InvalidTheoryException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
-
- }
-
- public void selectionChanged(IAction action, ISelection selection) {
-
- }
-
-}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologTheory.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologTheory.java
new file mode 100644
index 0000000..19c727e
--- /dev/null
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologTheory.java
@@ -0,0 +1,30 @@
+package alice.tuprologx.eclipse.toolbar;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.jface.wizard.WizardDialog;
+import org.eclipse.ui.PlatformUI;
+
+import alice.tuprologx.eclipse.wizards.PrologWizard;
+
+public class PrologTheory extends AbstractHandler {
+
+ @Override
+ public Object execute(ExecutionEvent arg0) throws ExecutionException {
+ // MessageDialog.openInformation(null,null,"HelloWorld");
+ // Create the wizard
+ PrologWizard wizard = new PrologWizard();
+ IStructuredSelection selection = null;
+ wizard.init(PlatformUI.getWorkbench(), selection);
+
+ // Create the wizard dialog
+ WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench()
+ .getActiveWorkbenchWindow().getShell(), wizard);
+ // Open the wizard dialog
+ dialog.open();
+ return null;
+ }
+
+}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologTheoryAction.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologTheoryAction.java
deleted file mode 100644
index b7f1344..0000000
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/toolbar/PrologTheoryAction.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package alice.tuprologx.eclipse.toolbar;
-
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.wizard.WizardDialog;
-import org.eclipse.ui.IWorkbenchWindow;
-import org.eclipse.ui.IWorkbenchWindowActionDelegate;
-import org.eclipse.ui.PlatformUI;
-
-import alice.tuprologx.eclipse.wizards.PrologWizard;
-
-public class PrologTheoryAction implements IWorkbenchWindowActionDelegate {
-
- public void dispose() {
- };
-
- public void init(IWorkbenchWindow window) {
- };
-
- public void run(IAction action) {
- // MessageDialog.openInformation(null,null,"HelloWorld");
- // Create the wizard
- PrologWizard wizard = new PrologWizard();
- IStructuredSelection selection = null;
- wizard.init(PlatformUI.getWorkbench(), selection);
-
- // Create the wizard dialog
- WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench()
- .getActiveWorkbenchWindow().getShell(), wizard);
- // Open the wizard dialog
- dialog.open();
- }
-
- public void selectionChanged(IAction action, ISelection selection) {
- }
-}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/util/QueryDialog.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/util/QueryDialog.java
index 4956842..83a10b4 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/util/QueryDialog.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/util/QueryDialog.java
@@ -155,7 +155,7 @@ private void updateWidgets()
if ( choosenProject != null)
{
fProjText.setText(choosenProject.getName());
- Vector engines = PrologEngineFactory.getInstance().getProjectEngines(choosenProject.getName());
+ Vector engines = PrologEngineFactory.getInstance().getProjectEngines(choosenProject);
for (int j = 0 ; j < engines.size(); j ++)
{
PrologEngine currEngine = (PrologEngine) engines.get(j);
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ConsoleView.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ConsoleView.java
index cf293b1..b6058ce 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ConsoleView.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ConsoleView.java
@@ -465,11 +465,11 @@ public void setQuery( PrologQuery query )
this.project.setText(projStr);
this.engines.setText(engStr);
this.files.setText(fileStr);
- /* bind.setEnabled(false);
+ bind.setEnabled(false);
PrologQueryFactory.getInstance().executeQueryWS(query);
queryResultIndex=0;
tree.setSelection(tree.getItem(0));
- refreshResultViewer();*/
+ refreshResultViewer();
}
}
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ViewSet.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ViewSet.java
index 2bc6b67..58ea121 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ViewSet.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/views/ViewSet.java
@@ -25,7 +25,9 @@ public ViewSet() {
}
public void refresh(final String theoryToShow) {
- PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
+ // si ha syncExec() dato che esito operazione query dipende da run()
+ // che assegna i valori di console e queryList
+ PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
@Override
public void run() {
IWorkbenchWindow dwindow = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
@@ -61,6 +63,8 @@ public void widgetDefaultSelected(SelectionEvent e) {
@Override
public void update(Observable arg0, Object arg1){
+ // si esegue un refresh() per avere il valore aggiornato di queryList
+ refresh("theoryToShow");
if(queryList!=null){
queryList.update();
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().activate(console);
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizard.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizard.java
index 3fa89f0..9b99f1c 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizard.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizard.java
@@ -110,7 +110,7 @@ public void run() {
// creazione e configurazione del motore
PrologEngine engine = PrologEngineFactory.getInstance().insertEntry(
- projectName, "Engine1");
+ project, "Engine1");
String[] libs = engine.getLibrary();
for (int i = 0; i < libs.length; i++)
engine.removeLibrary(libs[i]);
diff --git a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.java b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.java
index 5e61398..8e4dc7e 100644
--- a/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.java
+++ b/2p-plugin/trunk/tuPrologPlugin/src/alice/tuprologx/eclipse/wizards/PrologProjectWizardPage.java
@@ -75,7 +75,7 @@ public void modifyText(ModifyEvent e) {
libraryList.add("alice.tuprolog.lib.BasicLibrary");
libraryList.add("alice.tuprolog.lib.IOLibrary");
libraryList.add("alice.tuprolog.lib.ISOLibrary");
- libraryList.add("alice.tuprolog.lib.JavaLibrary");
+ libraryList.add("alice.tuprolog.lib.OOLibrary");
libraries = libraryList.getItems();
final Composite composite = new Composite(librerieGroup, SWT.NONE);
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/artifacts.jar b/2p-plugin/trunk/tuPrologUpdateSite/artifacts.jar
index 51cad0a..3bbd626 100644
Binary files a/2p-plugin/trunk/tuPrologUpdateSite/artifacts.jar and b/2p-plugin/trunk/tuPrologUpdateSite/artifacts.jar differ
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/content.jar b/2p-plugin/trunk/tuPrologUpdateSite/content.jar
index 3b886e9..88730f6 100644
Binary files a/2p-plugin/trunk/tuPrologUpdateSite/content.jar and b/2p-plugin/trunk/tuPrologUpdateSite/content.jar differ
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/features/tuPrologFeature_3.2.0.jar b/2p-plugin/trunk/tuPrologUpdateSite/features/tuPrologFeature_3.2.0.jar
new file mode 100644
index 0000000..be230c7
Binary files /dev/null and b/2p-plugin/trunk/tuPrologUpdateSite/features/tuPrologFeature_3.2.0.jar differ
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/features/tuPrologFeature_3.2.1.jar b/2p-plugin/trunk/tuPrologUpdateSite/features/tuPrologFeature_3.2.1.jar
new file mode 100644
index 0000000..183c120
Binary files /dev/null and b/2p-plugin/trunk/tuPrologUpdateSite/features/tuPrologFeature_3.2.1.jar differ
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/plugins/tuPrologPlugin_3.2.0.jar b/2p-plugin/trunk/tuPrologUpdateSite/plugins/tuPrologPlugin_3.2.0.jar
new file mode 100644
index 0000000..1284ffd
Binary files /dev/null and b/2p-plugin/trunk/tuPrologUpdateSite/plugins/tuPrologPlugin_3.2.0.jar differ
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/plugins/tuPrologPlugin_3.2.1.jar b/2p-plugin/trunk/tuPrologUpdateSite/plugins/tuPrologPlugin_3.2.1.jar
new file mode 100644
index 0000000..97674b1
Binary files /dev/null and b/2p-plugin/trunk/tuPrologUpdateSite/plugins/tuPrologPlugin_3.2.1.jar differ
diff --git a/2p-plugin/trunk/tuPrologUpdateSite/site.xml b/2p-plugin/trunk/tuPrologUpdateSite/site.xml
index 4ff7e94..e2db146 100644
--- a/2p-plugin/trunk/tuPrologUpdateSite/site.xml
+++ b/2p-plugin/trunk/tuPrologUpdateSite/site.xml
@@ -1,6 +1,6 @@
-
+
This in the Update Site of tuPtolog plug-in, it allows Update Manager to find newer
versions of plug-is and sugest user to install it.
@@ -22,11 +22,11 @@
-
-