Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.content.res;
package app.morphe.apktool.content.res;

import android.util.AttributeSet;
import app.morphe.apktool.util.AttributeSet;
import org.xmlpull.v1.XmlPullParser;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.util;
package app.morphe.apktool.util;

/**
* A collection of attributes, as found associated with a tag in an XML
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.util;
package app.morphe.apktool.util;

/**
* Container for a dynamically typed data value. Primarily used with
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
*/
package brut.androlib.res.decoder;

import android.util.TypedValue;
import app.morphe.apktool.util.TypedValue;
import brut.androlib.Config;
import brut.androlib.exceptions.AndrolibException;
import brut.androlib.exceptions.UndefinedResObjectException;
import brut.androlib.meta.ApkInfo;
import brut.androlib.res.decoder.data.FlagsOffset;
import brut.androlib.res.decoder.data.ResChunkHeader;
import brut.androlib.res.decoder.data.ResStringPool;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/
package brut.androlib.res.decoder;

import android.content.res.XmlResourceParser;
import android.util.TypedValue;
import app.morphe.apktool.content.res.XmlResourceParser;
import app.morphe.apktool.util.TypedValue;
import brut.androlib.exceptions.AndrolibException;
import brut.androlib.exceptions.FrameworkNotFoundException;
import brut.androlib.exceptions.UndefinedResObjectException;
Expand All @@ -32,9 +32,7 @@

import java.io.InputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Reader;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package brut.androlib.res.table.value;

import android.util.TypedValue;
import app.morphe.apktool.util.TypedValue;
import brut.androlib.res.table.ResId;
import brut.androlib.res.table.ResPackage;
import com.google.common.collect.Sets;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package brut.androlib.res.table.value;

import android.util.TypedValue;
import app.morphe.apktool.util.TypedValue;
import brut.androlib.exceptions.AndrolibException;
import brut.androlib.res.table.ResEntry;
import brut.androlib.res.xml.ResXmlEncodable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package brut.androlib.res.xml;

import android.util.TypedValue;
import app.morphe.apktool.util.TypedValue;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.tuple.Pair;

Expand Down