Skip to content

Latest commit

 

History

History

ios-auth

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Firebase iOS Authentication framework

Frameworks required for this pod:

  • FirebaseAuth.framework (from Firebase.zip/FirebaseAuth/FirebaseAuth.xcframework)
  • GTMSessionFetcher.framework (from Firebase.zip/FirebaseAuth/GTMSessionFetcher.xcframework)

Plus ones required for ios-core module:

  • FirebaseCore.framework (from Firebase.zip/FirebaseAnalytics/FirebaseCore.xcframework)
  • FirebaseCoreInternal.framework (from Firebase.zip/FirebaseAnalytics/FirebaseCoreInternal.xcframework)
  • GoogleUtilities.framework (from Firebase.zip/FirebaseAnalytics/GoogleUtilities.xcframework)
  • FBLPromises.framework (from Firebase.zip/FirebaseAnalytics/FBLPromises.xcframework)

to use this pod configure your robovm.xml

<config>
    ...
    <frameworkPaths>
        <path>libs</path>  <!-- path where FirebaseAuth.framework is located -->
    </frameworkPaths>
</config>

Gradle

Add the following dependency to your build.gradle:

repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
   ... other dependencies ...
   implementation "io.github.dkimitsa.robovm:robopods-firebase-auth-ios:$altpodsVersion"
}