mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 02:44:56 -06:00
initial
This commit is contained in:
commit
2593f0d94e
1004 changed files with 32677 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
node_modules
|
||||
12
__tests__/index.android.js
Normal file
12
__tests__/index.android.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import 'react-native';
|
||||
import React from 'react';
|
||||
import Index from '../index.android.js';
|
||||
|
||||
// Note: test renderer must be required after react-native.
|
||||
import renderer from 'react-test-renderer';
|
||||
|
||||
it('renders correctly', () => {
|
||||
const tree = renderer.create(
|
||||
<Index />
|
||||
);
|
||||
});
|
||||
12
__tests__/index.ios.js
Normal file
12
__tests__/index.ios.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import 'react-native';
|
||||
import React from 'react';
|
||||
import Index from '../index.ios.js';
|
||||
|
||||
// Note: test renderer must be required after react-native.
|
||||
import renderer from 'react-test-renderer';
|
||||
|
||||
it('renders correctly', () => {
|
||||
const tree = renderer.create(
|
||||
<Index />
|
||||
);
|
||||
});
|
||||
1
android/.gradle/2.4/taskArtifacts/cache.properties
Normal file
1
android/.gradle/2.4/taskArtifacts/cache.properties
Normal file
|
|
@ -0,0 +1 @@
|
|||
#Sun Jan 15 18:14:14 CST 2017
|
||||
BIN
android/.gradle/2.4/taskArtifacts/cache.properties.lock
Normal file
BIN
android/.gradle/2.4/taskArtifacts/cache.properties.lock
Normal file
Binary file not shown.
BIN
android/.gradle/2.4/taskArtifacts/fileHashes.bin
Normal file
BIN
android/.gradle/2.4/taskArtifacts/fileHashes.bin
Normal file
Binary file not shown.
BIN
android/.gradle/2.4/taskArtifacts/fileSnapshots.bin
Normal file
BIN
android/.gradle/2.4/taskArtifacts/fileSnapshots.bin
Normal file
Binary file not shown.
BIN
android/.gradle/2.4/taskArtifacts/outputFileStates.bin
Normal file
BIN
android/.gradle/2.4/taskArtifacts/outputFileStates.bin
Normal file
Binary file not shown.
BIN
android/.gradle/2.4/taskArtifacts/taskArtifacts.bin
Normal file
BIN
android/.gradle/2.4/taskArtifacts/taskArtifacts.bin
Normal file
Binary file not shown.
66
android/app/BUCK
Normal file
66
android/app/BUCK
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
import re
|
||||
|
||||
# To learn about Buck see [Docs](https://buckbuild.com/).
|
||||
# To run your application with Buck:
|
||||
# - install Buck
|
||||
# - `npm start` - to start the packager
|
||||
# - `cd android`
|
||||
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
|
||||
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
|
||||
# - `buck install -r android/app` - compile, install and run application
|
||||
#
|
||||
|
||||
lib_deps = []
|
||||
for jarfile in glob(['libs/*.jar']):
|
||||
name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile)
|
||||
lib_deps.append(':' + name)
|
||||
prebuilt_jar(
|
||||
name = name,
|
||||
binary_jar = jarfile,
|
||||
)
|
||||
|
||||
for aarfile in glob(['libs/*.aar']):
|
||||
name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile)
|
||||
lib_deps.append(':' + name)
|
||||
android_prebuilt_aar(
|
||||
name = name,
|
||||
aar = aarfile,
|
||||
)
|
||||
|
||||
android_library(
|
||||
name = 'all-libs',
|
||||
exported_deps = lib_deps
|
||||
)
|
||||
|
||||
android_library(
|
||||
name = 'app-code',
|
||||
srcs = glob([
|
||||
'src/main/java/**/*.java',
|
||||
]),
|
||||
deps = [
|
||||
':all-libs',
|
||||
':build_config',
|
||||
':res',
|
||||
],
|
||||
)
|
||||
|
||||
android_build_config(
|
||||
name = 'build_config',
|
||||
package = 'com.aretherecookies',
|
||||
)
|
||||
|
||||
android_resource(
|
||||
name = 'res',
|
||||
res = 'src/main/res',
|
||||
package = 'com.aretherecookies',
|
||||
)
|
||||
|
||||
android_binary(
|
||||
name = 'app',
|
||||
package_type = 'debug',
|
||||
manifest = 'src/main/AndroidManifest.xml',
|
||||
keystore = '//android/keystores:debug',
|
||||
deps = [
|
||||
':app-code',
|
||||
],
|
||||
)
|
||||
139
android/app/build.gradle
Normal file
139
android/app/build.gradle
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
apply plugin: "com.android.application"
|
||||
|
||||
import com.android.build.OutputFile
|
||||
|
||||
/**
|
||||
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
|
||||
* and bundleReleaseJsAndAssets).
|
||||
* These basically call `react-native bundle` with the correct arguments during the Android build
|
||||
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
|
||||
* bundle directly from the development server. Below you can see all the possible configurations
|
||||
* and their defaults. If you decide to add a configuration block, make sure to add it before the
|
||||
* `apply from: "../../node_modules/react-native/react.gradle"` line.
|
||||
*
|
||||
* project.ext.react = [
|
||||
* // the name of the generated asset file containing your JS bundle
|
||||
* bundleAssetName: "index.android.bundle",
|
||||
*
|
||||
* // the entry file for bundle generation
|
||||
* entryFile: "index.android.js",
|
||||
*
|
||||
* // whether to bundle JS and assets in debug mode
|
||||
* bundleInDebug: false,
|
||||
*
|
||||
* // whether to bundle JS and assets in release mode
|
||||
* bundleInRelease: true,
|
||||
*
|
||||
* // whether to bundle JS and assets in another build variant (if configured).
|
||||
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
|
||||
* // The configuration property can be in the following formats
|
||||
* // 'bundleIn${productFlavor}${buildType}'
|
||||
* // 'bundleIn${buildType}'
|
||||
* // bundleInFreeDebug: true,
|
||||
* // bundleInPaidRelease: true,
|
||||
* // bundleInBeta: true,
|
||||
*
|
||||
* // the root of your project, i.e. where "package.json" lives
|
||||
* root: "../../",
|
||||
*
|
||||
* // where to put the JS bundle asset in debug mode
|
||||
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
|
||||
*
|
||||
* // where to put the JS bundle asset in release mode
|
||||
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
|
||||
*
|
||||
* // where to put drawable resources / React Native assets, e.g. the ones you use via
|
||||
* // require('./image.png')), in debug mode
|
||||
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
|
||||
*
|
||||
* // where to put drawable resources / React Native assets, e.g. the ones you use via
|
||||
* // require('./image.png')), in release mode
|
||||
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
|
||||
*
|
||||
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
|
||||
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
|
||||
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
|
||||
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
|
||||
* // for example, you might want to remove it from here.
|
||||
* inputExcludes: ["android/**", "ios/**"],
|
||||
*
|
||||
* // override which node gets called and with what additional arguments
|
||||
* nodeExecutableAndArgs: ["node"]
|
||||
*
|
||||
* // supply additional arguments to the packager
|
||||
* extraPackagerArgs: []
|
||||
* ]
|
||||
*/
|
||||
|
||||
apply from: "../../node_modules/react-native/react.gradle"
|
||||
|
||||
/**
|
||||
* Set this to true to create two separate APKs instead of one:
|
||||
* - An APK that only works on ARM devices
|
||||
* - An APK that only works on x86 devices
|
||||
* The advantage is the size of the APK is reduced by about 4MB.
|
||||
* Upload all the APKs to the Play Store and people will download
|
||||
* the correct one based on the CPU architecture of their device.
|
||||
*/
|
||||
def enableSeparateBuildPerCPUArchitecture = false
|
||||
|
||||
/**
|
||||
* Run Proguard to shrink the Java bytecode in release builds.
|
||||
*/
|
||||
def enableProguardInReleaseBuilds = false
|
||||
|
||||
android {
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "23.0.1"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.aretherecookies"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 22
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
ndk {
|
||||
abiFilters "armeabi-v7a", "x86"
|
||||
}
|
||||
}
|
||||
splits {
|
||||
abi {
|
||||
reset()
|
||||
enable enableSeparateBuildPerCPUArchitecture
|
||||
universalApk false // If true, also generate a universal APK
|
||||
include "armeabi-v7a", "x86"
|
||||
}
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled enableProguardInReleaseBuilds
|
||||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
||||
}
|
||||
}
|
||||
// applicationVariants are e.g. debug, release
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.each { output ->
|
||||
// For each separate APK per architecture, set a unique version code as described here:
|
||||
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
|
||||
def versionCodes = ["armeabi-v7a":1, "x86":2]
|
||||
def abi = output.getFilter(OutputFile.ABI)
|
||||
if (abi != null) { // null for the universal-debug, universal-release variants
|
||||
output.versionCodeOverride =
|
||||
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: "libs", include: ["*.jar"])
|
||||
compile "com.android.support:appcompat-v7:23.0.1"
|
||||
compile "com.facebook.react:react-native:+" // From node_modules
|
||||
}
|
||||
|
||||
// Run this once to be able to run the application with BUCK
|
||||
// puts all compile dependencies into folder libs for BUCK to use
|
||||
task copyDownloadableDepsToLibs(type: Copy) {
|
||||
from configurations.compile
|
||||
into 'libs'
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package com.aretherecookies;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "com.aretherecookies";
|
||||
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";
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,30 @@
|
|||
/* 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 = 0x7f010052;
|
||||
public static final int reverseLayout = 0x7f010054;
|
||||
public static final int spanCount = 0x7f010053;
|
||||
public static final int stackFromEnd = 0x7f010055;
|
||||
}
|
||||
public static final class dimen {
|
||||
public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f080045;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int item_touch_helper_previous_elevation = 0x7f0d0005;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] RecyclerView = { 0x010100c4, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055 };
|
||||
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;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,79 @@
|
|||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* aapt tool from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package com.facebook.drawee;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int actualImageScaleType = 0x7f01003a;
|
||||
public static final int actualImageUri = 0x7f010063;
|
||||
public static final int backgroundImage = 0x7f01003b;
|
||||
public static final int fadeDuration = 0x7f01002f;
|
||||
public static final int failureImage = 0x7f010035;
|
||||
public static final int failureImageScaleType = 0x7f010036;
|
||||
public static final int overlayImage = 0x7f01003c;
|
||||
public static final int placeholderImage = 0x7f010031;
|
||||
public static final int placeholderImageScaleType = 0x7f010032;
|
||||
public static final int pressedStateOverlayImage = 0x7f01003d;
|
||||
public static final int progressBarAutoRotateInterval = 0x7f010039;
|
||||
public static final int progressBarImage = 0x7f010037;
|
||||
public static final int progressBarImageScaleType = 0x7f010038;
|
||||
public static final int retryImage = 0x7f010033;
|
||||
public static final int retryImageScaleType = 0x7f010034;
|
||||
public static final int roundAsCircle = 0x7f01003e;
|
||||
public static final int roundBottomLeft = 0x7f010043;
|
||||
public static final int roundBottomRight = 0x7f010042;
|
||||
public static final int roundTopLeft = 0x7f010040;
|
||||
public static final int roundTopRight = 0x7f010041;
|
||||
public static final int roundWithOverlayColor = 0x7f010044;
|
||||
public static final int roundedCornerRadius = 0x7f01003f;
|
||||
public static final int roundingBorderColor = 0x7f010046;
|
||||
public static final int roundingBorderPadding = 0x7f010047;
|
||||
public static final int roundingBorderWidth = 0x7f010045;
|
||||
public static final int viewAspectRatio = 0x7f010030;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int center = 0x7f0d0019;
|
||||
public static final int centerCrop = 0x7f0d001a;
|
||||
public static final int centerInside = 0x7f0d001b;
|
||||
public static final int fitCenter = 0x7f0d001c;
|
||||
public static final int fitEnd = 0x7f0d001d;
|
||||
public static final int fitStart = 0x7f0d001e;
|
||||
public static final int fitXY = 0x7f0d001f;
|
||||
public static final int focusCrop = 0x7f0d0020;
|
||||
public static final int none = 0x7f0d000f;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] GenericDraweeHierarchy = { 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 };
|
||||
public static final int GenericDraweeHierarchy_actualImageScaleType = 11;
|
||||
public static final int GenericDraweeHierarchy_backgroundImage = 12;
|
||||
public static final int GenericDraweeHierarchy_fadeDuration = 0;
|
||||
public static final int GenericDraweeHierarchy_failureImage = 6;
|
||||
public static final int GenericDraweeHierarchy_failureImageScaleType = 7;
|
||||
public static final int GenericDraweeHierarchy_overlayImage = 13;
|
||||
public static final int GenericDraweeHierarchy_placeholderImage = 2;
|
||||
public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3;
|
||||
public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14;
|
||||
public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10;
|
||||
public static final int GenericDraweeHierarchy_progressBarImage = 8;
|
||||
public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9;
|
||||
public static final int GenericDraweeHierarchy_retryImage = 4;
|
||||
public static final int GenericDraweeHierarchy_retryImageScaleType = 5;
|
||||
public static final int GenericDraweeHierarchy_roundAsCircle = 15;
|
||||
public static final int GenericDraweeHierarchy_roundBottomLeft = 20;
|
||||
public static final int GenericDraweeHierarchy_roundBottomRight = 19;
|
||||
public static final int GenericDraweeHierarchy_roundTopLeft = 17;
|
||||
public static final int GenericDraweeHierarchy_roundTopRight = 18;
|
||||
public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21;
|
||||
public static final int GenericDraweeHierarchy_roundedCornerRadius = 16;
|
||||
public static final int GenericDraweeHierarchy_roundingBorderColor = 23;
|
||||
public static final int GenericDraweeHierarchy_roundingBorderPadding = 24;
|
||||
public static final int GenericDraweeHierarchy_roundingBorderWidth = 22;
|
||||
public static final int GenericDraweeHierarchy_viewAspectRatio = 1;
|
||||
public static final int[] SimpleDraweeView = { 0x7f010063 };
|
||||
public static final int SimpleDraweeView_actualImageUri = 0;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* aapt tool from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package com.facebook.drawee.backends.pipeline;
|
||||
|
||||
public final class R {
|
||||
public static final class attr {
|
||||
public static final int actualImageScaleType = 0x7f01003a;
|
||||
public static final int actualImageUri = 0x7f010063;
|
||||
public static final int backgroundImage = 0x7f01003b;
|
||||
public static final int fadeDuration = 0x7f01002f;
|
||||
public static final int failureImage = 0x7f010035;
|
||||
public static final int failureImageScaleType = 0x7f010036;
|
||||
public static final int overlayImage = 0x7f01003c;
|
||||
public static final int placeholderImage = 0x7f010031;
|
||||
public static final int placeholderImageScaleType = 0x7f010032;
|
||||
public static final int pressedStateOverlayImage = 0x7f01003d;
|
||||
public static final int progressBarAutoRotateInterval = 0x7f010039;
|
||||
public static final int progressBarImage = 0x7f010037;
|
||||
public static final int progressBarImageScaleType = 0x7f010038;
|
||||
public static final int retryImage = 0x7f010033;
|
||||
public static final int retryImageScaleType = 0x7f010034;
|
||||
public static final int roundAsCircle = 0x7f01003e;
|
||||
public static final int roundBottomLeft = 0x7f010043;
|
||||
public static final int roundBottomRight = 0x7f010042;
|
||||
public static final int roundTopLeft = 0x7f010040;
|
||||
public static final int roundTopRight = 0x7f010041;
|
||||
public static final int roundWithOverlayColor = 0x7f010044;
|
||||
public static final int roundedCornerRadius = 0x7f01003f;
|
||||
public static final int roundingBorderColor = 0x7f010046;
|
||||
public static final int roundingBorderPadding = 0x7f010047;
|
||||
public static final int roundingBorderWidth = 0x7f010045;
|
||||
public static final int viewAspectRatio = 0x7f010030;
|
||||
}
|
||||
public static final class id {
|
||||
public static final int center = 0x7f0d0019;
|
||||
public static final int centerCrop = 0x7f0d001a;
|
||||
public static final int centerInside = 0x7f0d001b;
|
||||
public static final int fitCenter = 0x7f0d001c;
|
||||
public static final int fitEnd = 0x7f0d001d;
|
||||
public static final int fitStart = 0x7f0d001e;
|
||||
public static final int fitXY = 0x7f0d001f;
|
||||
public static final int focusCrop = 0x7f0d0020;
|
||||
public static final int none = 0x7f0d000f;
|
||||
}
|
||||
public static final class styleable {
|
||||
public static final int[] GenericDraweeHierarchy = { 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 };
|
||||
public static final int GenericDraweeHierarchy_actualImageScaleType = 11;
|
||||
public static final int GenericDraweeHierarchy_backgroundImage = 12;
|
||||
public static final int GenericDraweeHierarchy_fadeDuration = 0;
|
||||
public static final int GenericDraweeHierarchy_failureImage = 6;
|
||||
public static final int GenericDraweeHierarchy_failureImageScaleType = 7;
|
||||
public static final int GenericDraweeHierarchy_overlayImage = 13;
|
||||
public static final int GenericDraweeHierarchy_placeholderImage = 2;
|
||||
public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3;
|
||||
public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14;
|
||||
public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10;
|
||||
public static final int GenericDraweeHierarchy_progressBarImage = 8;
|
||||
public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9;
|
||||
public static final int GenericDraweeHierarchy_retryImage = 4;
|
||||
public static final int GenericDraweeHierarchy_retryImageScaleType = 5;
|
||||
public static final int GenericDraweeHierarchy_roundAsCircle = 15;
|
||||
public static final int GenericDraweeHierarchy_roundBottomLeft = 20;
|
||||
public static final int GenericDraweeHierarchy_roundBottomRight = 19;
|
||||
public static final int GenericDraweeHierarchy_roundTopLeft = 17;
|
||||
public static final int GenericDraweeHierarchy_roundTopRight = 18;
|
||||
public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21;
|
||||
public static final int GenericDraweeHierarchy_roundedCornerRadius = 16;
|
||||
public static final int GenericDraweeHierarchy_roundingBorderColor = 23;
|
||||
public static final int GenericDraweeHierarchy_roundingBorderPadding = 24;
|
||||
public static final int GenericDraweeHierarchy_roundingBorderWidth = 22;
|
||||
public static final int GenericDraweeHierarchy_viewAspectRatio = 1;
|
||||
public static final int[] SimpleDraweeView = { 0x7f010063 };
|
||||
public static final int SimpleDraweeView_actualImageUri = 0;
|
||||
}
|
||||
}
|
||||
1360
android/app/build/generated/source/r/debug/com/facebook/react/R.java
Normal file
1360
android/app/build/generated/source/r/debug/com/facebook/react/R.java
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,10 @@
|
|||
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*
|
||||
* This class was automatically generated by the
|
||||
* aapt tool from the resource data it found. It
|
||||
* should not be modified by hand.
|
||||
*/
|
||||
package com.facebook.soloader;
|
||||
|
||||
public final class R {
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
/* 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 org.webkit.android_jsc;
|
||||
|
||||
public final class R {
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
android/app/build/intermediates/dex/debug/classes.dex
Normal file
BIN
android/app/build/intermediates/dex/debug/classes.dex
Normal file
Binary file not shown.
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2012 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.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="android.support.v7.appcompat" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="7" />
|
||||
|
||||
<application />
|
||||
|
||||
</manifest>
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2012 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.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="android.support.v7.appcompat" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="7" />
|
||||
|
||||
<application />
|
||||
|
||||
</manifest>
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,307 @@
|
|||
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.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.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.SearchView
|
||||
style Widget.AppCompat.SearchView.ActionBar
|
||||
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 dropdownListPreferredItemHeight
|
||||
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 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 middleBarArrowSize
|
||||
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 searchHintIcon
|
||||
attr searchIcon
|
||||
attr searchViewStyle
|
||||
attr selectableItemBackground
|
||||
attr selectableItemBackgroundBorderless
|
||||
attr showAsAction
|
||||
attr showDividers
|
||||
attr showText
|
||||
attr spinBars
|
||||
attr spinnerDropDownItemStyle
|
||||
attr spinnerStyle
|
||||
attr splitTrack
|
||||
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
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_mediumAnimTime" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_fade_in.xml -->
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="@android:integer/config_mediumAnimTime" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_fade_out.xml -->
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/fade_in.xml
|
||||
**
|
||||
** 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.
|
||||
*/
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
|
||||
<scale android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromXScale="0.9" android:toXScale="1.0"
|
||||
android:fromYScale="0.9" android:toYScale="1.0"
|
||||
android:pivotX="50%" android:pivotY="100%"
|
||||
android:duration="@integer/abc_config_activityDefaultDur" />
|
||||
<alpha android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@integer/abc_config_activityShortDur" />
|
||||
</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml -->
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 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.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false" >
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityShortDur" />
|
||||
</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_popup_enter.xml -->
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false" >
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityShortDur" />
|
||||
</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_popup_exit.xml -->
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 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.
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
|
||||
<scale android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromXScale="1.0" android:toXScale="0.9"
|
||||
android:fromYScale="1.0" android:toYScale="0.9"
|
||||
android:pivotX="50%" android:pivotY="100%"
|
||||
android:duration="@integer/abc_config_activityDefaultDur" />
|
||||
<alpha android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="@integer/abc_config_activityShortDur" />
|
||||
</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml -->
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromYDelta="50%p" android:toYDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_in_bottom.xml -->
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromYDelta="-50%p" android:toYDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_in_top.xml -->
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromYDelta="0" android:toYDelta="50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_out_bottom.xml -->
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 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.
|
||||
-->
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromYDelta="0" android:toYDelta="-50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_out_top.xml -->
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_accelerated="false" android:color="@color/background_material_dark" />
|
||||
<item android:color="@android:color/transparent" />
|
||||
</selector>
|
||||
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml -->
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_accelerated="false" android:color="@color/background_material_light" />
|
||||
<item android:color="@android:color/transparent" />
|
||||
</selector>
|
||||
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml -->
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue