Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 16
  6. targetSdkVersion 32
  7. versionCode 20
  8. versionName "1.10.1"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(dir: 'libs', include: ['*.jar'])
  19. testImplementation 'junit:junit:4.12'
  20. }
  21. ext {
  22. // Where you will see your artifact in Bintray's web interface
  23. // The "bintrayName" should match the name of the Bintray repro.
  24. bintrayRepo = 'maven'
  25. bintrayName = 'virtual-joystick-android'
  26. // Maven metadata
  27. publishedGroupId = 'io.github.controlwear'
  28. libraryName = 'virtual-joystick-android'
  29. // Save yourself a head ache, and set this equal to the name of the Android Studio library
  30. // module. The artifact name needs to match the name of the library.
  31. artifact = 'virtualjoystick'
  32. libraryDescription = 'This library provides a very simple and ready-to-use custom view which emulates a joystick for Android.'
  33. libraryVersion = '1.10.1'
  34. developerId = 'makowildcat'
  35. developerName = 'Damien Brun'
  36. developerEmail = 'makowildcat@gmail.com'
  37. }
  38. //apply from: 'https://raw.githubusercontent.com/attwellbrian/JCenter/master/installv1.gradle'
  39. //apply from: 'https://raw.githubusercontent.com/attwellbrian/JCenter/master/bintrayv1.gradle'