I hereby claim:
- I am aakashns on github.
- I am aakashns (https://keybase.io/aakashns) on keybase.
- I have a public key whose fingerprint is 3E0D D672 AA31 F260 B8EE A17B A8DD A142 719A 26A9
To claim this, I am signing this object:
| #! /usr/bin/env python | |
| # Simple command script to download and add Google Material | |
| # Design Icons ( https://www.google.com/design/icons/ ) to | |
| # to your Android project. | |
| # 'gmid' stands for 'Google Material Icons Downloader' | |
| import sys | |
| import os |
| import requests | |
| from bs4 import BeautifulSoup | |
| from subprocess import call | |
| import sys | |
| # Script to download and decompile an apk using the package name. | |
| # Install the jadx decompiler before running this. | |
| # | |
| # JADX installation : | |
| # $ git clone https://github.com/skylot/jadx.git |
I hereby claim:
To claim this, I am signing this object:
| $ npm install react-native-cli@latest | |
| $ react-native init ReactMusic |
| import React, { Component } from 'react'; | |
| import { | |
| View, | |
| Text, | |
| } from 'react-native'; | |
| export default class App extends Component { | |
| render() { | |
| return ( |
| package in.swiftace.firekit; | |
| import android.content.Intent; | |
| import android.os.AsyncTask; | |
| import android.support.annotation.NonNull; | |
| import com.facebook.accountkit.AccountKitLoginResult; | |
| import com.google.android.gms.tasks.OnFailureListener; | |
| import com.google.android.gms.tasks.OnSuccessListener; | |
| import com.google.firebase.auth.AuthResult; |
| import org.json.JSONException; | |
| import org.json.JSONObject; | |
| import java.io.IOException; | |
| import java.lang.annotation.Annotation; | |
| import java.lang.reflect.Type; | |
| import okhttp3.ResponseBody; | |
| import retrofit2.Converter; | |
| import retrofit2.Retrofit; |
| import android.content.pm.PackageManager; | |
| import android.os.Build; | |
| /** | |
| * {@link PermissionHandler} provides a simple API to request Android permissions | |
| * at runtime. The class exposes one static method: {@link #request} which the | |
| * requesting activity should call to request or check for permission. The requesting | |
| * activity must implement {@link PermissionActivity}. | |
| */ | |
| public class PermissionHandler { |
I hereby claim:
To claim this, I am signing this object:
| import { createStore } from 'redux'; | |
| const reducer = (state = {}, action) => { | |
| switch(action.type) { | |
| case 'SET_MESSAGE': | |
| return { | |
| ...state, | |
| message: action.payload | |
| }; | |
| // Handle other actions here |