Skip to content

Commit

Permalink
Move PircBot to its own gradle module. Fixes #189.
Browse files Browse the repository at this point in the history
  • Loading branch information
pocmo committed Oct 9, 2015
1 parent 2b608f5 commit 44208da
Show file tree
Hide file tree
Showing 20 changed files with 58 additions and 354 deletions.
2 changes: 2 additions & 0 deletions app/build.gradle
Expand Up @@ -23,4 +23,6 @@ dependencies {
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.0.1'

compile project(':pircbot')
}
348 changes: 0 additions & 348 deletions app/src/main/java/org/yaaic/tools/Base64.java

This file was deleted.

25 changes: 25 additions & 0 deletions pircbot/build.gradle
@@ -0,0 +1,25 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
}

0 comments on commit 44208da

Please sign in to comment.