feat:调整com.soundcloud.android目录名

This commit is contained in:
Max
2023-11-23 20:47:04 +08:00
parent c7ff6f0524
commit 5d54acd01d
17 changed files with 17 additions and 20 deletions

View File

@@ -7,9 +7,6 @@ android {
defaultConfig { defaultConfig {
minSdkVersion MIN_SDK_VERSION.toInteger() minSdkVersion MIN_SDK_VERSION.toInteger()
targetSdkVersion TARGET_SDK_VERSION.toInteger() targetSdkVersion TARGET_SDK_VERSION.toInteger()
testApplicationId 'com.soundcloud.android.crop.test'
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
} }
buildTypes { buildTypes {

View File

@@ -1 +1 @@
<manifest package="com.soundcloud.android.crop" /> <manifest package="com.soundcloud.crop" />

View File

@@ -1,4 +1,4 @@
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.app.Activity; import android.app.Activity;

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.content.Intent; import android.content.Intent;

View File

@@ -1,4 +1,4 @@
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.content.Context; import android.content.Context;
import android.graphics.Canvas; import android.graphics.Canvas;

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.app.ProgressDialog; import android.app.ProgressDialog;
import android.content.ContentResolver; import android.content.ContentResolver;

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.annotation.SuppressLint; import android.annotation.SuppressLint;
import android.content.Context; import android.content.Context;

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.content.Context; import android.content.Context;
import android.graphics.Bitmap; import android.graphics.Bitmap;

View File

@@ -1,4 +1,4 @@
package com.soundcloud.android.crop; package com.soundcloud.crop;
class Log { class Log {

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.app.Activity; import android.app.Activity;
import android.os.Bundle; import android.os.Bundle;

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.graphics.Bitmap; import android.graphics.Bitmap;
import android.graphics.Matrix; import android.graphics.Matrix;

View File

@@ -1,4 +1,4 @@
package com.soundcloud.android.crop; package com.soundcloud.crop;
import android.content.Context; import android.content.Context;
import android.net.Uri; import android.net.Uri;

View File

@@ -9,7 +9,7 @@
android:id="@+id/done_cancel_bar" android:id="@+id/done_cancel_bar"
layout="@layout/crop__layout_done_cancel" /> layout="@layout/crop__layout_done_cancel" />
<com.soundcloud.android.crop.CropImageView <com.soundcloud.crop.CropImageView
android:id="@+id/crop_image" android:id="@+id/crop_image"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View File

@@ -177,8 +177,8 @@
-keep class com.darsh.multipleimageselect.** { *; } -keep class com.darsh.multipleimageselect.** { *; }
-dontwarn com.darsh.multipleimageselect.** -dontwarn com.darsh.multipleimageselect.**
-keep class com.soundcloud.android.crop.** { *; } -keep class com.soundcloud.crop.** { *; }
-dontwarn com.soundcloud.android.crop.** -dontwarn com.soundcloud.crop.**
# glide4.0 # glide4.0
-keep public class * implements com.bumptech.glide.module.GlideModule -keep public class * implements com.bumptech.glide.module.GlideModule

View File

@@ -132,7 +132,7 @@
<!-- android:value="${CRASHLYTICS_COLLECTION_ENABLED}" /> &lt;!&ndash; 刘海屏适配 begin &ndash;&gt;--> <!-- android:value="${CRASHLYTICS_COLLECTION_ENABLED}" /> &lt;!&ndash; 刘海屏适配 begin &ndash;&gt;-->
<!-- 小米 --> <!-- 小米 -->
<activity <activity
android:name="com.soundcloud.android.crop.CropImageActivity" android:name="com.soundcloud.crop.CropImageActivity"
android:screenOrientation="portrait" /> <!-- 华为 --> android:screenOrientation="portrait" /> <!-- 华为 -->
<activity <activity
android:name="com.darsh.multipleimageselect.activities.AlbumSelectActivity" android:name="com.darsh.multipleimageselect.activities.AlbumSelectActivity"

View File

@@ -34,7 +34,7 @@ import com.jph.takephoto.uitl.TImageFiles;
import com.jph.takephoto.uitl.TUriParse; import com.jph.takephoto.uitl.TUriParse;
import com.jph.takephoto.uitl.TUtils; import com.jph.takephoto.uitl.TUtils;
import com.orhanobut.logger.Logger; import com.orhanobut.logger.Logger;
import com.soundcloud.android.crop.Crop; import com.soundcloud.crop.Crop;
import com.chwl.app.R; import com.chwl.app.R;
import com.chwl.library.utils.SingleToastUtil; import com.chwl.library.utils.SingleToastUtil;

View File

@@ -19,7 +19,7 @@ import com.jph.takephoto.model.TException;
import com.jph.takephoto.model.TExceptionType; import com.jph.takephoto.model.TExceptionType;
import com.jph.takephoto.model.TImage; import com.jph.takephoto.model.TImage;
import com.jph.takephoto.model.TIntentWap; import com.jph.takephoto.model.TIntentWap;
import com.soundcloud.android.crop.Crop; import com.soundcloud.crop.Crop;
import com.chwl.app.R; import com.chwl.app.R;
import com.chwl.library.utils.SingleToastUtil; import com.chwl.library.utils.SingleToastUtil;