commons
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.simplemobiletools</groupId> <artifactId>commons</artifactId> <version>1.0.12</version> </dependency>
<?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.simplemobiletools</groupId> <artifactId>commons</artifactId> <version>1.0.12</version> <packaging>aar</packaging> <name>Simple Commons</name> <description>Some helper functions, dialogs etc used by multiple simple apps.</description> <url>https://github.com/SimpleMobileTools/Simple-Commons</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>tibbi</id> <name>Tibor Kaputa</name> <email>hello@simplemobiletools.com</email> </developer> </developers> <scm> <connection>https://github.com/SimpleMobileTools/Simple-Commons.git</connection> <developerConnection>https://github.com/SimpleMobileTools/Simple-Commons.git</developerConnection> <url>https://github.com/SimpleMobileTools/Simple-Commons</url> </scm> <dependencies> <dependency> <groupId>com.simplemobiletools</groupId> <artifactId>filepicker</artifactId> <version>1.6.1</version> <type>aar</type> <scope>compile</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.android.support</groupId> <artifactId>design</artifactId> <version>25.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.android.support</groupId> <artifactId>appcompat-v7</artifactId> <version>25.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.yukuku</groupId> <artifactId>ambilwarna</artifactId> <version>2.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.0.3</version> <scope>compile</scope> </dependency> </dependencies> </project>