Skip to content

Instantly share code, notes, and snippets.

@miguelcardo
Last active September 17, 2022 12:11
Show Gist options
  • Save miguelcardo/dd10c32f392890fcbf0d to your computer and use it in GitHub Desktop.
Save miguelcardo/dd10c32f392890fcbf0d to your computer and use it in GitHub Desktop.
Dependencies in the Hello Fidesmo! app
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.7'
}
}
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
buildToolsVersion '23.0.1'
compileSdkVersion 23
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
}
}
repositories {
mavenCentral()
maven {
url 'http://releases.marmeladburk.fidesmo.com'
}
}
def AAVersion = '3.3.2'
dependencies {
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
compile group: 'com.fidesmo', name: 'nordpol-android', version: '0.1.7', ext: 'aar', transitive: true
compile fileTree(dir: 'libs', include: '*.jar')
compile "com.android.support:appcompat-v7:23.0.1"
}
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName 'com.fidesmo.tutorials.hellofidesmo'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment