Skip to content

Android unsafe wrapper around internal sun.misc.Unsafe api

Notifications You must be signed in to change notification settings

iamironz/unsafe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Android unsafe wrapper (Experimental)

Documented android unsafe wrapper for using internal sun.misc.Unsafe api. Android has no sun.misc.Unsafe class in standard sdk library. This library solves this problem by using compiled direct access to system class library (without using reflection).

Use only for experimental proposes and between pre-compiled dependency from jcenter because sun.misc.Unsafe doesn't included in sdk library and you just cannot create Unsafe class from source code!

For more explanation see this articles list:

  1. https://dzone.com/articles/understanding-sunmiscunsafe
  2. http://mishadoff.com/blog/java-magic-part-4-sun-dot-misc-dot-unsafe

Adding:

For using in your own projects just add jcenter repository superset:

repositories {
    jcenter()
}

And after it you should just add as compile dependency:

compile 'com.implimentz:unsafe:0.0.6'

Usage:

You should use UnsafeAndroid library class for Unsafe class access:

final UnsafeAndroid unsafe = new UnsafeAndroid();
final Bitmap bitmap = unsafe.allocateInstance(Bitmap.class);

License

Copyright 2016 Alexander Efremenkov

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

About

Android unsafe wrapper around internal sun.misc.Unsafe api

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages