mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Project structure and project files have been updated to use Android Studio 4.0, gradle and CMake. Redundant OcctJni_Window has been replaced by Aspect_NeutralWindow. SD Card permissions are not dynamically requested for compatibility with Android API level 26+.
18 lines
335 B
Groovy
18 lines
335 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.0.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|