Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.net.Uri;
import android.support.annotation.NonNull;

public class Main {
    public static Uri createProfileUrl(@NonNull final String gplusId) {
        return Uri.parse("https://plus.google.com/" + gplusId);
    }
}