Skip to content

Commit 88abe41

Browse files
committed
1.0.2
1 parent 96ace01 commit 88abe41

File tree

6 files changed

+120
-15
lines changed

6 files changed

+120
-15
lines changed

.classpath

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="src" path="gen"/>
4-
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
5-
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
6-
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
7-
<classpathentry kind="output" path="bin/classes"/>
8-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="gen"/>
4+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
5+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
7+
<classpathentry kind="output" path="bin/classes"/>
8+
</classpath>

.projectset

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<psf version="2.0">
3-
<provider id="org.eclipse.team.svn.core.svnnature">
4-
<project reference="1.0.1,https://github.com/dandar3/android-support-constraint-layout-solver/tags/1.0.0,android-support-constraint-layout-solver,7051cb52324a001d1a54eddc7597ffc3;https://github.com/dandar3/android-support-constraint-layout-solver;https://github.com/dandar3/android-support-constraint-layout-solver;branches;tags;trunk;true;3cfe6302-f2ae-07f1-3bd0-ce57b7db7bff;https://github.com/dandar3/android-support-constraint-layout-solver;;false;;;0"/>
5-
</provider>
6-
</psf>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<psf version="2.0">
3+
<provider id="org.eclipse.team.svn.core.svnnature">
4+
<project reference="1.0.1,https://github.com/dandar3/android-support-constraint-layout-solver/tags/1.0.2,android-support-constraint-layout-solver,7051cb52324a001d1a54eddc7597ffc3;https://github.com/dandar3/android-support-constraint-layout-solver;https://github.com/dandar3/android-support-constraint-layout-solver;branches;tags;trunk;true;3cfe6302-f2ae-07f1-3bd0-ce57b7db7bff;https://github.com/dandar3/android-support-constraint-layout-solver;;false;;;0"/>
5+
</provider>
6+
</psf>

AndroidManifest.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="android.support.constraint" >
3+
package="android.support.constraint"
4+
android:versionCode="102"
5+
android:versionName="1.0.2">
46

57
<application />
68

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## android-support-constraint-layout-solver
2+
3+
Eclipse library project based on:<br/>
4+
https://maven.google.com/com/android/support/constraint/constraint-layout-solver/1.0.2/constraint-layout-solver-1.0.2.jar
5+
6+
**Import:**
7+
- _File > Import... > Team > Team Project Set > URL:_<br/>
8+
https://raw.githubusercontent.com/dandar3/android-support-constraint-layout-solver/1.0.2/.projectset
9+
10+
**Requires:**
11+
- `Android 9 (API 28) SDK Platform`

build.xml

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project name="android-support-constraint-layout-solver" default="help">
3+
4+
<!-- The local.properties file is created and updated by the 'android' tool.
5+
It contains the path to the SDK. It should *NOT* be checked into
6+
Version Control Systems. -->
7+
<property file="local.properties" />
8+
9+
<!-- The ant.properties file can be created by you. It is only edited by the
10+
'android' tool to add properties to it.
11+
This is the place to change some Ant specific build properties.
12+
Here are some properties you may want to change/update:
13+
14+
source.dir
15+
The name of the source directory. Default is 'src'.
16+
out.dir
17+
The name of the output directory. Default is 'bin'.
18+
19+
For other overridable properties, look at the beginning of the rules
20+
files in the SDK, at tools/ant/build.xml
21+
22+
Properties related to the SDK location or the project target should
23+
be updated using the 'android' tool with the 'update' action.
24+
25+
This file is an integral part of the build system for your
26+
application and should be checked into Version Control Systems.
27+
28+
-->
29+
<property file="ant.properties" />
30+
31+
<!-- if sdk.dir was not set from one of the property file, then
32+
get it from the ANDROID_HOME env var.
33+
This must be done before we load project.properties since
34+
the proguard config can use sdk.dir -->
35+
<property environment="env" />
36+
<condition property="sdk.dir" value="${env.ANDROID_HOME}">
37+
<isset property="env.ANDROID_HOME" />
38+
</condition>
39+
40+
<!-- The project.properties file is created and updated by the 'android'
41+
tool, as well as ADT.
42+
43+
This contains project specific properties such as project target, and library
44+
dependencies. Lower level build properties are stored in ant.properties
45+
(or in .classpath for Eclipse projects).
46+
47+
This file is an integral part of the build system for your
48+
application and should be checked into Version Control Systems. -->
49+
<loadproperties srcFile="project.properties" />
50+
51+
<!-- quick check on sdk.dir -->
52+
<fail
53+
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
54+
unless="sdk.dir"
55+
/>
56+
57+
<!--
58+
Import per project custom build rules if present at the root of the project.
59+
This is the place to put custom intermediary targets such as:
60+
-pre-build
61+
-pre-compile
62+
-post-compile (This is typically used for code obfuscation.
63+
Compiled code location: ${out.classes.absolute.dir}
64+
If this is not done in place, override ${out.dex.input.absolute.dir})
65+
-post-package
66+
-post-build
67+
-pre-clean
68+
-->
69+
<import file="custom_rules.xml" optional="true" />
70+
71+
<!-- Import the actual build file.
72+
73+
To customize existing targets, there are two options:
74+
- Customize only one target:
75+
- copy/paste the target into this file, *before* the
76+
<import> task.
77+
- customize it to your needs.
78+
- Customize the whole content of build.xml
79+
- copy/paste the content of the rules files (minus the top node)
80+
into this file, replacing the <import> task.
81+
- customize to your needs.
82+
83+
***********************
84+
****** IMPORTANT ******
85+
***********************
86+
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
87+
in order to avoid having your file be overridden by tools such as "android update project"
88+
-->
89+
<!-- version-tag: 1 -->
90+
<import file="${sdk.dir}/tools/ant/build.xml" />
91+
92+
</project>
93.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)