Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import android.text.TextUtils;
public class Main {
private static String getSubdirectory(String resourceId) {
return TextUtils.isEmpty(resourceId) ? resourceId : String.valueOf(Math.abs(resourceId.hashCode() % 100));
}
}