Skip to content

Commit d9f987f

Browse files
agordn52claude
andcommitted
chore(release): bump version to v7.0.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a20404c commit d9f987f

File tree

121 files changed

+2767
-1793
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+2767
-1793
lines changed

.gitignore

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,22 @@ app.*.symbols
3939
# Obfuscation related
4040
app.*.map.json
4141

42+
# Android build artifacts
43+
android/app/.cxx/
44+
45+
# iOS build artifacts
46+
ios/build/
47+
4248
# Exceptions to above rules.
43-
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
49+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
50+
51+
# Node
52+
package-lock.json
53+
54+
# Environment files
55+
.env
56+
lib/bootstrap/env.g.dart
57+
58+
# Claude related
59+
CLAUDE.md
60+
.claude

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Anthony Gordon
3+
Copyright (c) 2026 Anthony Gordon
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ This project is open source and MIT-licenced, we welcome any contributions. You
1616

1717
## Features
1818
Some core features available
19-
* [Routing](https://nylo.dev/docs/6.x/router).
20-
* [Themes and styling](https://nylo.dev/docs/6.x/themes-and-styling).
21-
* [Localization](https://nylo.dev/docs/6.x/localization).
22-
* [CLI for generating project files](https://nylo.dev/docs/6.x/metro).
23-
* [Elegant API Services for Networking](https://nylo.dev/docs/6.x/networking).
24-
* [Creating App Icons](https://nylo.dev/docs/6.x/app-icons).
25-
* [Project Configuration](https://nylo.dev/docs/6.x/configuration).
26-
* [Streamlined Project Structure](https://nylo.dev/docs/6.x/directory-structure).
19+
* [Routing](https://nylo.dev/docs/7.x/router).
20+
* [Themes and styling](https://nylo.dev/docs/7.x/themes-and-styling).
21+
* [Localization](https://nylo.dev/docs/7.x/localization).
22+
* [CLI for generating project files](https://nylo.dev/docs/7.x/metro).
23+
* [Elegant API Services for Networking](https://nylo.dev/docs/7.x/networking).
24+
* [Creating App Icons](https://nylo.dev/docs/7.x/app-icons).
25+
* [Project Configuration](https://nylo.dev/docs/7.x/configuration).
26+
* [Streamlined Project Structure](https://nylo.dev/docs/7.x/directory-structure).
2727

2828
## Requirements
2929
* Flutter >= 3.24.0
@@ -38,7 +38,7 @@ git clone https://github.com/nylo-core/nylo.git
3838
View our [docs](https://nylo.dev/docs) and visit [nylo.dev](https://nylo.dev)
3939

4040
## Changelog
41-
Please see [CHANGELOG](https://github.com/nylo-core/framework/blob/6.x/CHANGELOG.md) for more information what has changed recently.
41+
Please see [CHANGELOG](https://github.com/nylo-core/framework/blob/7.x/CHANGELOG.md) for more information what has changed recently.
4242

4343
## Social
4444
* [Twitter](https://twitter.com/nylo_dev)
@@ -63,11 +63,10 @@ If you discover any security related issues, please email support@nylo.dev inste
6363
* [israelins85](https://github.com/israelins85)
6464
* [voytech-net](https://github.com/voytech-net)
6565
* [sadobass](https://github.com/sadobass)
66-
* [Im-PJ](https://github.com/Im-PJ)
6766

6867
## Contributing
6968

70-
Please see <a href="https://nylo.dev/docs/6.x/contributions" target="_BLANK">CONTRIBUTING</a> for details.
69+
Please see <a href="https://nylo.dev/docs/7.x/contributions" target="_BLANK">CONTRIBUTING</a> for details.
7170

7271
## Licence
7372

android/app/build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (flutterVersionName == null) {
2525
android {
2626
namespace "com.nylo.android"
2727
compileSdk 36
28-
ndkVersion = "29.0.14206865"
28+
ndkVersion = "25.1.8937393"
2929

3030
packagingOptions {
3131
exclude 'META-INF/DEPENDENCIES'
@@ -59,10 +59,6 @@ android {
5959
targetSdkVersion flutter.targetSdkVersion
6060
versionCode flutterVersionCode.toInteger()
6161
versionName flutterVersionName
62-
63-
ndk {
64-
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
65-
}
6662
}
6763

6864
buildTypes {
578 Bytes
Loading
168 Bytes
Loading
1.34 KB
Loading
4.97 KB
Loading
12.1 KB
Loading

assets/app_icon/icon.png

539 KB
Loading

0 commit comments

Comments
 (0)