Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
flutter_plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林生雨
flutter_plugin
Commits
f72993a8
Commit
f72993a8
authored
Feb 27, 2020
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
323048b5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
4 deletions
+35
-4
PhotoBitmapUtils.java
...xample/gengmei_flutter_plugin/utils/PhotoBitmapUtils.java
+8
-0
build.gradle
example/android/app/build.gradle
+23
-3
AndroidManifest.xml
example/android/app/src/main/AndroidManifest.xml
+1
-1
build.gradle
example/android/build.gradle
+1
-0
gradle.properties
example/android/gradle.properties
+2
-0
No files found.
android/src/main/kotlin/com/example/gengmei_flutter_plugin/utils/PhotoBitmapUtils.java
0 → 100644
View file @
f72993a8
package
com
.
example
.
gengmei_flutter_plugin
.
utils
;
/**
* @author lsy
* @date 2020-02-26
*/
public
class
PhotoBitmapUtils
{
}
example/android/app/build.gradle
View file @
f72993a8
...
...
@@ -39,7 +39,7 @@ android {
targetSdkVersion
28
versionCode
flutterVersionCode
.
toInteger
()
versionName
flutterVersionName
testInstrumentationRunner
"android
.support
.test.runner.AndroidJUnitRunner"
testInstrumentationRunner
"android
x
.test.runner.AndroidJUnitRunner"
}
...
...
@@ -64,6 +64,25 @@ flutter {
dependencies
{
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation
'junit:junit:4.12'
androidTestImplementation
'com.android.support.test:runner:1.0.2'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
}
configurations
.
all
{
resolutionStrategy
{
resolutionStrategy
.
eachDependency
{
details
->
if
(
details
.
requested
.
group
==
'androidx.core'
)
{
details
.
useVersion
"1.0.1"
}
if
(
details
.
requested
.
group
==
'androidx.lifecycle'
)
{
details
.
useVersion
"2.0.0"
}
if
(
details
.
requested
.
group
==
'androidx.versionedparcelable'
)
{
details
.
useVersion
"1.0.0"
}
if
(
details
.
requested
.
group
==
'androidx.fragment'
)
{
details
.
useVersion
"1.0.0"
}
if
(
details
.
requested
.
group
==
'androidx.appcompat'
)
{
details
.
useVersion
"1.0.1"
}
}
}
}
\ No newline at end of file
example/android/app/src/main/AndroidManifest.xml
View file @
f72993a8
...
...
@@ -36,7 +36,7 @@
</intent-filter>
</activity>
<provider
android:name=
"android
.support.v4
.content.FileProvider"
android:name=
"android
x.core
.content.FileProvider"
android:authorities=
"com.example.gengmei_flutter_plugin_example"
android:exported=
"false"
android:grantUriPermissions=
"true"
>
...
...
example/android/build.gradle
View file @
f72993a8
...
...
@@ -9,6 +9,7 @@ buildscript {
classpath
'com.android.tools.build:gradle:3.2.1'
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects
{
...
...
example/android/gradle.properties
View file @
f72993a8
org.gradle.jvmargs
=
-Xmx1536M
android.enableR8
=
true
android.useAndroidX
=
true
android.enableJetifier
=
true
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment