build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (C) 2011 Google Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. dependencies {
  17. compile "org.ros.rosjava_core:rosjava:[0.3.2,0.4)"
  18. compile "org.ros.rosjava_messages:diagnostic_msgs:[1.12,1.13)"
  19. compile "org.ros.rosjava_messages:sensor_msgs:[1.12,1.13)"
  20. compile 'org.ros.rosjava_core:rosjava_geometry:[0.3,0.4)'
  21. compile 'org.ros.rosjava_messages:visualization_msgs:[1.12,1.13)'
  22. compile "com.android.support:appcompat-v7:28.0.0"
  23. compile 'com.android.support:support-v4:28.0.0'
  24. }
  25. apply plugin: "com.android.library"
  26. android {
  27. compileSdkVersion 28
  28. defaultConfig {
  29. minSdkVersion 16
  30. targetSdkVersion 28
  31. versionCode 1
  32. versionName "1.0"
  33. }
  34. }