Code Monkey home page Code Monkey logo

Comments (4)

rgolea avatar rgolea commented on August 10, 2024

Ok. I was using the onesignal-cordova-plugin so it was replacing my placeholders. Just had to do the following in my grade files:

buildTypes {
        release {
            ...
            manifestPlaceholders.appAuthRedirectScheme = "com.companyname.appname"
        }
        debug {
            ...
            manifestPlaceholders.appAuthRedirectScheme = "com.companyname.appname"
        }
    }

Was confused afterwards of why it was opening twice (thought the placeholders had something to do with it) but #15 fixed that issue for me.

Would you be so kind to mark in that in the docs? Thank you.

from generic-oauth2.

moberwasserlechner avatar moberwasserlechner commented on August 10, 2024

Hi,

could you be so kind to point me to the right position in the docs.

In which section would you find the info most useful? I only ask because I want to place it somewhere to be obvious for first time users.

thx

from generic-oauth2.

rgolea avatar rgolea commented on August 10, 2024

I would love to see under:

Android

Add customScheme in android/app/build.gradle as well. Without :/.

android.defaultConfig.manifestPlaceholders = [
  'appAuthRedirectScheme': 'com.companyname.appname'
]

The following:

Find in your AndroidManifest.xml file the line
<data android:scheme="@string/custom_url_scheme" />
and change it to
<data android:scheme="@string/custom_url_scheme" android:host="oauth" />

Notice: If your appAuthRedirectScheme doesn't get recognized because you are using a library that replaces it (e.g.: onesignal-cordova-plugin), you will have to add it to your buildTypes like the following:

android.buildTypes.debug.manifestPlaceholders =  [
  'appAuthRedirectScheme': 'com.companyname.appname'
]
android.buildTypes.release.manifestPlaceholders = [
  'appAuthRedirectScheme': 'com.companyname.appname'
]

Thanks a lot for this great module!

from generic-oauth2.

moberwasserlechner avatar moberwasserlechner commented on August 10, 2024

Thanks for this.

from generic-oauth2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.