Created
October 14, 2016 17:01
-
-
Save chashmeetsingh/8409fbd2f78bf8f1df4053c0cde2a9fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 24 | |
buildToolsVersion "24.0.2" | |
defaultConfig { | |
applicationId "jp.ogwork.freetransform" | |
minSdkVersion 15 | |
targetSdkVersion 24 | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | |
} | |
} | |
} | |
dependencies { | |
compile 'com.android.support:support-v4:24.2.1' | |
compile files('libs/gesturetransformableview.jar') | |
compile files('libs/picasso-2.2.0.jar') | |
compile files('libs/runtime_manager-0.0.0.jar') | |
compile files('libs/tablet_socket-0.0.0.jar') | |
compile files('libs/vehicle_socket-0.0.0.jar') | |
compile 'com.android.support:appcompat-v7:24.2.1' | |
compile project(':circular_library') | |
compile 'com.android.support:percent:24.2.1' | |
} | |
dependencies { | |
compile 'org.ros.android_core:android_15:[0.2,0.3)' | |
compile 'com.github.rosjava.android_extras:gingerbread:[0.2,0.3)' | |
compile 'org.ros.rosjava_messages:tf2_msgs:[0.5,0.6)' | |
} | |
android { | |
packagingOptions { | |
/* https://github.com/rosjava/android_core/issues/194 */ | |
exclude "META-INF/LICENSE.txt" | |
exclude "META-INF/NOTICE.txt" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment