TheOnlyTails

build.gradle

Sep 10th, 2020
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.ar.sceneform.plugin'
  3.  
  4. android {
  5. compileSdkVersion 30
  6. buildToolsVersion "29.0.3"
  7. defaultConfig {
  8. applicationId "com.example.seagullsar"
  9. minSdkVersion 24
  10. targetSdkVersion 30
  11. versionCode 9
  12. versionName '1.3.1'
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. versionNameSuffix = '-Beta@D'
  15. }
  16.  
  17. compileOptions {
  18. sourceCompatibility 1.8
  19. targetCompatibility 1.8
  20. }
  21. buildTypes {
  22. release {
  23. minifyEnabled false
  24. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25. }
  26. }
  27. }
  28.  
  29. dependencies {
  30. implementation fileTree(dir: 'libs', include: ['*.jar'])
  31. implementation 'androidx.appcompat:appcompat:1.2.0'
  32. implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
  33. implementation 'com.google.firebase:firebase-database:19.4.0'
  34. testImplementation 'junit:junit:4.13'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  37. implementation 'com.github.bumptech.glide:glide:4.11.0'
  38. annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
  39.  
  40. //noinspection GradleDependency
  41. implementation 'com.google.ar.sceneform.ux:sceneform-ux:1.15.0'
  42. implementation 'com.google.android.gms:play-services-location:17.0.0'
  43. }
  44.  
  45.  
  46.  
  47. sceneform.asset('sampledata/ilan/ilan.obj',
  48. 'default',
  49. 'sampledata/ilan/ilan.sfa',
  50. 'src/main/assets/ilan')
  51.  
  52. sceneform.asset('sampledata/ilan2/ilan2.obj',
  53. 'default',
  54. 'sampledata/ilan2/ilan2.sfa',
  55. 'src/main/assets/ilan2')
  56.  
  57. sceneform.asset('sampledata/ilan_final/ilan_final.obj',
  58. 'default',
  59. 'sampledata/ilan_final/ilan_final.sfa',
  60. 'src/main/assets/ilan_final')
  61.  
  62. apply plugin: 'com.google.ar.sceneform.plugin'
  63. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment