## In your app configuration Amplify Geo is dependent on your Amplify Auth category. If it is not already configured, then you will have to manually configure it as well. In order to manually configure Amplify Geo category, you must edit `amplifyconfiguration.json` in your project's `src/main/res/raw` directory with your information from existing Amazon Cognito and Amazon Location Service resources. ```json { "UserAgent": "aws-amplify-cli/2.0", "Version": "1.0", "geo": { "plugins": { "awsLocationGeoPlugin": { "region": , "maps": { "items": { : { "style": } }, "default": }, "searchIndices": { "items": [ ], "default": } } } }, "auth": { "plugins": { "awsCognitoAuthPlugin": { "UserAgent": "aws-amplify-cli/0.1.0", "Version": "0.1.0", "IdentityManager": { "Default": {} }, "CredentialsProvider": { "CognitoIdentity": { "Default": { "PoolId": , "Region": } } } } } } } ``` Now you can proceed to [displaying a map](/lib-v1/geo/maps) or [adding location search](/lib-v1/geo/search) to your app.