mirror of
https://github.com/emanuele-f/PCAPdroid-mitm.git
synced 2026-06-03 21:01:33 +08:00
Fixes https://github.com/beeware/briefcase/issues/1480 with Python 3.12: No module named 'pip._vendor.six.moves'
21 lines
527 B
Groovy
21 lines
527 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.1.4'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.chaquo.python' version '15.0.1' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |