- Add the API key to your
local.propertiesfile:
apiKey=<value>- Add to the root level of your app-level
build.gradlefile:
| /** | |
| 2) Add interface to your project. If your Realm object implement this interface all child objects will be deleted | |
| after call deleteCascade. If interface not implemented this function delete Realm object but don't delete child objects. | |
| */ | |
| public interface IRealmCascade { | |
| } |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.graphics.Rect; | |
| import android.view.View; | |
| import android.view.inputmethod.InputMethodManager; | |
| public class KeyboardUtils { | |
| public static void hideKeyboard(Activity activity) { | |
| View view = activity.findViewById(android.R.id.content); |
| # This file contains the fastlane.tools configuration | |
| # You can find the documentation at https://docs.fastlane.tools | |
| # | |
| # For a list of all available actions, check out | |
| # | |
| # https://docs.fastlane.tools/actions | |
| # | |
| # Uncomment the line if you want fastlane to automatically update itself | |
| # update_fastlane |
| /** | |
| * (C) Copyright 2018 Paulo Vitor Sato Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |