mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-20 23:07:26 -04:00
Code was in https://github.com/mvdan/libaccesspoint Note that this project is **abandoned** since its method doesn't work on Android 7.1 or later. Have a look at these newer alternatives that have been tested to work on Android 8.0: * https://github.com/shinilms/direct-net-share * https://github.com/geekywoman/direct-net-share * https://github.com/aegis1980/WifiHotSpot
16 lines
310 B
Groovy
16 lines
310 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com/' }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
|
}
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com/' }
|
|
}
|
|
}
|