Skip to content

Commit 9f08da7

Browse files
Renamed package name from github.hiteshsondhi88 to com.github.hiteshsondhi88
1 parent d42b93a commit 9f08da7

33 files changed

+42
-48
lines changed

FFmpegAndroid/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55
buildToolsVersion "20.0.0"
66

77
defaultConfig {
8-
applicationId "github.hiteshsondhi88.libffmpeg"
8+
applicationId "com.github.hiteshsondhi88.libffmpeg"
99
minSdkVersion 16
1010
targetSdkVersion 16
1111
versionCode 1

FFmpegAndroid/jni/armArch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <cpu-features.h>
55

66
jstring
7-
Java_github_hiteshsondhi88_libffmpeg_ArmArchHelper_cpuArchFromJNI(JNIEnv* env, jobject obj)
7+
Java_com_github_hiteshsondhi88_libffmpeg_ArmArchHelper_cpuArchFromJNI(JNIEnv* env, jobject obj)
88
{
99
// Maximum we need to store here is ARM v7-neon
1010
// Which is 11 char long, so initializing a character array of length 11
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 Bytes
Binary file not shown.
Binary file not shown.

FFmpegAndroid/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="github.hiteshsondhi88.libffmpeg">
2+
package="com.github.hiteshsondhi88.libffmpeg">
33

44
<application
55
android:label="@string/app_name">

FFmpegAndroid/src/main/java/github/hiteshsondhi88/libffmpeg/ArmArchHelper.java renamed to FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/ArmArchHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package github.hiteshsondhi88.libffmpeg;
1+
package com.github.hiteshsondhi88.libffmpeg;
22

33
class ArmArchHelper {
44
static {

0 commit comments

Comments
 (0)