Move project
This commit is contained in:
parent
0ee3495390
commit
0114466835
47 changed files with 83 additions and 3 deletions
|
@ -301,7 +301,7 @@ repositories {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(path: ":OsmAnd-java", configuration: "android")
|
compile project(path: ":OsmAnd-java", configuration: "android")
|
||||||
compile project(":design")
|
compile project(":eclipse-compile:design")
|
||||||
compile fileTree(
|
compile fileTree(
|
||||||
dir: "libs",
|
dir: "libs",
|
||||||
include: ["*.jar"],
|
include: ["*.jar"],
|
||||||
|
|
|
@ -13,4 +13,4 @@ split.density=false
|
||||||
target=android-21
|
target=android-21
|
||||||
dex.force.jumbo=true
|
dex.force.jumbo=true
|
||||||
android.library.reference.1=../eclipse-compile/appcompat
|
android.library.reference.1=../eclipse-compile/appcompat
|
||||||
android.library.reference.2=../design
|
android.library.reference.2=../eclipse-compile/design
|
||||||
|
|
1
design/.gitignore
vendored
1
design/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/build
|
|
9
eclipse-compile/design/.classpath
Normal file
9
eclipse-compile/design/.classpath
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" path="src/androidTest/java"/>
|
||||||
|
<classpathentry kind="src" path="gen"/>
|
||||||
|
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||||
|
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||||
|
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||||
|
<classpathentry kind="output" path="bin/classes"/>
|
||||||
|
</classpath>
|
3
eclipse-compile/design/.gitignore
vendored
Normal file
3
eclipse-compile/design/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
/build
|
||||||
|
/R
|
||||||
|
/bin
|
33
eclipse-compile/design/.project
Normal file
33
eclipse-compile/design/.project
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>android-support-design</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
1
eclipse-compile/design/AndroidManifest.xml
Symbolic link
1
eclipse-compile/design/AndroidManifest.xml
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
src/main/AndroidManifest.xml
|
3
eclipse-compile/design/bin/jarlist.cache
Normal file
3
eclipse-compile/design/bin/jarlist.cache
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# cache for current jar dependency. DO NOT EDIT.
|
||||||
|
# format is <lastModified> <length> <SHA-1> <path>
|
||||||
|
# Encoding is UTF-8
|
1
eclipse-compile/design/gen/.gitignore
vendored
Normal file
1
eclipse-compile/design/gen/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/android/
|
|
@ -0,0 +1,6 @@
|
||||||
|
/** Automatically generated file. DO NOT MODIFY */
|
||||||
|
package android.support.design;
|
||||||
|
|
||||||
|
public final class BuildConfig {
|
||||||
|
public final static boolean DEBUG = true;
|
||||||
|
}
|
3
eclipse-compile/design/lint.xml
Normal file
3
eclipse-compile/design/lint.xml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<lint>
|
||||||
|
</lint>
|
16
eclipse-compile/design/project.properties
Normal file
16
eclipse-compile/design/project.properties
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# This file is automatically generated by Android Tools.
|
||||||
|
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||||
|
#
|
||||||
|
# This file must be checked in Version Control Systems.
|
||||||
|
#
|
||||||
|
# To customize properties used by the Ant build system edit
|
||||||
|
# "ant.properties", and override values to adapt the script to your
|
||||||
|
# project structure.
|
||||||
|
#
|
||||||
|
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
|
||||||
|
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||||
|
|
||||||
|
# Project target.
|
||||||
|
target=android-21
|
||||||
|
android.library=true
|
||||||
|
android.library.reference.1=../appcompat
|
1
eclipse-compile/design/res
Symbolic link
1
eclipse-compile/design/res
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
src/main/res/
|
5
eclipse-compile/design/src/main/AndroidManifest.xml
Normal file
5
eclipse-compile/design/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="android.support.design">
|
||||||
|
<uses-sdk android:minSdkVersion="7"/>
|
||||||
|
<application/>
|
||||||
|
</manifest>
|
Loading…
Reference in a new issue