69
node_modules/cordova-android/spec/fixtures/android_project/AndroidManifest.xml
generated
vendored
Normal file
69
node_modules/cordova-android/spec/fixtures/android_project/AndroidManifest.xml
generated
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
|
||||
Copyright 2013 Anis Kadri
|
||||
|
||||
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" android:windowSoftInputMode="adjustPan"
|
||||
package="com.alunny.childapp" android:versionName="1.1" android:versionCode="5">
|
||||
<supports-screens
|
||||
android:largeScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:smallScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:resizeable="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.RECORD_VIDEO"/>
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
||||
|
||||
<uses-feature android:name="android.hardware.camera" />
|
||||
<uses-feature android:name="android.hardware.camera.autofocus" />
|
||||
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
||||
android:debuggable="true">
|
||||
<activity android:name="ChildApp" android:label="@string/app_name"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name="org.test.DroidGap" android:label="@string/app_name"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
<uses-sdk android:minSdkVersion="5" />
|
||||
</manifest>
|
0
node_modules/cordova-android/spec/fixtures/android_project/assets/www/.gitkeep
generated
vendored
Normal file
0
node_modules/cordova-android/spec/fixtures/android_project/assets/www/.gitkeep
generated
vendored
Normal file
54
node_modules/cordova-android/spec/fixtures/android_project/res/xml/config.xml
generated
vendored
Normal file
54
node_modules/cordova-android/spec/fixtures/android_project/res/xml/config.xml
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you 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.
|
||||
-->
|
||||
<cordova>
|
||||
<!--
|
||||
access elements control the Android whitelist.
|
||||
Domains are assumed blocked unless set otherwise
|
||||
-->
|
||||
|
||||
<access origin="http://127.0.0.1*"/> <!-- allow local pages -->
|
||||
|
||||
<!-- <access origin="https://example.com" /> allow any secure requests to example.com -->
|
||||
<!-- <access origin="https://example.com" subdomains="true" /> such as above, but including subdomains, such as www -->
|
||||
<!-- <access origin=".*"/> Allow all domains, suggested development use only -->
|
||||
|
||||
<log level="DEBUG"/>
|
||||
<preference name="useBrowserHistory" value="false" />
|
||||
<plugins>
|
||||
<plugin name="App" value="org.apache.cordova.App"/>
|
||||
<plugin name="Geolocation" value="org.apache.cordova.GeoBroker"/>
|
||||
<plugin name="Device" value="org.apache.cordova.Device"/>
|
||||
<plugin name="Accelerometer" value="org.apache.cordova.AccelListener"/>
|
||||
<plugin name="Compass" value="org.apache.cordova.CompassListener"/>
|
||||
<plugin name="Media" value="org.apache.cordova.AudioHandler"/>
|
||||
<plugin name="Camera" value="org.apache.cordova.CameraLauncher"/>
|
||||
<plugin name="org.apache.cordova.core.contacts" value="org.apache.cordova.ContactManager"/>
|
||||
<plugin name="File" value="org.apache.cordova.FileUtils"/>
|
||||
<plugin name="NetworkStatus" value="org.apache.cordova.NetworkManager"/>
|
||||
<plugin name="Notification" value="org.apache.cordova.Notification"/>
|
||||
<plugin name="Storage" value="org.apache.cordova.Storage"/>
|
||||
<plugin name="Temperature" value="org.apache.cordova.TempListener"/>
|
||||
<plugin name="FileTransfer" value="org.apache.cordova.FileTransfer"/>
|
||||
<plugin name="Capture" value="org.apache.cordova.Capture"/>
|
||||
<plugin name="Battery" value="org.apache.cordova.BatteryListener"/>
|
||||
<plugin name="SplashScreen" value="org.apache.cordova.SplashScreen"/>
|
||||
</plugins>
|
||||
</cordova>
|
||||
|
0
node_modules/cordova-android/spec/fixtures/android_project/src/.gitkeep
generated
vendored
Normal file
0
node_modules/cordova-android/spec/fixtures/android_project/src/.gitkeep
generated
vendored
Normal file
26
node_modules/cordova-android/spec/fixtures/android_studio_project/app/build.gradle
generated
vendored
Normal file
26
node_modules/cordova-android/spec/fixtures/android_studio_project/app/build.gradle
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "23.0.1"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.example.anis.myapplication"
|
||||
minSdkVersion 21
|
||||
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'])
|
||||
testCompile 'junit:junit:4.12'
|
||||
compile 'com.android.support:appcompat-v7:23.4.0'
|
||||
}
|
17
node_modules/cordova-android/spec/fixtures/android_studio_project/app/proguard-rules.pro
generated
vendored
Normal file
17
node_modules/cordova-android/spec/fixtures/android_studio_project/app/proguard-rules.pro
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# By default, the flags in this file are appended to flags specified
|
||||
# in /Users/anis/opt/android-sdk-macosx/tools/proguard/proguard-android.txt
|
||||
# You can edit the include path and order by changing the proguardFiles
|
||||
# directive in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# Add any project specific keep options here:
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
20
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/AndroidManifest.xml
generated
vendored
Normal file
20
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/AndroidManifest.xml
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.anis.myapplication">
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
<activity android:name=".MainActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
17
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/layout/activity_main.xml
generated
vendored
Normal file
17
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/layout/activity_main.xml
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
android:paddingTop="@dimen/activity_vertical_margin"
|
||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||
tools:context="com.example.anis.myapplication.MainActivity">
|
||||
|
||||
<TextView
|
||||
android:text="Hello World!"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
</RelativeLayout>
|
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-hdpi/ic_launcher.png
generated
vendored
Normal file
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-hdpi/ic_launcher.png
generated
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-mdpi/ic_launcher.png
generated
vendored
Normal file
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-mdpi/ic_launcher.png
generated
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-xhdpi/ic_launcher.png
generated
vendored
Normal file
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-xhdpi/ic_launcher.png
generated
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
generated
vendored
Normal file
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
generated
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
generated
vendored
Normal file
BIN
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
generated
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
6
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values-w820dp/dimens.xml
generated
vendored
Normal file
6
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values-w820dp/dimens.xml
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<resources>
|
||||
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
|
||||
(such as screen margins) for screens with more than 820dp of available width. This
|
||||
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
|
||||
<dimen name="activity_horizontal_margin">64dp</dimen>
|
||||
</resources>
|
6
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/colors.xml
generated
vendored
Normal file
6
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/colors.xml
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#3F51B5</color>
|
||||
<color name="colorPrimaryDark">#303F9F</color>
|
||||
<color name="colorAccent">#FF4081</color>
|
||||
</resources>
|
5
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/dimens.xml
generated
vendored
Normal file
5
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/dimens.xml
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<resources>
|
||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||
</resources>
|
3
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/strings.xml
generated
vendored
Normal file
3
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/strings.xml
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">My Application</string>
|
||||
</resources>
|
11
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/styles.xml
generated
vendored
Normal file
11
node_modules/cordova-android/spec/fixtures/android_studio_project/app/src/main/res/values/styles.xml
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
23
node_modules/cordova-android/spec/fixtures/android_studio_project/build.gradle
generated
vendored
Normal file
23
node_modules/cordova-android/spec/fixtures/android_studio_project/build.gradle
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:2.0.0'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
jcenter()
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
18
node_modules/cordova-android/spec/fixtures/android_studio_project/gradle.properties
generated
vendored
Normal file
18
node_modules/cordova-android/spec/fixtures/android_studio_project/gradle.properties
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# Project-wide Gradle settings.
|
||||
|
||||
# IDE (e.g. Android Studio) users:
|
||||
# Gradle settings configured through the IDE *will override*
|
||||
# any settings specified in this file.
|
||||
|
||||
# For more details on how to configure your build environment visit
|
||||
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
||||
|
||||
# Specifies the JVM arguments used for the daemon process.
|
||||
# The setting is particularly useful for tweaking memory settings.
|
||||
# Default value: -Xmx10248m -XX:MaxPermSize=256m
|
||||
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
||||
|
||||
# When configured, Gradle will run in incubating parallel mode.
|
||||
# This option should only be used with decoupled projects. More details, visit
|
||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||
# org.gradle.parallel=true
|
6
node_modules/cordova-android/spec/fixtures/android_studio_project/gradle/wrapper/gradle-wrapper.properties
generated
vendored
Normal file
6
node_modules/cordova-android/spec/fixtures/android_studio_project/gradle/wrapper/gradle-wrapper.properties
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
#Mon Dec 28 10:00:20 PST 2015
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
|
160
node_modules/cordova-android/spec/fixtures/android_studio_project/gradlew
generated
vendored
Executable file
160
node_modules/cordova-android/spec/fixtures/android_studio_project/gradlew
generated
vendored
Executable file
@@ -0,0 +1,160 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
##############################################################################
|
||||
##
|
||||
## Gradle start up script for UN*X
|
||||
##
|
||||
##############################################################################
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS=""
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
|
||||
warn ( ) {
|
||||
echo "$*"
|
||||
}
|
||||
|
||||
die ( ) {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
esac
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
# Resolve links: $0 may be a link
|
||||
PRG="$0"
|
||||
# Need this for relative symlinks.
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG=`dirname "$PRG"`"/$link"
|
||||
fi
|
||||
done
|
||||
SAVED="`pwd`"
|
||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD="java"
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||
MAX_FD_LIMIT=`ulimit -H -n`
|
||||
if [ $? -eq 0 ] ; then
|
||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||
MAX_FD="$MAX_FD_LIMIT"
|
||||
fi
|
||||
ulimit -n $MAX_FD
|
||||
if [ $? -ne 0 ] ; then
|
||||
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||
fi
|
||||
else
|
||||
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||
fi
|
||||
fi
|
||||
|
||||
# For Darwin, add options to specify how the application appears in the dock
|
||||
if $darwin; then
|
||||
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||
fi
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin ; then
|
||||
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||
|
||||
# We build the pattern for arguments to be converted via cygpath
|
||||
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||
SEP=""
|
||||
for dir in $ROOTDIRSRAW ; do
|
||||
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||
SEP="|"
|
||||
done
|
||||
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||
# Add a user-defined pattern to the cygpath arguments
|
||||
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||
fi
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
i=0
|
||||
for arg in "$@" ; do
|
||||
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||
|
||||
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||
else
|
||||
eval `echo args$i`="\"$arg\""
|
||||
fi
|
||||
i=$((i+1))
|
||||
done
|
||||
case $i in
|
||||
(0) set -- ;;
|
||||
(1) set -- "$args0" ;;
|
||||
(2) set -- "$args0" "$args1" ;;
|
||||
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||
function splitJvmOpts() {
|
||||
JVM_OPTS=("$@")
|
||||
}
|
||||
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||
|
||||
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
90
node_modules/cordova-android/spec/fixtures/android_studio_project/gradlew.bat
generated
vendored
Normal file
90
node_modules/cordova-android/spec/fixtures/android_studio_project/gradlew.bat
generated
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
@if "%DEBUG%" == "" @echo off
|
||||
@rem ##########################################################################
|
||||
@rem
|
||||
@rem Gradle startup script for Windows
|
||||
@rem
|
||||
@rem ##########################################################################
|
||||
|
||||
@rem Set local scope for the variables with windows NT shell
|
||||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
set DEFAULT_JVM_OPTS=
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@rem Find java.exe
|
||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if "%ERRORLEVEL%" == "0" goto init
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:findJavaFromJavaHome
|
||||
set JAVA_HOME=%JAVA_HOME:"=%
|
||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto init
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:init
|
||||
@rem Get command-line arguments, handling Windowz variants
|
||||
|
||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||
|
||||
:win9xME_args
|
||||
@rem Slurp the command line arguments.
|
||||
set CMD_LINE_ARGS=
|
||||
set _SKIP=2
|
||||
|
||||
:win9xME_args_slurp
|
||||
if "x%~1" == "x" goto execute
|
||||
|
||||
set CMD_LINE_ARGS=%*
|
||||
goto execute
|
||||
|
||||
:4NT_args
|
||||
@rem Get arguments from the 4NT Shell from JP Software
|
||||
set CMD_LINE_ARGS=%$
|
||||
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
|
||||
@rem Execute Gradle
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||
|
||||
:fail
|
||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||
rem the _cmd.exe /c_ return code!
|
||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||
exit /b 1
|
||||
|
||||
:mainEnd
|
||||
if "%OS%"=="Windows_NT" endlocal
|
||||
|
||||
:omega
|
1
node_modules/cordova-android/spec/fixtures/android_studio_project/settings.gradle
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/android_studio_project/settings.gradle
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
include ':app'
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/android-resource.xml
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/android-resource.xml
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
./org.test.plugins.dummyplugin/android-resource.xml
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/extra.gradle
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/extra.gradle
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
extra.gradle
|
5
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib/AndroidManifest.xml
generated
vendored
Normal file
5
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib/AndroidManifest.xml
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="1" package="com.test.somelib">
|
||||
<uses-sdk android:minSdkVersion="9"/>
|
||||
<application/>
|
||||
</manifest>
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib/libFile
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib/libFile
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
libFile contents
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib/project.properties
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib/project.properties
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
target=android-11
|
5
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib2/AndroidManifest.xml
generated
vendored
Normal file
5
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib2/AndroidManifest.xml
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="1" package="com.test.somelib">
|
||||
<uses-sdk android:minSdkVersion="9"/>
|
||||
<application/>
|
||||
</manifest>
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib2/libFile
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib2/libFile
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
libFile contents
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib2/project.properties
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin-lib2/project.properties
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
target=android-11
|
75
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin.xml
generated
vendored
Normal file
75
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/plugin.xml
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
|
||||
Copyright 2013 Anis Kadri
|
||||
|
||||
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.
|
||||
|
||||
-->
|
||||
|
||||
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
id="org.test.plugins.dummyplugin"
|
||||
version="0.6.0">
|
||||
|
||||
<!-- new requirement: NO SPACES -->
|
||||
<name>dummyplugin</name>
|
||||
<!-- These are going to be required by plugman-registry -->
|
||||
<description>my description</description>
|
||||
<author>Jackson Badman</author>
|
||||
<keywords>dummy,plugin</keywords>
|
||||
<license>BSD</license>
|
||||
<!-- end plugman-registry requirements -->
|
||||
|
||||
<asset src="www/dummyplugin.js" target="dummyplugin.js" />
|
||||
<asset src="www/dummyplugin" target="dummyplugin" />
|
||||
|
||||
<config-file target="config.xml" parent="/*">
|
||||
<access origin="build.phonegap.com" />
|
||||
<access origin="s3.amazonaws.com" />
|
||||
</config-file>
|
||||
|
||||
<!-- android -->
|
||||
<platform name="android">
|
||||
<config-file target="AndroidManifest.xml" parent="/manifest/application">
|
||||
<activity android:name="DummyPlugin.org.test.plugins.dummyplugin"
|
||||
android:label="@string/app_name">
|
||||
<intent-filter>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</config-file>
|
||||
|
||||
<framework src="plugin-lib" custom="true" />
|
||||
<framework src="plugin-lib2" custom="true" parent="plugin-lib" />
|
||||
<framework src="extras/android/support/v7/appcompat" />
|
||||
<framework src="extra.gradle" type="gradleReference" />
|
||||
<resource-file src="android-resource.xml" target="res/xml/dummy.xml" />
|
||||
|
||||
<!-- CDV < 2.0 -->
|
||||
<config-file target="res/xml/plugins.xml" parent="/plugins">
|
||||
<plugin name="org.test.plugins.dummyplugin"
|
||||
value="DummyPlugin.org.test.plugins.dummyplugin"/>
|
||||
</config-file>
|
||||
|
||||
<!-- CDV 2.0+ (for now) -->
|
||||
<config-file target="res/xml/config.xml" parent="/cordova/plugins">
|
||||
<plugin name="org.test.plugins.dummyplugin"
|
||||
value="DummyPlugin.org.test.plugins.dummyplugin"/>
|
||||
</config-file>
|
||||
|
||||
<source-file src="src/android/DummyPlugin.java"
|
||||
target-dir="src/com/phonegap/plugins/dummyplugin" />
|
||||
<lib-file src="src/android/TestLib.jar" />
|
||||
</platform>
|
||||
</plugin>
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/src/android/DummyPlugin.java
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/src/android/DummyPlugin.java
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
./org.test.plugins.dummyplugin/src/android/DummyPlugin.java
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/src/android/TestLib.jar
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/src/android/TestLib.jar
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
./org.test.plugins.dummyplugin/src/android/TestLib.jar
|
0
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin.js
generated
vendored
Normal file
0
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin.js
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin/image.jpg
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.dummyplugin/www/dummyplugin/image.jpg
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
./org.test.plugins.dummyplugin/www/dummyplugin/image.jpg
|
63
node_modules/cordova-android/spec/fixtures/org.test.plugins.faultyplugin/plugin.xml
generated
vendored
Normal file
63
node_modules/cordova-android/spec/fixtures/org.test.plugins.faultyplugin/plugin.xml
generated
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
|
||||
Copyright 2013 Anis Kadri
|
||||
|
||||
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.
|
||||
|
||||
-->
|
||||
|
||||
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
id="org.test.plugins.faultyplugin"
|
||||
version="0.6.0">
|
||||
|
||||
<name>Faulty Plugin</name>
|
||||
|
||||
<access origin="build.phonegap.com" />
|
||||
<access origin="s3.amazonaws.com" />
|
||||
<!-- file doesn't exist -->
|
||||
|
||||
<config-file target="config.xml" parent="/widget">
|
||||
<asset src="www/main.js" target="faultyplugin/main.js" />
|
||||
<asset src="www/index.js" target="faultyplugin/index.js" />
|
||||
</config-file>
|
||||
|
||||
<!-- android -->
|
||||
<platform name="android">
|
||||
<config-file target="AndroidManifest.xml" parent="/manifest/application">
|
||||
<activity android:name="org.test.plugins.faultyplugin.org.test.plugins.faultyplugin"
|
||||
android:label="@string/app_name">
|
||||
<intent-filter>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</config-file>
|
||||
|
||||
<!-- CDV < 2.0 -->
|
||||
<config-file target="res/xml/plugins.xml" parent="/plugins">
|
||||
<plugin name="org.test.plugins.faultyplugin"
|
||||
value="org.test.plugins.faultyplugin.org.test.plugins.faultyplugin"/>
|
||||
</config-file>
|
||||
|
||||
<!-- CDV 2.0+ (for now) -->
|
||||
<config-file target="res/xml/config.xml" parent="/cordova/plugins">
|
||||
<plugin name="org.test.plugins.faultyplugin"
|
||||
value="org.test.plugins.faultyplugin.org.test.plugins.faultyplugin"/>
|
||||
</config-file>
|
||||
|
||||
<!-- this file doesn't exist -->
|
||||
<source-file src="src/android/NotHere.java"
|
||||
target-dir="src/com/phonegap/plugins/faultyplugin" />
|
||||
</platform>
|
||||
</plugin>
|
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.faultyplugin/src/android/FaultyPlugin.java
generated
vendored
Normal file
1
node_modules/cordova-android/spec/fixtures/org.test.plugins.faultyplugin/src/android/FaultyPlugin.java
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
./org.test.plugins.faultyplugin/src/android/org.test.plugins.faultyplugin.java
|
7
node_modules/cordova-android/spec/fixtures/sdk25.2-android_list_avd.txt
generated
vendored
Normal file
7
node_modules/cordova-android/spec/fixtures/sdk25.2-android_list_avd.txt
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Available Android Virtual Devices:
|
||||
Name: QWR
|
||||
Device: Nexus 5 (Google)
|
||||
Path: /Users/shazron/.android/avd/QWR.avd
|
||||
Target: Android 7.1.1 (API level 25)
|
||||
Tag/ABI: google_apis/x86_64
|
||||
Skin: 1080x1920
|
116
node_modules/cordova-android/spec/fixtures/sdk25.2-android_list_targets.txt
generated
vendored
Normal file
116
node_modules/cordova-android/spec/fixtures/sdk25.2-android_list_targets.txt
generated
vendored
Normal file
@@ -0,0 +1,116 @@
|
||||
Available Android targets:
|
||||
----------
|
||||
id: 1 or "android-20"
|
||||
Name: Android 4.4W.2
|
||||
Type: Platform
|
||||
API level: 20
|
||||
Revision: 2
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : no ABIs.
|
||||
----------
|
||||
id: 2 or "android-21"
|
||||
Name: Android 5.0.1
|
||||
Type: Platform
|
||||
API level: 21
|
||||
Revision: 2
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : android-tv/armeabi-v7a, android-tv/x86, default/armeabi-v7a, default/x86, default/x86_64
|
||||
----------
|
||||
id: 3 or "android-22"
|
||||
Name: Android 5.1.1
|
||||
Type: Platform
|
||||
API level: 22
|
||||
Revision: 2
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : android-tv/armeabi-v7a, android-tv/x86, default/armeabi-v7a, default/x86, default/x86_64
|
||||
----------
|
||||
id: 4 or "android-MNC"
|
||||
Name: Android M (Preview)
|
||||
Type: Platform
|
||||
API level: MNC
|
||||
Revision: 1
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : no ABIs.
|
||||
----------
|
||||
id: 5 or "android-23"
|
||||
Name: Android 6.0
|
||||
Type: Platform
|
||||
API level: 23
|
||||
Revision: 3
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : android-tv/armeabi-v7a, android-tv/x86, default/x86, default/x86_64
|
||||
----------
|
||||
id: 6 or "android-N"
|
||||
Name: Android N (Preview)
|
||||
Type: Platform
|
||||
API level: N
|
||||
Revision: 3
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : no ABIs.
|
||||
----------
|
||||
id: 7 or "android-24"
|
||||
Name: Android 7.0
|
||||
Type: Platform
|
||||
API level: 24
|
||||
Revision: 2
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : android-tv/x86, default/x86, default/x86_64
|
||||
----------
|
||||
id: 8 or "android-25"
|
||||
Name: Android 7.1.1
|
||||
Type: Platform
|
||||
API level: 25
|
||||
Revision: 3
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : android-tv/x86, google_apis/x86, google_apis/x86_64
|
||||
----------
|
||||
id: 9 or "Google Inc.:Google APIs:21"
|
||||
Name: Google APIs
|
||||
Type: Add-On
|
||||
Vendor: Google Inc.
|
||||
Revision: 1
|
||||
Description: Android + Google APIs
|
||||
Based on Android 5.0.1 (API level 21)
|
||||
Libraries:
|
||||
* com.android.future.usb.accessory (usb.jar)
|
||||
API for USB Accessories
|
||||
* com.google.android.media.effects (effects.jar)
|
||||
Collection of video effects
|
||||
* com.google.android.maps (maps.jar)
|
||||
API for Google Maps
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : google_apis/armeabi-v7a, google_apis/x86, google_apis/x86_64
|
||||
----------
|
||||
id: 10 or "Google Inc.:Google APIs:22"
|
||||
Name: Google APIs
|
||||
Type: Add-On
|
||||
Vendor: Google Inc.
|
||||
Revision: 1
|
||||
Description: Android + Google APIs
|
||||
Based on Android 5.1.1 (API level 22)
|
||||
Libraries:
|
||||
* com.android.future.usb.accessory (usb.jar)
|
||||
API for USB Accessories
|
||||
* com.google.android.media.effects (effects.jar)
|
||||
Collection of video effects
|
||||
* com.google.android.maps (maps.jar)
|
||||
API for Google Maps
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : google_apis/armeabi-v7a, google_apis/x86, google_apis/x86_64
|
||||
----------
|
||||
id: 11 or "Google Inc.:Google APIs:23"
|
||||
Name: Google APIs
|
||||
Type: Add-On
|
||||
Vendor: Google Inc.
|
||||
Revision: 1
|
||||
Description: Android + Google APIs
|
||||
Based on Android 6.0 (API level 23)
|
||||
Libraries:
|
||||
* com.android.future.usb.accessory (usb.jar)
|
||||
API for USB Accessories
|
||||
* com.google.android.media.effects (effects.jar)
|
||||
Collection of video effects
|
||||
* com.google.android.maps (maps.jar)
|
||||
API for Google Maps
|
||||
Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, WXGA720, WXGA800, WXGA800-7in
|
||||
Tag/ABIs : google_apis/armeabi-v7a, google_apis/x86, google_apis/x86_64
|
22
node_modules/cordova-android/spec/fixtures/sdk25.3-avdmanager_list_avd.txt
generated
vendored
Normal file
22
node_modules/cordova-android/spec/fixtures/sdk25.3-avdmanager_list_avd.txt
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
Available Android Virtual Devices:
|
||||
Name: nexus5-5.1
|
||||
Device: Nexus 5 (Google)
|
||||
Path: /Users/maj/.android/avd/nexus5-5.1.avd
|
||||
Target: Google APIs
|
||||
Based on: Android 5.1 (Lollipop) Tag/ABI: google_apis/x86_64
|
||||
Skin: 1080x1920
|
||||
Sdcard: 128M
|
||||
---------
|
||||
Name: Pixel_API_25
|
||||
Device: pixel (Google)
|
||||
Path: /Users/maj/.android/avd/Pixel_API_25.avd
|
||||
Target: Google APIs
|
||||
Based on: Android 7.1.1 (Nougat) Tag/ABI: google_apis/x86_64
|
||||
Skin: pixel
|
||||
Sdcard: 100M
|
||||
---------
|
||||
Name: stock51
|
||||
Path: /Users/maj/.android/avd/stock51.avd
|
||||
Target: Default
|
||||
Based on: Android 5.1 (Lollipop) Tag/ABI: default/x86_64
|
||||
Sdcard: 128M
|
7
node_modules/cordova-android/spec/fixtures/sdk25.3-avdmanager_list_target.txt
generated
vendored
Normal file
7
node_modules/cordova-android/spec/fixtures/sdk25.3-avdmanager_list_target.txt
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Available Android targets:
|
||||
----------
|
||||
id: 1 or "android-25"
|
||||
Name: Android API 25
|
||||
Type: Platform
|
||||
API level: 25
|
||||
Revision: 3
|
Reference in New Issue
Block a user