upload android base code part16
This commit is contained in:
parent
3c17267bcc
commit
257525d2b2
2453 changed files with 14355 additions and 0 deletions
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
6da6d8d4f1554196599bcb76896b3393
|
|
@ -0,0 +1 @@
|
|||
5fc52c41ef0239d1093a1eb7c3697036183677ce
|
|
@ -0,0 +1,247 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>2.3</version>
|
||||
<inceptionYear>2008</inceptionYear>
|
||||
<name>Gson</name>
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>9</version>
|
||||
</parent>
|
||||
<url>http://code.google.com/p/google-gson/</url>
|
||||
<description>Google Gson library</description>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<connection>scm:svn:http://google-gson.googlecode.com/svn/tags/gson-2.3</connection>
|
||||
<developerConnection>scm:svn:https://google-gson.googlecode.com/svn/tags/gson-2.3</developerConnection>
|
||||
<url>http://google-gson.googlecode.com/svn/tags/gson-2.3</url>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>Google Code Issue Tracking</system>
|
||||
<url>http://code.google.com/p/google-gson/issues/list</url>
|
||||
</issueManagement>
|
||||
<distributionManagement>
|
||||
<snapshotRepository>
|
||||
<id>sonatype-nexus-snapshots</id>
|
||||
<name>Sonatype Nexus Snapshots</name>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||
</snapshotRepository>
|
||||
<repository>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<name>Nexus Release Repository</name>
|
||||
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
<organization>
|
||||
<name>Google, Inc.</name>
|
||||
<url>http://www.google.com</url>
|
||||
</organization>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<profiles>
|
||||
<!-- Activate PGP signing only when performing a release -->
|
||||
<profile>
|
||||
<id>release-sign-artifacts</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>performRelease</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>doclint-java8-disable</id>
|
||||
<activation>
|
||||
<jdk>[1.8,</jdk>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<build>
|
||||
<defaultGoal>package</defaultGoal>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.1</version>
|
||||
<configuration>
|
||||
<source>1.5</source>
|
||||
<target>1.5</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<archive>
|
||||
<addMavenDescriptor>false</addMavenDescriptor>
|
||||
<manifestEntries>
|
||||
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
|
||||
<Export-Package><![CDATA[com.google.gson;version=${project.version}, com.google.gson.annotations;version=${project.version}, com.google.gson.reflect;version=${project.version}, com.google.gson.stream;version=${project.version}, com.google.gson.internal;version=${project.version}, com.google.gson.internal.bind;version=${project.version}]]></Export-Package>
|
||||
<Bundle-Version>${project.version}</Bundle-Version>
|
||||
<Bundle-ContactAddress>http://code.google.com/p/google-gson/</Bundle-ContactAddress>
|
||||
<Bundle-Vendor>Google Gson Project</Bundle-Vendor>
|
||||
<Bundle-Name>${project.name}</Bundle-Name>
|
||||
<Bundle-Description>${project.description}</Bundle-Description>
|
||||
<Bundle-ClassPath>.</Bundle-ClassPath>
|
||||
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
||||
<Bundle-SymbolicName>com.google.gson</Bundle-SymbolicName>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- TODO(inder): add manifest entry for maven group, artifact, and classifier ids -->
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
<Eclipse-SourceBundle>com.google.gson;version="${project.version}"</Eclipse-SourceBundle>
|
||||
<Bundle-SymbolicName>com.google.gson.source</Bundle-SymbolicName>
|
||||
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
|
||||
<Bundle-Version>${project.version}</Bundle-Version>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- TODO(inder): add manifest entry for maven group, artifact, and classifier ids -->
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<includePackageNames>com.google.gson</includePackageNames>
|
||||
<excludePackageNames>com.google.gson.internal:com.google.gson.internal.bind</excludePackageNames>
|
||||
<links>
|
||||
<link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
|
||||
</links>
|
||||
<version>true</version>
|
||||
<show>protected</show>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<version>2.9</version>
|
||||
<configuration>
|
||||
<downloadSources>true</downloadSources>
|
||||
<downloadJavadocs>true</downloadJavadocs>
|
||||
<workspace>
|
||||
../eclipse-ws/
|
||||
</workspace>
|
||||
<workspaceCodeStylesURL>
|
||||
file:///${basedir}/../lib/gson-formatting-styles.xml
|
||||
</workspaceCodeStylesURL>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<!-- version>2.5</version -->
|
||||
<configuration>
|
||||
<arguments>-DenableCiProfile=true</arguments>
|
||||
<tagBase>https://google-gson.googlecode.com/svn/tags</tagBase>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.4.1</version>
|
||||
<configuration>
|
||||
<descriptor>assembly-descriptor.xml</descriptor>
|
||||
<finalName>google-gson-${project.version}</finalName>
|
||||
<outputDirectory>target/dist</outputDirectory>
|
||||
<workDirectory>target/assembly/work</workDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Inderjeet Singh</name>
|
||||
<organization>Trymph Inc.</organization>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Joel Leitch</name>
|
||||
<organization>Google Inc.</organization>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Jesse Wilson</name>
|
||||
<organization>Square Inc.</organization>
|
||||
</developer>
|
||||
</developers>
|
||||
</project>
|
||||
|
|
@ -0,0 +1 @@
|
|||
87a568aecb9d712276f12ba36bf6e637
|
|
@ -0,0 +1 @@
|
|||
9bdcf3053cba435cadc5fa575cc835429a0fb0c2
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<versioning>
|
||||
<release>2.3</release>
|
||||
<versions>
|
||||
<version>2.3</version>
|
||||
</versions>
|
||||
<lastUpdated>20170705173047</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
|
@ -0,0 +1 @@
|
|||
23b4911b3437c2af9415745d049ab3dc
|
|
@ -0,0 +1 @@
|
|||
bef8e73b603653292786157d4e24d287efa57285
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
9cbf57e93b4d35437e76714e60123ad3
|
|
@ -0,0 +1 @@
|
|||
ecba081a44655ba69cbdf35f4a405cb16a08fb7b
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
8736a660b04d85ebdc8b9348a3c6d821
|
|
@ -0,0 +1 @@
|
|||
b28d28cf0250a25ecc3f890aea54096b654ae1ab
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.3.0-beta1</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.3.0-beta1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
38ac240cc7f38573eb5a1084604b30d5
|
|
@ -0,0 +1 @@
|
|||
225c65b753af13f3f37e0b37ea568339065b434c
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
d0ead5df43bf617321b285abb8dc3ba7
|
|
@ -0,0 +1 @@
|
|||
9363ad2844e2e85712c26fb16b0cd628b5f2d996
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
ec7903ceb51ed23ab7de14b34d019634
|
|
@ -0,0 +1 @@
|
|||
140ad10e16854859f03a4fdfe3b7b269d8be7661
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.3.0-beta2</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.3.0-beta2</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
09ba40782e93bedb4abb362b46001d1a
|
|
@ -0,0 +1 @@
|
|||
11a21482c7892881089cb2e144a167ddd5f432d1
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
3ecef1718142278bfa37c15a993ea2a9
|
|
@ -0,0 +1 @@
|
|||
7f6ea2a98e172d33085b385338f11b56e6f4ab4b
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
45537d199bab393c6b4e9d730ac4dc86
|
|
@ -0,0 +1 @@
|
|||
069305e257e52d751b8c6c3b7d18d7eb040a5a92
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.3.0-beta3</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.3.0-beta3</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
ca4e327857480e7b3a3d7250bfd424a0
|
|
@ -0,0 +1 @@
|
|||
4470ca5ec3c7e3c4e1091c43eda1e634f672bfcc
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
83d347e1168b91a8f18496405b2da6a4
|
|
@ -0,0 +1 @@
|
|||
044437f33a9ebb7a1c0c2e271938f8d91ea825bd
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
2148c69dee20b73ed394c4a45bf5c89d
|
|
@ -0,0 +1 @@
|
|||
24926ee959fdd721c4bcc28b9a7af95752dec603
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.3.0-beta4</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.3.0-beta4</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
bd7a35a6165ad7ee6896322255bf89b6
|
|
@ -0,0 +1 @@
|
|||
044bf44d3ae90710650634d3baaceaa5b6d387e8
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
3e448c3f7272065a3791f903223f498a
|
|
@ -0,0 +1 @@
|
|||
1138af97d7a2e0f6f4c59b6fdcdff5f2cfe0a90d
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
11ea574b94216619b80a315891ecc6ec
|
|
@ -0,0 +1 @@
|
|||
f284f454c92cf62a39f1ce9f862d43c82c1eb4d5
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.3.1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
38a8e82c66b45effeaa457cf6313c41f
|
|
@ -0,0 +1 @@
|
|||
3c14ed5551a7908da0e0f50ab162670d0d87f54c
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
d43df97fe752a3df72d73c191bb8b572
|
|
@ -0,0 +1 @@
|
|||
7e001786019d3283fd719d085cb6da13c5cc5bd5
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
fe8883d3bf55cc818ec6d439a8d5ac89
|
|
@ -0,0 +1 @@
|
|||
286ed9ef19f618d6c0ea47694a584fa0c9b456ec
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.4.0-alpha1</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.4.0-alpha1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
0d8efeb62289f86d052b42372bfcfa6b
|
|
@ -0,0 +1 @@
|
|||
ba3d64a6366813fac65b36d1f10d5eb63e8677d5
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
7c4a7dca62035e2878a56f0e9b6306b5
|
|
@ -0,0 +1 @@
|
|||
8667f48c8b2305c5fb7ad6594735f0526095fee3
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
34b276e4c476ba75df8651f4f2d642c3
|
|
@ -0,0 +1 @@
|
|||
1608a8cc479a969e4f2051850ed58639eda27602
|
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.4.0-beta3</version>
|
||||
<name>Gradle Plug-in for Google Services</name>
|
||||
<description>Gradle plug-in for Google Services</description>
|
||||
<url>http://tools.android.com</url>
|
||||
<inceptionYear>2007</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>The Android Open Source Project</name>
|
||||
</developer>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection>git://android.googlesource.com/platform/tools/base.git</connection>
|
||||
<url>https://android.googlesource.com/platform/tools/base</url>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.4.0-beta3</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
a0aa66ff9fc87c6e5e73b2e58b09041b
|
|
@ -0,0 +1 @@
|
|||
de41a2598d5abb3a77f2da389884cd4f172b14d2
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
1ed20febf5e5d40d9659ba818a9e4692
|
|
@ -0,0 +1 @@
|
|||
e0acdfbf917f8946ffe8406f28afe82f64cc19a0
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
273ce623484a3bac56b3c3c631cce2f7
|
|
@ -0,0 +1 @@
|
|||
51a62191a822ce3648db77fd93d1ddeb7b5ddff6
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.4.0-beta5</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.4.0-beta5</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
ef89cb3453b44ca587a5a9adce0e9607
|
|
@ -0,0 +1 @@
|
|||
a0db6090f2b3064e88edfe8a8e4b7cd948bac025
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
e84886e4a96c01f72c244e0e79c65279
|
|
@ -0,0 +1 @@
|
|||
9f71b218ca2e3ff16d6c865950a2b3e443ea6ac0
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
009e9b92473230c8d91f5a7eeebaa314
|
|
@ -0,0 +1 @@
|
|||
a1df5aad763bd1aa2abc778f93b2daeb1f49bdd2
|
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.4.0-beta6</version>
|
||||
<name>Gradle Plug-in for Google Services</name>
|
||||
<description>Gradle plug-in for Google Services</description>
|
||||
<url>http://tools.android.com</url>
|
||||
<inceptionYear>2007</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>The Android Open Source Project</name>
|
||||
</developer>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection>git://android.googlesource.com/platform/tools/base.git</connection>
|
||||
<url>https://android.googlesource.com/platform/tools/base</url>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.4.0-beta6</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
6a7ee6eb2152a241796e105e3bf00e86
|
|
@ -0,0 +1 @@
|
|||
335b8c3e429e50328b0a5bc0d409a42c8f2d8212
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
f0cad271d1fe2e7c65677f96cc032908
|
|
@ -0,0 +1 @@
|
|||
cecb88d912f13ff847cb57d2c7fa6fbf3e2034fc
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
f3437b9650d3863cdf8086812163b639
|
|
@ -0,0 +1 @@
|
|||
26cf55755b2c9e09c79f6be996d065f86059e59e
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
dfdf42a669722e75779ee5d23875637e
|
|
@ -0,0 +1 @@
|
|||
826b94a67b6b5f8743d56b789573f952b64ecc3f
|
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.gms</groupId>
|
||||
<artifactId>google-services</artifactId>
|
||||
<version>1.5.0</version>
|
||||
<name>Gradle Plug-in for Google Services</name>
|
||||
<description>Gradle plug-in for Google Services</description>
|
||||
<url>http://tools.android.com</url>
|
||||
<inceptionYear>2007</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>The Android Open Source Project</name>
|
||||
</developer>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection>git://android.googlesource.com/platform/tools/base.git</connection>
|
||||
<url>https://android.googlesource.com/platform/tools/base</url>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.android.tools.build</groupId>
|
||||
<artifactId>gradle</artifactId>
|
||||
<version>1.5.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue