Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c48d9bb
[google_maps_flutter] Unregister the activity lifecycle listener on a…
juliocbcotta Jul 26, 2019
96f07ce
[webview_flutter] Add keyboard info to the README (#1910)
Jul 26, 2019
e1350b7
[firebase_crashlytics] Fix Printing, README, Changelog & log FlutterE…
creativecreatorormaybenot Jul 26, 2019
29f6ec4
[cloud_firestore] Update autoId generation to match native implementa…
KevinTheGray Jul 26, 2019
4be6f84
[url_launcher] avoid deprecation warning in guarded code (#1611)
LinusU Jul 26, 2019
e4c9f35
[camera] Dart side of camera API (#1889)
bparrishMines Jul 26, 2019
83134c2
Bump version for release (#1916)
collinjackson Jul 26, 2019
533ee02
[firebase_auth] Update auth methods to return AuthResult instead of F…
collinjackson Jul 28, 2019
7ee7025
[cloud_firestore] Add metadata to QuerySnapshot (#1915)
kroikie Jul 28, 2019
c92d2f2
[firebase_auth] Fixes exceptions when signing in on iOS (#1921)
collinjackson Jul 28, 2019
e4cc600
[cloud_functions] Support for cloud functions emulators (#1887)
DavoBR Jul 28, 2019
e660990
[firebase_auth] fix inconsistency between iOS and Android on Firebase…
long1eu Jul 29, 2019
8b786d4
[cloud_firestore] add support for MetadataChanges (#1918)
long1eu Jul 29, 2019
c92b040
[Image_Picker] Fix example (#1876)
juliocbcotta Jul 29, 2019
2570771
Hide the `origin` attribute of constructor for now. (#1922)
collinjackson Jul 29, 2019
57201c9
[image_picker] image picker memory leak fix on Android (#1893)
juliocbcotta Jul 29, 2019
aa2214d
[firebase_auth] Fixes for iOS auth crash on failed sign-in (#1928)
collinjackson Jul 29, 2019
f32472b
update README (#1924)
collinjackson Jul 29, 2019
270170b
[firebase_auth] update getIdTokenResult to IdResultToken (#1871)
Jul 29, 2019
4c6b10e
[Image_Picker] Use cache instance on Android (#1877)
juliocbcotta Jul 29, 2019
5814e2a
[video_player] [iOS] Fixed a memory leak in the video player plugin. …
shihchanghsiungsonos Jul 29, 2019
8030246
[firebase-crashlytics] Fixes exception when trying to format crash re…
josh-burton Jul 30, 2019
153e5b6
[image_picker] New feature : pick images with image quality (#1896)
AmolGangadhare Jul 30, 2019
abf5d52
Fix annotation dependency (#1917)
Jul 30, 2019
374a35a
[in_app_purchase] In app purchase ios price locale currency code (#1888)
catacs Jul 31, 2019
e0eaed3
[google_sign_in] Fixes PlataformException leaking in debug mode (#373…
feinstein Aug 1, 2019
0472d05
Enable --stacktrace by default for the Android all_plugins example (#…
collinjackson Aug 1, 2019
b120e92
[url_launcher] Split Activity and plugin files (#1936)
juliocbcotta Aug 2, 2019
016637f
[firebase_storage] Remove StorageTaskEvent prints (#1944)
creativecreatorormaybenot Aug 4, 2019
3606d15
[local_auth] Add Face Unlock support for Android (#1940)
mehmetf Aug 5, 2019
d76044f
Add new generated file to .gitignore (#1948)
Aug 5, 2019
90ae242
[firebase_inappmessaging] update AGP, gradle and inappmessaging-displ…
juliocbcotta Aug 6, 2019
b2c1c74
[Firebase Analytics] Update AGP, remove deprecated method and remove …
juliocbcotta Aug 6, 2019
230c53f
[camera] Refactor Camera/Android implementation to allow reuse of Cam…
mehmetf Aug 6, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
.pub/
.dart_tool/
pubspec.lock
flutter_export_environment.sh

examples/all_plugins/pubspec.yaml

Expand Down
2 changes: 2 additions & 0 deletions examples/all_plugins/android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
gradle.startParameter.showStacktrace = org.gradle.api.logging.configuration.ShowStacktrace.ALWAYS

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
Expand Down
2 changes: 2 additions & 0 deletions examples/all_plugins/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
gradle.startParameter.showStacktrace = org.gradle.api.logging.configuration.ShowStacktrace.ALWAYS

buildscript {
repositories {
google()
Expand Down
5 changes: 5 additions & 0 deletions packages/camera/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ android {
lintOptions {
disable 'InvalidPackage'
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
dependencies {
implementation 'androidx.annotation:annotation:1.0.0'
implementation 'androidx.core:core:1.0.0'
}
}
Loading