Skip to content
android logo

Android

Android was designed and built by Google in 2008. The operating system is written mainly in Java, with core components in C and C++. It is built on top of the Linux kernel, giving it incorporated security benefits.

Here are 58,241 public repositories matching this topic...

flutter
ivanryndyuk
ivanryndyuk commented Sep 30, 2019

Issue Description

Method Future<LatLng> getLatLng(ScreenCoordinate screenCoordinate) returns different results for the same ScreenCoordinate on iOS and Android.

Steps to Reproduce

  1. Add GoogleMap widget filling entire device screen.
  2. Set initialCameraPosition.target to (lat; lng) coordinates.
  3. Retrieve GoogleMapController in onMapCreated handler.
  4. In onCameraIdle
swankjesse
swankjesse commented Feb 19, 2019

Stuff like:

  • HTTP caching heuristics source?
  • what it means if cacheResponse() and networkResponse() are both non-null (issue #4539)
  • why you need to read the entire response before an entry is stored
  • the cache must not compete with other processes for the same directory
  • pruning the cache manually
leakcanary
lannyf77
lannyf77 commented Aug 26, 2019

https://square.github.io/leakcanary/upgrading-to-leakcanary-2.0/
says now it does not have leakcanary-android-no-op but only:

dependencies {
  debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.0-beta-3'
}

in our app with 1.6.3 we have

//leakcanary
deps.leakcanary = "com.squareup.leakcanary:leakcanary-android:1.6.3"
deps.leakcanary_no_op = "com.squareup.l
iRoachie
iRoachie commented Oct 7, 2019

We've recently updated our github workflow to have 3 branches:

master - current version on npm that's live
next - upcoming features and changes
patch - bug fixes (usually released within a day)

We should update the contributing section on the website and maybe .github/CONTRIBUTING.md to let users know which branch they should base their changes on if they want to make a pull request.

You can’t perform that action at this time.