mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
more fixes for flutter
This commit is contained in:
parent
1793dd90e8
commit
075bd99075
29
README.md
29
README.md
@ -22,7 +22,9 @@ Running the setup script requires:
|
|||||||
|
|
||||||
You may decide to use Android Studio [here](https://developer.android.com/studio)
|
You may decide to use Android Studio [here](https://developer.android.com/studio)
|
||||||
to maintain your Android dependencies. If so, use the dependency manager
|
to maintain your Android dependencies. If so, use the dependency manager
|
||||||
within your IDE. If you do so, you may skip to
|
within your IDE. If you plan on using Flutter for Veilid development, the Android Studio
|
||||||
|
method is highly recommended as you may run into path problems with the 'flutter'
|
||||||
|
command line without it. If you do so, you may skip to
|
||||||
[Run Veilid setup script](#Run Veilid setup script).
|
[Run Veilid setup script](#Run Veilid setup script).
|
||||||
|
|
||||||
* build-tools;30.0.3
|
* build-tools;30.0.3
|
||||||
@ -62,6 +64,17 @@ pull the remaining Rust dependencies:
|
|||||||
./setup_linux.sh
|
./setup_linux.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Run the veilid-flutter setup script (optional)
|
||||||
|
|
||||||
|
If you are developing Flutter applications or the flutter-veilid portion, you should
|
||||||
|
install Android Studio, and run the flutter setup script:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
cd veilid-flutter
|
||||||
|
./setup_flutter.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### macOS
|
### macOS
|
||||||
|
|
||||||
Development of Veilid on MacOS is possible on both Intel and ARM hardware.
|
Development of Veilid on MacOS is possible on both Intel and ARM hardware.
|
||||||
@ -75,7 +88,9 @@ Development requires:
|
|||||||
|
|
||||||
You may decide to use Android Studio [here](https://developer.android.com/studio)
|
You may decide to use Android Studio [here](https://developer.android.com/studio)
|
||||||
to maintain your Android dependencies. If so, use the dependency manager
|
to maintain your Android dependencies. If so, use the dependency manager
|
||||||
within your IDE. If you do so, you may skip to
|
within your IDE. If you plan on using Flutter for Veilid development, the Android Studio
|
||||||
|
method is highly recommended as you may run into path problems with the 'flutter'
|
||||||
|
command line without it. If you do so, you may skip to
|
||||||
[Run Veilid setup script](#Run Veilid setup script).
|
[Run Veilid setup script](#Run Veilid setup script).
|
||||||
|
|
||||||
* build-tools;30.0.3
|
* build-tools;30.0.3
|
||||||
@ -131,6 +146,16 @@ pull the remaining Rust dependencies:
|
|||||||
./setup_macos.sh
|
./setup_macos.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Run the veilid-flutter setup script (optional)
|
||||||
|
|
||||||
|
If you are developing Flutter applications or the flutter-veilid portion, you should
|
||||||
|
install Android Studio, and run the flutter setup script:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
cd veilid-flutter
|
||||||
|
./setup_flutter.sh
|
||||||
|
```
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|
||||||
**TODO**
|
**TODO**
|
||||||
|
@ -649,7 +649,11 @@ impl Address {
|
|||||||
}
|
}
|
||||||
pub fn is_local(&self) -> bool {
|
pub fn is_local(&self) -> bool {
|
||||||
match self {
|
match self {
|
||||||
Address::IPV4(v4) => ipv4addr_is_private(v4) || ipv4addr_is_link_local(v4),
|
Address::IPV4(v4) => {
|
||||||
|
ipv4addr_is_private(v4)
|
||||||
|
|| ipv4addr_is_link_local(v4)
|
||||||
|
|| ipv4addr_is_ietf_protocol_assignment(v4)
|
||||||
|
}
|
||||||
Address::IPV6(v6) => {
|
Address::IPV6(v6) => {
|
||||||
ipv6addr_is_unicast_site_local(v6)
|
ipv6addr_is_unicast_site_local(v6)
|
||||||
|| ipv6addr_is_unicast_link_local(v6)
|
|| ipv6addr_is_unicast_link_local(v6)
|
||||||
|
@ -86,6 +86,7 @@ cargo {
|
|||||||
targets = ["arm", "arm64", "x86", "x86_64"]
|
targets = ["arm", "arm64", "x86", "x86_64"]
|
||||||
targetDirectory = "../../target"
|
targetDirectory = "../../target"
|
||||||
prebuiltToolchains = true
|
prebuiltToolchains = true
|
||||||
|
pythonCommand = "python3"
|
||||||
profile = gradle.startParameter.taskNames.any{it.toLowerCase().contains("debug")} ? "debug" : "release"
|
profile = gradle.startParameter.taskNames.any{it.toLowerCase().contains("debug")} ? "debug" : "release"
|
||||||
// features {
|
// features {
|
||||||
// defaultAnd("android_tests")
|
// defaultAnd("android_tests")
|
||||||
|
@ -27,7 +27,7 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion flutter.compileSdkVersion
|
compileSdkVersion flutter.compileSdkVersion
|
||||||
|
ndkVersion '22.0.7026061'
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
@ -81,7 +81,7 @@ elif [ "$OS" == "macos" ]; then
|
|||||||
sudo arch -x86_64 gem install cocoapods
|
sudo arch -x86_64 gem install cocoapods
|
||||||
|
|
||||||
# ensure platforms are enabled in flutter
|
# ensure platforms are enabled in flutter
|
||||||
flutter config --enable-macos-desktop --enable-ios --no-enable-android
|
flutter config --enable-macos-desktop --enable-ios --enable-android
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# turn off analytics
|
# turn off analytics
|
||||||
|
Loading…
Reference in New Issue
Block a user