Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
Merge pull request #7 from UrbanCompass/remove-extras
Browse files Browse the repository at this point in the history
Setup Jitpack
  • Loading branch information
Rob Gray committed Mar 6, 2017
2 parents a88df5d + 276c0ab commit ef67bb8
Show file tree
Hide file tree
Showing 15 changed files with 10 additions and 75 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter android-25
- echo y | android update sdk --no-ui --all --filter build-tools-25.1.0
- echo y | android update sdk --no-ui --all --filter build-tools-25.0.2
test:
override:
- ./scripts/test.sh
Expand Down
14 changes: 6 additions & 8 deletions snail-kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'

ext {
PUBLISH_GROUP_ID = 'com.compass.snail'
PUBLISH_ARTIFACT_ID = 'snail'
PUBLISH_VERSION = '0.0.1'
}

group='com.github.urbancompass'

android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "0.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
Expand All @@ -30,12 +32,8 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
testCompile 'junit:junit:4.12'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile 'junit:junit:4.12'
}

apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
20 changes: 2 additions & 18 deletions snail-kotlin/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.compass.snail">
<manifest package="com.compass.snail">

<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>
</manifest>
17 changes: 0 additions & 17 deletions snail-kotlin/src/main/res/layout/activity_main.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 0 additions & 6 deletions snail-kotlin/src/main/res/values-w820dp/dimens.xml

This file was deleted.

6 changes: 0 additions & 6 deletions snail-kotlin/src/main/res/values/colors.xml

This file was deleted.

5 changes: 0 additions & 5 deletions snail-kotlin/src/main/res/values/dimens.xml

This file was deleted.

3 changes: 0 additions & 3 deletions snail-kotlin/src/main/res/values/strings.xml

This file was deleted.

11 changes: 0 additions & 11 deletions snail-kotlin/src/main/res/values/styles.xml

This file was deleted.

0 comments on commit ef67bb8

Please sign in to comment.