Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2024-08-08 07:21:51 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4146df6053d7192e7d15610d802209bde0b3dd7c
4146df60
1 parent
f5f4a526
Update Android build settings
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
11 deletions
printing/CHANGELOG.md
printing/android/build.gradle
printing/CHANGELOG.md
View file @
4146df6
...
...
@@ -7,6 +7,7 @@
-
Update package:web
[
Sabin Neupane
]
-
Force the latest version of pdf_widget_wrapper
-
Tighten dependencies
-
Update Android build settings
## 5.13.1
...
...
printing/android/build.gradle
View file @
4146df6
group
'net.nfet.flutter.printing'
version
'1.0'
group
"net.nfet.flutter.printing"
version
"1.0"
buildscript
{
repositories
{
...
...
@@ -8,7 +8,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:4.1.0'
classpath
"com.android.tools.build:gradle:7.3.0"
}
}
...
...
@@ -19,24 +19,25 @@ rootProject.allprojects {
}
}
apply
plugin:
'com.android.library'
apply
plugin:
"com.android.library"
android
{
// Conditional for compatibility with AGP <4.2.
if
(
project
.
android
.
hasProperty
(
"namespace"
))
{
namespace
'net.nfet.flutter.printing'
namespace
=
"net.nfet.flutter.printing"
}
compileSdkVersion
30
compileSdk
=
34
compileOptions
{
sourceCompatibility
JavaVersion
.
VERSION_1_8
targetCompatibility
JavaVersion
.
VERSION_1_8
sourceCompatibility
=
JavaVersion
.
VERSION_1_8
targetCompatibility
=
JavaVersion
.
VERSION_1_8
}
defaultConfig
{
minSdk
Version
16
minSdk
=
21
}
lintOptions
{
disable
'InvalidPackage'
disable
"InvalidPackage"
}
}
...
...
Please
register
or
login
to post a comment