Friends, how to find list of 3rd party liberty use...
# android-architecture
g
Friends, how to find list of 3rd party liberty used in my Android app in the android studio
s
Look in your app's build.gradle file to see any explicit dependencies. There's a
dependencies
block. You can get more information by running Gradle's
dependencies
task via
Ctrl
Ctrl
gradle dependencies
g
So external lib and third party lib are same
s
Yeah, third party would be a library written by someone not at your company, e.g. Retrofit, Dagger, OkHttp, Firebase, Facebook Login, etc. Assuming you don't work for one of the companies that wrote those libraries. 🙂
g
Thanks @Stuie