mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
347 B
Java
15 lines
347 B
Java
package org.upp.AndroidMath;
|
|
|
|
public class AndroidMath
|
|
{
|
|
private AndroidMath() {}
|
|
|
|
// Native stuff - C/C++
|
|
public static native int power(int number, int n);
|
|
|
|
static {
|
|
// In this place we are loading native libraries.
|
|
// Native library always has upp package name!
|
|
System.loadLibrary("AndroidMath");
|
|
}
|
|
}
|