Skip to content

Commit

Permalink
迁移代码库到jitpack上
Browse files Browse the repository at this point in the history
  • Loading branch information
yangchong211 committed Dec 26, 2021
1 parent 765065e commit 3bb4b98
Show file tree
Hide file tree
Showing 52 changed files with 275 additions and 530 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,5 @@ google-services.json
freeline.py
freeline/
freeline_project_description.json
.gradle/
.idea/
116 changes: 0 additions & 116 deletions .idea/codeStyles/Project.xml

This file was deleted.

22 changes: 0 additions & 22 deletions .idea/compiler.xml

This file was deleted.

3 changes: 0 additions & 3 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/encodings.xml

This file was deleted.

36 changes: 0 additions & 36 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

49 changes: 0 additions & 49 deletions .idea/misc.xml

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/modules.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

File renamed without changes.
31 changes: 31 additions & 0 deletions BaseProgressLib/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
apply plugin: 'com.android.library'
//迁移到jitpack
apply plugin: 'com.github.dcendents.android-maven'


android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 16
targetSdkVersion 29
versionCode 15
versionName "1.2.8"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

lintOptions {
abortOnError false
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.annotation:annotation:1.1.0'
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ns.yc.ycprogresslib">
package="com.yc.ycprogresslib">

<application android:allowBackup="true"
android:label="@string/app_name"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ns.yc.ycprogresslib;
package com.yc.ycprogresslib;

import android.content.Context;
import android.content.res.TypedArray;
Expand All @@ -8,14 +8,15 @@
import android.graphics.PixelFormat;
import android.graphics.RectF;
import android.os.Build;
import android.support.annotation.ColorInt;
import android.util.AttributeSet;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;

import androidx.annotation.ColorInt;

/**
* <pre>
* @author 杨充
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ns.yc.ycprogresslib;
package com.yc.ycprogresslib;

import android.annotation.SuppressLint;
import android.content.Context;
Expand All @@ -7,10 +7,11 @@
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.support.annotation.ColorInt;
import android.util.AttributeSet;
import android.view.View;

import androidx.annotation.ColorInt;

/**
* <pre>
* @author 杨充
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ns.yc.ycprogresslib;
package com.yc.ycprogresslib;


/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package com.ns.yc.ycprogresslib;
package com.yc.ycprogresslib;


import android.content.Context;
import android.support.annotation.IntDef;

import androidx.annotation.IntDef;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
Expand Down
Loading

0 comments on commit 3bb4b98

Please sign in to comment.