This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Version implements Comparable<Version> { | |
| @NonNull | |
| public final int[] numbers; | |
| public Version(@NonNull String version) { | |
| final String split[] = version.split("\\-")[0].split("\\."); | |
| numbers = new int[split.length]; | |
| for (int i = 0; i < split.length; i++) { | |
| numbers[i] = Integer.valueOf(split[i]); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package testjava; | |
| import java.util.HashMap; | |
| import java.util.Random; | |
| /* | |
| * URL Shortener | |
| */ | |
| public class URLShortener { | |
| // storage for generated keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.app.Activity; | |
| import android.app.Application; | |
| import android.content.Context; | |
| import android.content.ContextWrapper; | |
| import android.os.Bundle; | |
| import android.os.Looper; | |
| import android.os.MessageQueue; | |
| import android.util.Log; | |
| import android.view.View; | |
| import android.view.ViewTreeObserver; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Resurrection Remix OS - Marshmallow | |
| Source Code: http://github.com/ResurrectionRemix | |
| G+: https://plus.google.com/communities/109352646351468373340 | |
| Resurrection Remix Crowdin : https://crowdin.com/project/resurrectionremix/ | |
| For extended changelog, track github activities | |
| # The Changelog |