Activities of "masum.ulu"

Can you make ABP (CLI and Suite) version exactly same and try to re-produce error. Because I couldn't produce error. Also what is your project's angular package versions can you please share ?

Hi your question duplicated of https://support.abp.io/QA/Questions/7474/please-help-me-to-connect-abp--react-app-with-microservice-architecture--APIs

Hi, NativeBase theme only using in Open Source side. We've upgrade our theme to react-native-paper and suite is commercial side that's why it'll create with new theme. Please check:

https://youtu.be/-wrdngeKgZw?t=1089

Hi asingh,

We don't have proxy generation for React Native UI with ABP CLI. That's why we suggest that you can use api folder for your service request. You can use smilar request method in IdentityAPI.js or others.

Example

//API.js (This file already exits under the api folder)
import axios from 'axios';
import { getEnvVars } from '../../Environment';

const { apiUrl } = getEnvVars();

const axiosInstance = axios.create({
  baseURL: apiUrl,
  withCredentials: false,
});

export default axiosInstance;


//ProductsAPI.js (Example API js file for service request)

import api from './API';

export const getProducts = () => api.get('/api/app/products').then(({ data }) => data.items);
Answer

Hi ed,

Is it same problem in here ?: https://support.abp.io/QA/Questions/5957/Gdpr-Module-Always-Shows-The-Consent-Even-It-is-accepted

Hi again it's Hedgehog

Hi, this is all info about my emulator

Hi this is related with OpenIddict https://docs.abp.io/en/commercial/latest/modules/openiddict

you need to register your flutter app to OpenId in that way you can enable 2F auth.

Hi, have you add the module to your app-routing.module ? Can you share this file ?

Hi andmattia, Can you please give more info about your solution.

  • What is template type (app | module | microservice) ?
  • Which properties you created on suite ?
  • What is ABP CLI and ABP Suite versions exactly ?
Showing 21 to 30 of 219 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13