Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
flutter_wakelock
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
creativecreatorormaybenot
2019-09-25 10:41:35 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
39f0214fb271c14a4842d138b26fa3268f7a4241
39f0214f
1 parent
95c68f0b
0.1.3
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
6 deletions
CHANGELOG.md
android/build.gradle
android/gradle.properties
example/android/app/build.gradle
example/android/build.gradle
example/android/gradle.properties
pubspec.yaml
CHANGELOG.md
View file @
39f0214
## 0.1.3
*
Completed AndroidX migration.
## 0.1.2+8
*
Updated documentation.
...
...
android/build.gradle
View file @
39f0214
...
...
@@ -26,7 +26,7 @@ android {
defaultConfig
{
minSdkVersion
16
testInstrumentationRunner
"android
.support
.test.runner.AndroidJUnitRunner"
testInstrumentationRunner
"android
x
.test.runner.AndroidJUnitRunner"
}
lintOptions
{
disable
'InvalidPackage'
...
...
android/gradle.properties
View file @
39f0214
org.gradle.jvmargs
=
-Xmx1536M
android.useAndroidX
=
true
android.enableJetifier
=
true
...
...
example/android/app/build.gradle
View file @
39f0214
...
...
@@ -38,7 +38,7 @@ android {
targetSdkVersion
28
versionCode
flutterVersionCode
.
toInteger
()
versionName
flutterVersionName
testInstrumentationRunner
"android
.support
.test.runner.AndroidJUnitRunner"
testInstrumentationRunner
"android
x
.test.runner.AndroidJUnitRunner"
}
buildTypes
{
...
...
@@ -56,6 +56,6 @@ flutter {
dependencies
{
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'
androidTestImplementation
'androidx.test:runner:1.1.0'
androidTestImplementation
'androidx.test.espresso:espresso-core:3.1.0'
}
...
...
example/android/build.gradle
View file @
39f0214
...
...
@@ -5,7 +5,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:3.
2.1
'
classpath
'com.android.tools.build:gradle:3.
3.0
'
}
}
...
...
example/android/gradle.properties
View file @
39f0214
org.gradle.jvmargs
=
-Xmx1536M
android.useAndroidX
=
true
android.enableJetifier
=
true
...
...
pubspec.yaml
View file @
39f0214
name
:
wakelock
description
:
This plugin allows you to keep Android and iOS devices awake, i.e. prevent the screen from sleeping by toggling the wakelock of the device on or off.
version
:
0.1.
2+8
version
:
0.1.
3
author
:
creativecreatorormaybenot <19204050+creativecreatorormaybenot@users.noreply.github.com>
homepage
:
https://github.com/creativecreatorormaybenot/wakelock
...
...
Please
register
or
login
to post a comment